From 7f6a5a325b23e6818acb89d2b147387b4b441d63 Mon Sep 17 00:00:00 2001 From: dilipboidya Date: Thu, 11 Aug 2022 17:21:27 +0530 Subject: Added the Device Models --- library/deviceModelLibrary/LEDs/eSim_BlueLED.lib | 3 +++ library/deviceModelLibrary/LEDs/eSim_BlueLED.xml | 1 + library/deviceModelLibrary/LEDs/eSim_RedLED.lib | 1 + library/deviceModelLibrary/LEDs/eSim_RedLED.xml | 1 + 4 files changed, 6 insertions(+) create mode 100644 library/deviceModelLibrary/LEDs/eSim_BlueLED.lib create mode 100644 library/deviceModelLibrary/LEDs/eSim_BlueLED.xml create mode 100644 library/deviceModelLibrary/LEDs/eSim_RedLED.lib create mode 100644 library/deviceModelLibrary/LEDs/eSim_RedLED.xml (limited to 'library/deviceModelLibrary/LEDs') diff --git a/library/deviceModelLibrary/LEDs/eSim_BlueLED.lib b/library/deviceModelLibrary/LEDs/eSim_BlueLED.lib new file mode 100644 index 00000000..66bee13b --- /dev/null +++ b/library/deviceModelLibrary/LEDs/eSim_BlueLED.lib @@ -0,0 +1,3 @@ +.MODEL eSim_BlueLED D( Is=1e-10 Rs=0.1 N=6.68 tt=4e-6 Cjo=3e-12 M=0.5 Vj=0.7 Bv=5 Ibv=10e-6 Fc=0.5 Cp=0.0e-12 Isr=0.0 Nr=2.0 Temp=26.85 Kf=0.0 Af=1.0 Ffe=1.0 Xti=3.0 Eg=1.11 Tbv=0.0 Trs=0.0 Ttt1=0.0 Ttt2=0.0 Tm1=0.0 Tm2=0.0 Tnom=26.85 Area=1.0 ) + + diff --git a/library/deviceModelLibrary/LEDs/eSim_BlueLED.xml b/library/deviceModelLibrary/LEDs/eSim_BlueLED.xml new file mode 100644 index 00000000..65f54494 --- /dev/null +++ b/library/deviceModelLibrary/LEDs/eSim_BlueLED.xml @@ -0,0 +1 @@ +DeSim_BlueLED1e-100.16.684e-63e-120.50.7510e-60.50.0e-120.02.026.850.01.01.03.01.110.00.00.00.00.00.026.851.0 \ No newline at end of file diff --git a/library/deviceModelLibrary/LEDs/eSim_RedLED.lib b/library/deviceModelLibrary/LEDs/eSim_RedLED.lib new file mode 100644 index 00000000..1f852936 --- /dev/null +++ b/library/deviceModelLibrary/LEDs/eSim_RedLED.lib @@ -0,0 +1 @@ +.MODEL eSim_RedLED D( Is=1e-10 Rs=0.1 N=4.09 tt=4.0e-6 Cjo=3e-12 M=0.5 Vj=0.7 Bv=5 Ibv=10e-6 Fc=0.5 Isr=0.0 Nr=2.0 Kf=0.0 Af=1.0 Ffe=1.0 Xti=3.0 Eg=1.11 Tbv=0.0 Trs=0.0 ) diff --git a/library/deviceModelLibrary/LEDs/eSim_RedLED.xml b/library/deviceModelLibrary/LEDs/eSim_RedLED.xml new file mode 100644 index 00000000..a8df3640 --- /dev/null +++ b/library/deviceModelLibrary/LEDs/eSim_RedLED.xml @@ -0,0 +1 @@ +DeSim_RedLED1e-100.14.094.0e-63e-120.50.7510e-60.50.02.00.01.01.03.01.110.00.0 \ No newline at end of file -- cgit From cb6c30f06c4b4bbc80709de3f24a30c36ebe207b Mon Sep 17 00:00:00 2001 From: Dilip Boidya Date: Thu, 11 Aug 2022 18:20:50 +0530 Subject: Readme file for LEDs --- library/deviceModelLibrary/LEDs/README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 library/deviceModelLibrary/LEDs/README.md (limited to 'library/deviceModelLibrary/LEDs') diff --git a/library/deviceModelLibrary/LEDs/README.md b/library/deviceModelLibrary/LEDs/README.md new file mode 100644 index 00000000..dabb7269 --- /dev/null +++ b/library/deviceModelLibrary/LEDs/README.md @@ -0,0 +1,24 @@ +# Light Emitting Diodes (LEDs) + +A light-emitting diode (LED) is a semiconductor device that emits light when an electric current flows through it. +When current passes through an LED, the electrons recombine with holes emitting light in the process. +Just like diode, the process to model blue led is also the same, it is to be noted here +that the forward voltage of the LEDs are higher than the normal diode. +# Red LED +``` +.MODEL eSim_RedLED D( Is=1e-10 Rs=0.1 N=4.09 tt=4.0e-6 Cjo=3e-12 M=0.5 Vj=0.7 +Bv=5 Ibv=10e-6 Fc=0.5 Isr=0.0 Nr=2.0 Kf=0.0 Af=1.0 Ffe=1.0 Xti=3.0 Eg=1.11 +Tbv=0.0 Trs=0.0 ) +``` +NOTE: The name of the above LED is set as eSim_Red_LED the same name of the +LED must be given to the subcircuit while creating the symbol for LED. While the +D is the designator for the diode. + +# Blue LED + +``` +.MODEL eSim_BlueLED D( Is=1e-10 Rs=0.1 N=6.68 tt=4e-6 Cjo=3e-12 M=0.5 Vj=0.7 Bv=5 +Ibv=10e-6 Fc=0.5 Cp=0.0e-12 Isr=0.0 Nr=2.0 Temp=26.85 Kf=0.0 Af=1.0 Ffe=1.0 +Xti=3.0 Eg=1.11 Tbv=0.0 Trs=0.0 Ttt1=0.0 Ttt2=0.0 Tm1=0.0 Tm2=0.0 Tnom=26.85 +Area=1.0 ) +``` -- cgit From 6e218518adabcc62063e503bb224a48f056e2122 Mon Sep 17 00:00:00 2001 From: Dilip Boidya Date: Thu, 11 Aug 2022 19:40:25 +0530 Subject: Readme file for LEDs --- library/deviceModelLibrary/LEDs/README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'library/deviceModelLibrary/LEDs') diff --git a/library/deviceModelLibrary/LEDs/README.md b/library/deviceModelLibrary/LEDs/README.md index dabb7269..11973ed1 100644 --- a/library/deviceModelLibrary/LEDs/README.md +++ b/library/deviceModelLibrary/LEDs/README.md @@ -10,9 +10,7 @@ that the forward voltage of the LEDs are higher than the normal diode. Bv=5 Ibv=10e-6 Fc=0.5 Isr=0.0 Nr=2.0 Kf=0.0 Af=1.0 Ffe=1.0 Xti=3.0 Eg=1.11 Tbv=0.0 Trs=0.0 ) ``` -NOTE: The name of the above LED is set as eSim_Red_LED the same name of the -LED must be given to the subcircuit while creating the symbol for LED. While the -D is the designator for the diode. +**NOTE: The name of the above LED is set as eSim_Red_LED the same name of the LED must be given to the subcircuit while creating the symbol for LED. While the D is the designator for the diode.** # Blue LED -- cgit