You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

39 lines
496 B

*test alterparam
.param vv = 1
.param rr = 'vv + 1'
R1 1 0 {rr + 1}
v1 1 0 1
.subckt subr in out rint1 = 10
.param rint = 5
.param rint2 = 99
R0 in out 'rint'
R1 in out 'rint1'
R2 in out 'rint2'
.ends
Xr 2 0 subr rint = 7 rint1 = 15
v2 2 0 1
.control
op
print v1#branch v2#branch
echo
listing expand
remcirc
alterparam vv = 2
mc_source
op
print v1#branch v2#branch
echo
listing expand
alterparam subr rint = 11
mc_source
op
print v1#branch v2#branch
echo
listing expand
.endc
.end