diff options
author | Rahul Paknikar | 2021-01-08 12:47:23 +0530 |
---|---|---|
committer | GitHub | 2021-01-08 12:47:23 +0530 |
commit | e6f48f5b1bf22a1d048b44ed4416b4315a461306 (patch) | |
tree | fd357549a236cdc652f0b6d2919beee0cee7faa5 /Windows/spice/examples/tclspice/tcl-testbench1 | |
parent | ac223c4a69c701ad0a247401acdc48b8b6b6dba6 (diff) | |
parent | 6b512cbf954273b0f21d3800d10a7ad42a759425 (diff) | |
download | eSim-e6f48f5b1bf22a1d048b44ed4416b4315a461306.tar.gz eSim-e6f48f5b1bf22a1d048b44ed4416b4315a461306.tar.bz2 eSim-e6f48f5b1bf22a1d048b44ed4416b4315a461306.zip |
Merge pull request #161 from rahulp13/installersi2.1
fixed key issue for ubuntu 20+; updated installers for windows os
Diffstat (limited to 'Windows/spice/examples/tclspice/tcl-testbench1')
4 files changed, 0 insertions, 108 deletions
diff --git a/Windows/spice/examples/tclspice/tcl-testbench1/PN2222.mod b/Windows/spice/examples/tclspice/tcl-testbench1/PN2222.mod deleted file mode 100644 index d683d374..00000000 --- a/Windows/spice/examples/tclspice/tcl-testbench1/PN2222.mod +++ /dev/null @@ -1,7 +0,0 @@ -.model PN2222 NPN(Is=14.34f Xti=3 Eg=1.11 Vaf=74.03 Bf=255.9 Ne=1.307 -+ Ise=14.34f Ikf=.2847 Xtb=1.5 Br=6.092 Nc=2 Isc=0 Ikr=0 Rc=1 -+ Cjc=7.306p Mjc=.3416 Vjc=.75 Fc=.5 Cje=22.01p Mje=.377 Vje=.75 -+ Tr=46.91n Tf=411.1p Itf=.6 Vtf=1.7 Xtf=3 Rb=10) - -* Fairchild pid=19 case=TO92 -* 88-09-07 bam creation diff --git a/Windows/spice/examples/tclspice/tcl-testbench1/capa.cir b/Windows/spice/examples/tclspice/tcl-testbench1/capa.cir deleted file mode 100644 index 35478a72..00000000 --- a/Windows/spice/examples/tclspice/tcl-testbench1/capa.cir +++ /dev/null @@ -1,30 +0,0 @@ -* Capa variable sur la base de la thèse de Marc KODRNJA - -.SUBCKT capa 4 6 5 7 8 0 -Vref1 26 0 DC 3 -Vref2 16 0 DC 3 -Vdp 7 0 DC 7 -I0 3 0 DC 0.07 -Ia1 15 0 DC 0.01 -Ia2 25 0 DC 0.01 -Ib1 14 0 DC 0.01 -Ib2 24 0 DC 0.01 - -.INCLUDE PN2222.mod -Qv1 4 16 14 PN2222 -Qv2 4 26 24 PN2222 -Q1 11 14 3 PN2222 -Q2 21 24 3 PN2222 -Qp1 5 8 11 PN2222 -Qm1 6 7 11 PN2222 -Qp2 6 8 21 PN2222 -Qm2 5 7 21 PN2222 -Qc1 4 5 15 PN2222 -Qc2 4 6 25 PN2222 - -R1 4 5 100 -R2 4 6 100 -C1 15 14 10n -C2 25 24 10n -.ENDS - diff --git a/Windows/spice/examples/tclspice/tcl-testbench1/tcl-testbench1.sh b/Windows/spice/examples/tclspice/tcl-testbench1/tcl-testbench1.sh deleted file mode 100644 index 6c74f5e6..00000000 --- a/Windows/spice/examples/tclspice/tcl-testbench1/tcl-testbench1.sh +++ /dev/null @@ -1,62 +0,0 @@ -#!/bin/sh -# -*- mode: tcl -*- \ - exec wish -f "$0" ${1+"$@"} - -# old name: analyse-20070504-0.tcl -package require BLT -load ../../../src/.libs/libspice.so - -# Test of virtual capacitore circuit -# Vary the control voltage and log the resulting capacitance -spice::source "testCapa.cir" - -set n 30 -set dv 0.2 -set vmax [expr $dv/2] -set vmin [expr -1 * $dv/2] -set pas [expr $dv/ $n] - -blt::vector create Ctmp -blt::vector create Cim -blt::vector create check - -blt::vector create Vcmd -blt::graph .cimvd -title "Cim = f(Vd)" -blt::graph .checkvd -title "Rim = f(Vd)" - -blt::vector create Iex -blt::vector create freq -blt::graph .freqanal -title "Analyse frequentielle" - -set v [expr {$vmin + $n * $pas / 4}] -spice::alter vd = $v -spice::op -spice::ac dec 10 100 100k -spice::vectoblt {Vex#branch} Iex -spice::vectoblt {frequency} freq -pack .freqanal -.freqanal element create line1 -xdata freq -ydata Iex - -for {set i 0} {[expr $n - $i]} {incr i } { -set v [expr {$vmin + $i * $pas}] -spice::alter vd = $v -spice::op -spice::ac dec 10 100 100k - - -spice::let Cim = real(mean(Vex#branch/(2*Pi*i*frequency*(V(5)-V(6))))) -spice::vectoblt Cim Ctmp -Cim append $Ctmp(0:end) -spice::let err = real(mean(sqrt((Vex#branch-(2*Pi*i*frequency*Cim*V(5)-V(6)))^2))) -spice::vectoblt err Ctmp -check append $Ctmp(0:end) -Vcmd append $v - -} - -pack .cimvd -.cimvd element create line1 -xdata Vcmd -ydata Cim -pack .checkvd -.checkvd element create line1 -xdata Vcmd -ydata check - - diff --git a/Windows/spice/examples/tclspice/tcl-testbench1/testCapa.cir b/Windows/spice/examples/tclspice/tcl-testbench1/testCapa.cir deleted file mode 100644 index c74cb531..00000000 --- a/Windows/spice/examples/tclspice/tcl-testbench1/testCapa.cir +++ /dev/null @@ -1,9 +0,0 @@ -Banc de test pour la Capa variable sur la base de la thèse de Marc KODRNJA - -.INCLUDE capa.cir - -Valim 4 0 DC 12 -Vex 6 5 DC 0 AC 0.01 0 -Vd 7 8 DC 0.0 -xcapa 4 6 5 7 8 0 capa -.END |