summaryrefslogtreecommitdiff
path: root/Windows/spice/examples/various/alterparam.sp
diff options
context:
space:
mode:
authorrahulp132021-01-07 18:22:29 +0530
committerrahulp132021-01-07 18:22:29 +0530
commitd4fd47ecf77597595d3f4fa72fd5334a5fe7417b (patch)
tree28095229ec3035d15c569fbedac83cf5876aa196 /Windows/spice/examples/various/alterparam.sp
parent376e748df438933088721286402462dffd6367c0 (diff)
parent63e3156454f39732a3101c29d42b473a89ca68d2 (diff)
downloadeSim-d4fd47ecf77597595d3f4fa72fd5334a5fe7417b.tar.gz
eSim-d4fd47ecf77597595d3f4fa72fd5334a5fe7417b.tar.bz2
eSim-d4fd47ecf77597595d3f4fa72fd5334a5fe7417b.zip
Merge windows installer updates with linux installer
Diffstat (limited to 'Windows/spice/examples/various/alterparam.sp')
-rw-r--r--Windows/spice/examples/various/alterparam.sp40
1 files changed, 0 insertions, 40 deletions
diff --git a/Windows/spice/examples/various/alterparam.sp b/Windows/spice/examples/various/alterparam.sp
deleted file mode 100644
index 663f73a2..00000000
--- a/Windows/spice/examples/various/alterparam.sp
+++ /dev/null
@@ -1,40 +0,0 @@
-*test alterparam
-.param vv = 1
-.param rr = 'vv + 1'
-
-R1 1 0 {rr + 1}
-v1 1 0 1
-
-.subckt subr in out rint1 = 6
- .param rint = 5
- .param rint2 = 8
- R0 in out 'rint'
- R1 in out 'rint1'
- R2 in out 'rint2'
-.ends
-
-Xr 2 0 subr rint = 7 rint1 = 9
-v2 2 0 1
-
-.control
-op
-print v1#branch v2#branch
-echo
-listing expand
-alterparam vv = 2
-reset
-op
-print v1#branch v2#branch
-echo
-listing expand
-alterparam subr rint = 13
-alterparam subr rint1 = 15
-alterparam subr rint2 = 17
-reset
-op
-print v1#branch v2#branch
-echo
-listing expand
-.endc
-
-.end