Politechnika Śląska - strona 6

note /search

Złącze p-n -omówienie zagadnienia

  • Politechnika Śląska
  • Analogowe układy elektroniczne
Pobrań: 49
Wyświetleń: 749

Złącze p-n Działanie większości elementów półprzewodnikowych opiera się na współdziałaniu złącza p-n i obszaru przelotowego (transportu), stanowiącego na ogół obszar półprzewodnika jednego rodzaju. Złącza umożliwiają wprowadzenie, odprowadzenie i sterowanie strumienia

Zabezpieczenia stabilizatorów - omówienie zagadnienia

  • Politechnika Śląska
  • Analogowe układy elektroniczne
Pobrań: 357
Wyświetleń: 1806

ZABEZPIECZENIA STABILIZATORÓW W stabilizatorach stosuje się dwie grupy zabezpieczeń: Nadnapięciowe - służące do zabezpieczenia stabilizatora lub układu obciążającego przed pojawieniem się niepożądanego napięcia. Nadprądowe - służące do zabezpieczenia stabilizatora lub układu obciążającego przed pr...

Chemia fizyczna - pytania na egzamin

  • Politechnika Śląska
  • Chemia Fizyczna
Pobrań: 84
Wyświetleń: 1750

PYTANIA NA EGZAMIN Z FIZYCZNEJ B dr MARCZAK Co to są parametry krytyczne? Które z uniwersalnych oddziaływań międzycząsteczkowych maj? najwyższą energię i jak to jest związane z temperaturą? Jak przenikalność dielektryczna zależy od częstotliwości pola? Polaryzowalność,

Assigning names to structure types

  • Politechnika Śląska
  • Fundamentals of Computer Programming
Pobrań: 7
Wyświetleń: 2394

Assigning names to structure types typedef struct { float re, im; } tcompl; tcompl a, b, c; a.re = 10.5; a.im = 36.6; b = c = a; ...works like: struct compl { float re, im; }; struct compl a, b, c; a.re = 10.5; ... or: struct { float re, im; } a, b, c; ...

Addition using sign magnitude representation

  • Politechnika Śląska
  • Theory of Logic Circuits
Pobrań: 0
Wyświetleń: 2604

Addition using sign magnitude representation In the case of sign magnitude representation addition is a little complicated. The addition algorithm contains several steps: 1. Check signs of both numbers. 2. If signs are equal (both are positive or negative) add magnitudes and use the sign as sign...

Algorithm description

  • Politechnika Śląska
  • Theory of Logic Circuits
Pobrań: 0
Wyświetleń: 2856

Algorithm description Kazakow algorithm is efficient, small and fast way, providing irredundant solution for output function, given by many input signals (i.e. 20 and more), when output is weakly specified function. Weakly specified function is the one that is given by a small amount of one's com...

Check SST solvability

  • Politechnika Śląska
  • Teoria układów logicznych
Pobrań: 14
Wyświetleń: 2933

Check SST solvability When SST is ready, solvability analysis have to be done. We search for repeating in N.S.U. (numerical state of the system) and check, if for selected number repeating appears to have the same or different working conditions...

Klasyfikacja urządzeń bistabilnych

  • Politechnika Śląska
  • Teoria układów logicznych
Pobrań: 7
Wyświetleń: 2912

Classification of bistable devices A bistable element of flip-flop is a sequential logic device that has two and only two stable output states. In general bistable elements can be divided into two categories: 1. asynchronous devices (called basic latches) 2. synchronous devices. In turn, synchr...

Kody i kod przetwornic

  • Politechnika Śląska
  • Teoria układów logicznych
Pobrań: 0
Wyświetleń: 2793

Codes and code converters Coding is an action of assigning some symbols to different information. The set of symbols is called a code and a code using all possible combinations of symbols is called a complete code. Codes that represent decimal numbers as binary are called binary-decimal. The mos...

Demultiplexer

  • Politechnika Śląska
  • Teoria układów logicznych
Pobrań: 14
Wyświetleń: 3178

Demultiplexer A Demultiplexer (DMUX) is a circuit that receives a signal on a single input line and directs that signal to one of 2n possible output lines. If the enable input is active, we can also call this circuit a n-to2n Decoder. A block diagram of 1-to-4 line Demultiplexer is shown in Fig. ...