HOME VHDL CODES C PROGRAMS SOCCER BUZzz TECH INFO


--VHDL code for 2421 counter using T Flipflop
--main code:

library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
entity tcounter2421 is
port(clk,rst:in std_logic;
q,qbar:inout std_logic_vector(3 downto 0));
end tcounter2421;

architecture Behavioral of tcounter2421 is
component tffl is
port(t,rst,clk:in std_logic;
q,qb:out std_logic);
end component;
signal k,l,m:std_logic;
begin 
k<=q(0)and ((not q(2))or (not q(1)) or q(3));
l<=q(0) and (((not q(2)) and q(1))or q(3));
m<=q(1) and q(2) and q(0);
a1:tffl port map('1',rst,clk,q(0),qbar(0));
a2:tffl port map(k,rst,clk,q(1),qbar(1));
a3:tffl port map(l,rst,clk,q(2),qbar(2));
a4:tffl port map(m,rst,clk,q(3),qbar(3));
end Behavioral;


--t flip flop:
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
entity tffl is
port(t,rst,clk:in std_logic;
q,qb:out std_logic);
end tffl;

architecture Behavioral of tffl is
begin
process
variable x:std_logic:='0';
begin
wait on clk ;
if (clk' event and clk='1') then
if rst='1' then
x:='0';
elsif t='1' then
x:=not x;
else
x:=x;
end if;
end if;
q<=x;
qb<=not x;
end process;
end Behavioral;

The above code has been executed and has been found to have no errors..!  
plz do comment..!
thank u..!! :) :)

what is a "GEOPHONE" ?? might be the question tumbling in your mind! 

  Geophone is a device which gives electrical output corresponding to the ground movement i.e.,converts seismic energy inputs into electrical voltage a easy to measure and record quantity. 
    Its derived from Greek word, 'Geo' means 'Earth' and 'phone' means 'sound'.

        It  is classified to be a passive device responding to ground displacement which is proportional to the Geophone velocity.

  Similar to this we ground based equipment we have similar for water called as 'HYDROPHONE' !!

Know how it functions ?? and know its importance??

     Above diagram might have given you bit clue as how it works and how its build up!!

    The active element is a block (a mass) nonconducting, whirled by a copper or any good conducting wire.
Active element is suspended using a spring in region enclosed by magnet.This magnet is fixed to the earth using a long spine fixed to it to attach firmly to ground. We all know that any object at rest continues to be at rest until a sufficient force is applied to move it. similarly here when the ground moves the entire configuration moves except the mass which is freely suspended due to inertia and hence we get relative motion between the magnet and the coil and hence output voltage is generated which is proportional to the ground velocity since the magnetic flux changes at a rate equal to the ground velocity. The output can be further amplified to and the setup can be made more precise since even small variations can be recorded. Due to electrical output it is easy to store the data or to process it to any other form.

    Nowadays this setup has been modified to give highly accurate measurement. MEMS (microelectromechanical system) technology that uses a feedback circuit to maintain the position of the small piece of silicon and are basically used to respond to acceleration. They have much higher noise level and hence  are only used for strong motion and active seismic application. 

    Geophone has frequency response similar to the harmonic oscillator. Geophone's are normally constrained to respond to only single dimension variation. 

    Reflection seismology makes majority use of Geophone to record energy waves reflected by subsurface geology i.e., vertical motion is monitored.  Many a times these vertical waves are destroyed by strong horizontally transmitted wave (known as ground roll) which generate vertical motion. This is avoide using them in arrays and tuned to wavelength of ground roll due to which these dominant noise signals are attenuated and  weaker data signals are recorded. 
   
    Passive Geophones are typically very sensitive and thus used in measuring distant tremors. 

Interested to know more abt the recent geophone's manufactured visit www.geophone.com
 
---keep visting to know more about many other unknown and known devices. Thankyou
Send your feedback to jazzamd786@gmail.com and help improve!!

Total Pageviews

About this blog

Contributors

Followers

Powered by Blogger.

Labels