분류 전체보기 232

Electormagnetics - Coordinate System

Coordinate System Rectangular Coordinate System 가장 흔하게 사용하는 좌표계로 ( x , y , z )로 표현된다. Cylindrical Coordinate System ( ρ , φ , z )로 표현된다. ρ : z축으로부터 점까지의 거리 φ : xy평면상에서 x축으로부터의 각도 z :높이(z좌표) Spherical Coordinate System ( r , θ , φ )로 표현된다. r : 원접으로부터 점까지의 거리 θ : z축으로부터의 각도 φ : xy평면상에서 x축으로부터의 각도 // Cylindrcal에서와 동일하다 좌표 표현 위치가 다르다 각 Coordinate System에서의 표현 동일한 위치의 점이라도 좌표계에 따라 위와 같이 다르게 표현될 수 있다.

Electromagnetics - Vector Analysis(3) / Cross Product

Cross Product The cross Product A x B is a vector. ( 벡터의 외적은 벡터! (not scalar) ) The magnitude of A x B : is equal to the product of the magnitude of A,B, and the sine of the smaller angle between A and B. The direction of A x B : is perpendicular to the plane containing A and B and is along that one of the two possible perpendiculars which is in the direction of advance of a right-handed screw a..

Electromagnetics - Vector Analysis(2) / Dot Product

Dot Product Dot Product (내적) ( = Scalar Product = Inner Product ) 좌변은 Vector와 Vectoc의 곱이지만, 우변은 크기와 코사인값의 곱이므로 Scalar값을 가진다. 따라서 Vector간의 내적 값은 Scalar값임을 알 수 있다. 내적 특성 정리 1. vector내적 위치 바꾸기 각각의 크기와 그 사이 각도에 대한 cos값만을 다루므로 두 벡터의 위치를 바꾸어도 내적값이 동일하다. 2.단위벡터끼리의 곱 단위벡터의 크기가 1이고 cos(0)=1 이므로 단위벡터의 본인과의 내적값은 1이다. 허나, 좌표계의 각각 다른 단위벡터의 사이각은 90'며 cos(90)=0이므로 본인이 아닌 다른 단위벡터와의 내적값은 0이다. 3. 벡터 내적 2번과 같은 이유로..

Electromagnetics - Vector Analysis(1)

Vector Analysis Scalar & Vector - Scalar : Temperature, Time, Distance, Mass, Density, Pressure, Voltage, charge density ........ - Vector : Force, Velocity, Acceleration, Electric field intesnity Scalar field & Vector field - Scalar field : scalar 물리량의 위치별 분포 ex) T(x,y,z) = 20'C / T(x,y,z) = 20'C*x - 10'C - Vector field : vector 물리량의 위치별 분포 ( 위치별로 vector 물리량이 달라짐 ) We are accustomed to thinking..

Verilog - Synthesis (full_adder_dataflow) / LUT / truth table

Synthesis full_adder_dataflow module full_adder_dataflow( x,y,c_in, sum,c_out ); input x,y,c_in; output sum,c_out; assign {c_out,sum}=x+y+c_in; endmodule 위 코드를 작성하고 schematic을 확인하면 위와 같이 RLD_ADD를 확인할 수 있으나, RTL_ADD가 실제로 어떤 gate들로 이루어지는지 알 수 없다. 이 때 Verilog code의 gate합성을 확인할 수 있는 도구가 바로 sythesis이다. Synthesis : High-level language 를 Low-level language로 변환하는 것을 일반적으로 Synthesis라고 한다. 디지털 시스템 설계에서의 S..

Semiconductor - Fabrication process(2) / Doping / Packaging

Fabrication process(2) Fabrication Process 이전 글에서 wafer preparation, film deposition, photo-lithography, etching을 다루었고, 이번 글에서는 doping부터 packaging까지를 정리해보았다. Fabrication - Doping Dopping ( Ref : Doping이 필요한 이유 / https://kycu-sb.tistory.com/54 ) n-type semiconductor : doping with P, ( -1 : 전자가 하나 많아, 전자가 떠다닌다.) -> 떠다니는 전자를 통해 전류가 흐르도록 p-type semiconductor : doping B ( +1 : silicon보다 hole이 하나 많다.)..

Semiconductor - Covalent bonds / Doping / p-type / n-type

Semiconductor Ref : Semiconductor Semiconductor devices : made by silicon or germanium. A crystal of pure or intrinsic silicon(pure form silicon) has a regular lattice structure(격자 구조) where the atoms are held in their positions by bonds, called convalent bonds. 위 그림의 Lattice structrue에서 확인할 수 있듯이 silicon은 전자의 공유 결합을 통해 한 원자당 4개의 원자와의 결합을 이루며 가장 이상적인 육면체 형태의 Lattice structure을 만들어낸다. Covalent bo..

Semiconductor - Fabrication process(1) / Waper ~ Etching

Fabrication Fabrication : Fabrication generally refers to the process of creating or manufacturing something through various techniques such as cutting(절단), shaping(성형), assembling(조립), or joining(접합) different materials. The process may involve various tools, machinery(기계류), and techiques depending on the complexity of the item being fabricated. -> 공정은 재료의 절단,성형,조립,접합 등을 통한 제조 과정을 의미한다. Fabrica..