diff options
author | Rahul P | 2023-04-25 10:20:10 +0530 |
---|---|---|
committer | GitHub | 2023-04-25 10:20:10 +0530 |
commit | 624b352b701408d4eabb17fcb955ae4a4b6deef7 (patch) | |
tree | 35a040b8398f6fbc808bf9ca1c4ad08186aabefa /src/kicadtoNgspice/Processing.py | |
parent | 44fcfba014e212164787da16978f849a57ccebab (diff) | |
parent | 8293597cd3263f788fea1eaa6e9bb63be02f1b72 (diff) | |
download | eSim-624b352b701408d4eabb17fcb955ae4a4b6deef7.tar.gz eSim-624b352b701408d4eabb17fcb955ae4a4b6deef7.tar.bz2 eSim-624b352b701408d4eabb17fcb955ae4a4b6deef7.zip |
Merge branch 'master' into multiple_instance
Diffstat (limited to 'src/kicadtoNgspice/Processing.py')
-rw-r--r-- | src/kicadtoNgspice/Processing.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kicadtoNgspice/Processing.py b/src/kicadtoNgspice/Processing.py index ad16abf7..11c95965 100644 --- a/src/kicadtoNgspice/Processing.py +++ b/src/kicadtoNgspice/Processing.py @@ -143,8 +143,8 @@ class PrcocessNetlist: index = schematicInfo.index(compline) if words[3] == "pulse": Title = "Add parameters for pulse source " + compName - v1 = ' Enter initial value(Volts/Amps): ' - v2 = ' Enter pulsed value(Volts/Amps): ' + v1 = ' Enter initial value (Volts/Amps): ' + v2 = ' Enter pulsed value (Volts/Amps): ' td = ' Enter delay time (seconds): ' tr = ' Enter rise time (seconds): ' tf = ' Enter fall time (seconds): ' @@ -180,8 +180,8 @@ class PrcocessNetlist: elif words[3] == "exp": Title = "Add parameters for exponential source " + compName - v1 = ' Enter initial value(Volts/Amps): ' - v2 = ' Enter pulsed value(Volts/Amps): ' + v1 = ' Enter initial value (Volts/Amps): ' + v2 = ' Enter pulsed value (Volts/Amps): ' td1 = ' Enter rise delay time (seconds): ' tau1 = ' Enter rise time constant (seconds): ' td2 = ' Enter fall time (seconds): ' @@ -192,7 +192,7 @@ class PrcocessNetlist: elif words[3] == "dc": Title = "Add parameters for DC source " + compName - v1 = ' Enter value(Volts/Amps): ' + v1 = ' Enter value (Volts/Amps): ' v2 = ' Enter zero frequency: ' sourcelist.append( [index, compline, words[3], Title, v1, v2]) |