Difference between revisions of "Category: Elektronik"
(→Powersupply) |
(→FPGA) |
||
Line 116: | Line 116: | ||
[http://server.oersted.dtu.dk/personal/ldn/javalab/index.html Javalab eletroniks simulering] | [http://server.oersted.dtu.dk/personal/ldn/javalab/index.html Javalab eletroniks simulering] | ||
− | == FPGA == | + | == FPGA == |
− | *Teori | + | *Teori |
**[[Media:VHDL.pdf|VHDL]] (Loads PDF file) | **[[Media:VHDL.pdf|VHDL]] (Loads PDF file) | ||
− | **[[Media:Brug_af_Quartus_II.pdf|QuartusII]] (Loads PDF file) | + | **[[Media:Brug_af_Quartus_II.pdf|QuartusII]] (Loads PDF file) |
+ | *Hints | ||
− | *Opgaver | + | I have one method of using a counter. The formula for calculating the counter is ( Actual Frequency / required frequency) |
+ | |||
+ | use that as the set point for your counter and make use of this code(This IS for 26MHz from 100MHz clock, so the Count value WilL be(100m/26M = 3.) | ||
+ | |||
+ | *if (clock = '1' and clock'event ) then | ||
+ | * if ( count /= 4) | ||
+ | * count := count + 1 ; | ||
+ | * clock_out := clock_out ; | ||
+ | * else | ||
+ | * count := 0 ; | ||
+ | * clock_out := not clock_out ; | ||
+ | * end if; | ||
+ | *end if ; | ||
+ | |||
+ | so for 13MHz the count value will be 7 | ||
+ | |||
+ | *Opgaver | ||
**[[Media:Fpga_ovelser_H2-1-.pdf|FPGA øvelser]] (Loads PDF file) | **[[Media:Fpga_ovelser_H2-1-.pdf|FPGA øvelser]] (Loads PDF file) | ||
− | *Links | + | *Links |
− | **[http://www.altera.com www.altera.com] | + | **[http://www.altera.com www.altera.com] |
− | **[http://www.seas.upenn.edu/~ese201/vhdl/vhdl_primer.html VHDL tutorial] | + | **[http://www.seas.upenn.edu/~ese201/vhdl/vhdl_primer.html VHDL tutorial] |
− | **[http://www.hdlworks.com/hdl_corner/vhdl_ref/ VHDL 93 Reference Guide] | + | **[http://www.hdlworks.com/hdl_corner/vhdl_ref/ VHDL 93 Reference Guide] |
**[https://www.altera.com/support/software/download/altera_design/quartus_we/dnl-quartus_we.jsp QuartusII webdesign free] | **[https://www.altera.com/support/software/download/altera_design/quartus_we/dnl-quartus_we.jsp QuartusII webdesign free] | ||
Revision as of 18:52, 27 February 2010
Denne hovedkategori indeholder elektronik emner
Contents
Generalt om elektronik
- Formel samling til elektronik (Loads PDF file)
- Data på HP printer i A12 (Loads PDF file)
Installere den som lokal printer og opret derefter en ny TCP/IP-port til Ip adressen i ovnstående PDF!!!
- Opsætning af Wlan på Mercantec i Viborg
- WLAN opsætning XP (Loads PDF file)
- WLAN opsætning MAC (Loads PDF file)
- Nedenstående link og kode giver adgang til eletronisk version af eletronik bøgerne som benytte på Mercantec!
Brugernavn: eucmidt-elev
Login: eucmidt
- Q måling
- Q måling vejledning (Loads PDF file)
- Links
- Miljøforbedringer (Loads PDF file)
Pspice/ Orcad
- Installation af Orcad
Find netværk \\tk-licens1\orcad$ Log in med: TKCAD01 til TKCAD10 PSW samme som ovnstående,
I biblioteket "client_setup_16.2" startes programmet "setup.exe".
Orcad i fyld version er ny installeret, men den virke kun når PC'er på Mercantec's kabelnet!!!!
80535
- Diagram over Mercantec board (Loads PDF file)
Powersupply
- Teori
- Kursus materiale (Loads PDF file)
- Kursus materiale power point (Loads PDF file)
- Opgaver
- Powersupply opgaver (Loads PDF file)
- Powersupply SM opgaver (Loads PDF file)
- Powersupply SM opgaver (Loads PDF file)
- Powersupply SM opgaver (Loads PDF file)
- Datasheet
- Datasheet for MC33063 (Loads PDF file)
- Diagram over Eltwin-print PSU (Loads PDF file)
- Komponent liste til de 3 i en print SM:
Kondensator: 470pF, 1500pF
Ellyt 35V: 100uF, 330 uF, 470 uF, 1000 uF
Modstande: 47K, 2K2, 1K5, 3K6, 1K2, 270, 8K2, 953(1K), 820, 180
Effekt modstande: 3X0,33 Ohm 5W
LED: 3X Rød
Spoler: 3X 1mH
- links
Transistoren
- Opgaver
- Transistoren DC forhold 2 opgaver (Loads PDF file)
- Transistoren AC-DC opgaver (Loads PDF file)
- Transistoren DC med fejl (Loads PDF file)
- Transistoren Teoretisk_Fejlfinding 1 (Loads PDF file)
- Transistoren Teoretisk_Fejlfinding 2 (Loads PDF file)
- Transistorens AC forhold ved diverse koblinger samt overføring parametre (Loads PDF file)
- Differential forstærkeren
- Diffrentialforstærkeren præsentation Lkaa (Loads PDF file)
- Opgaver
- Diffrentialforstærkeren Opgaver 1 (Loads PDF file)
- Diffrentialforstærkeren opgaver 2 (Loads PDF file)
- Mikronfonforstærker opgave (Loads PDF file)
- Links
Op-Amp
- Teori
- Op-amp teori Lkaa (Loads PDF file)
- Opgaver
- 2122 analyse 1 (Loads PDF file)
- 2122 analyse 2 (Loads PDF file)
- Links
FPGA
I have one method of using a counter. The formula for calculating the counter is ( Actual Frequency / required frequency)
use that as the set point for your counter and make use of this code(This IS for 26MHz from 100MHz clock, so the Count value WilL be(100m/26M = 3.)
- if (clock = '1' and clock'event ) then
- if ( count /= 4)
- count := count + 1 ;
- clock_out := clock_out ;
- else
- count := 0 ;
- clock_out := not clock_out ;
- end if;
- end if ;
so for 13MHz the count value will be 7
- Opgaver
- FPGA øvelser (Loads PDF file)
- Links
Digital teknik
- Teori
- AD&DA konvertering (Loads PDF file)
- Digital teknik (Loads PDF file)
- Synkron tællere (Loads PDF file)
- Opgaver
- Digital tidsmåler (Loads PDF file)
Forstærkere
- Teori
- LF forstærkeren (Loads PDF file)
- Feedback (Loads PDF file)
- Links
Diverse forstærkerkonstruktioner
PIC processoren
- teori
- Programmering i C (Loads PDF file)
- PowerPoint PIC18Fxx2 henvisninger (Loads PDF file)
- Opgaver
- LED opgave (Loads PDF file)
Installere udviklingssoftware fra Mirochip, udleveres af lærene!
Datablad downloads: se nedenfor under links.
- AD converter (Loads PDF file)
- DA converten 1 (Loads PDF file)
- DA converten 2 (Loads PDF file)
- links
Instek GOS-620
- Teori
- Diagram 7 (Loads PDF file)
- Diagrammer
- Principdiagram over scope (Loads PDF file)
- Diagram over GOS-620 (Loads PDF file)
- Diagram over GOS-620 komponenter (Loads PDF file)
- H3 Fejlfinding på GOS-620 (Loads PDF file)
- Opgave
- Analyse af sweepgeneratoen diagram 7 (Loads PDF file)
- Analyse af sweepgeneratoen skema 1 (Loads PDF file)
- Analyse af sweepgeneratoen skema 2 (Loads PDF file)
Siteplayer
- Teori
- Powerpoint om SP "Lkaa" (Loads PDF file)
- Diagram over SP (Loads PDF file)
- Komponent placering SP "Lkaa" (Loads PDF file)
- PIC & BX konfig serial (Loads PDF file)
- Links
Siteplayer Serial interface til PIC
Siteplayer manual af Steen Spaten
- Hints!
<meta http-equiv="refresh" Content="3"> Opdatere hjemmeside hvert 3 sek.
Instrumentstyring
- Teori
- Manualer
- Links
EMC
- Teori
- Opgaver
- Opgave i måling af EMC paramtre(Loads PDF file)
- Lav en antenne til 900 MHz og en til 1800 MHz og se om I kan måle Mobil signalerne med dem?
R&S April 2009 og H1 H3 H4 Maj 2009
Oticon Sep 2009 H2 og H4
Pages in category "Elektronik"
The following 31 pages are in this category, out of 31 total.