diff --git a/elec/__init__.py b/elec/__init__.py index 78b02f07b11b6a8cb3ae29162b41947813ddd4be..235229be669878d8e472c315ccc9d682519a5e89 100644 --- a/elec/__init__.py +++ b/elec/__init__.py @@ -4,7 +4,7 @@ def main(kwargs): if label == 'ngspice_t1': import subprocess - subprocess.run(['ngspice -b output/T1_tmp.cir'], shell=True) + subprocess.run(['ngspice -b output/elec/T1_tmp.cir'], shell=True) elif label == 'drs4_get_analog': import subprocess subprocess.run(['ngspice -b param_file/circuit/drs4_analog.cir'], shell=True) diff --git a/elec/ngspice.py b/elec/ngspice.py index f3999d11e1c6702de19ab7f4ebc7bcf3d7ae4f2c..815c18451e3891a830708eaabfb713548a536c2a 100644 --- a/elec/ngspice.py +++ b/elec/ngspice.py @@ -5,7 +5,7 @@ def ngspice(input_c, input_p): lines[140] = 'tran 0.1p ' + str((input_p[len(input_p) - 2])) + '\n' lines[141] = 'wrdata output/t1.raw v(out)\n' f.close() - with open('./output/T1_tmp.cir', 'w') as f: + with open('./output/elec/T1_tmp.cir', 'w') as f: f.writelines(lines) f.close() # TODO: Need to be TOTALLY rewritten \ No newline at end of file diff --git a/elec/t1_create.py b/elec/t1_create.py index f7b0effa89d99daf5aa02e8dcd2c0efc0fc27300..69410b8c83b4f2f3eab91ca2a8f08b961dceb167 100644 --- a/elec/t1_create.py +++ b/elec/t1_create.py @@ -76,11 +76,11 @@ if number>=1: lines[140] = 'tran 0.1p ' + str((input_c[len(input_c) - 2])) + '\n' lines[141] = 'wrdata output/'+str(L)+'t1.txt v(out)\n' f.close() - with open('/scratchfs/atlas/xingchenli/raser/output/T1_tmp.cir', 'w') as f: + with open('/scratchfs/atlas/xingchenli/raser/output/elec/T1_tmp.cir', 'w') as f: f.writelines(lines) f.close() - os.system("ngspice -b -r t1.txt output/T1_tmp.cir") + os.system("ngspice -b -r t1.txt output/elec/T1_tmp.cir") t1=np.loadtxt('/scratchfs/atlas/xingchenli/raser/output/'+str(L)+'t1.txt',dtype=float) volt=[] @@ -148,11 +148,11 @@ else: lines[140] = 'tran 0.1p ' + str((input_c[len(input_c) - 2])) + '\n' lines[141] = 'wrdata output/'+str(L)+'t1.txt v(out)\n' f.close() - with open('/scratchfs/atlas/xingchenli/raser/output/T1_tmp.cir', 'w') as f: + with open('/scratchfs/atlas/xingchenli/raser/output/elec/T1_tmp.cir', 'w') as f: f.writelines(lines) f.close() - os.system("ngspice -b -r t1.txt output/T1_tmp.cir") + os.system("ngspice -b -r t1.txt output/elec/T1_tmp.cir") t1=np.loadtxt('/scratchfs/atlas/xingchenli/raser/output/'+str(L)+'t1.txt',dtype=float) volt=[] diff --git a/tct/tct_t1.py b/tct/tct_t1.py index 647dda7fc9c4bab79a2cb70d7a7f76a2e0b5b4b9..cb27db0724b5b32ff4823f2b6d5c30df3dc47e0d 100644 --- a/tct/tct_t1.py +++ b/tct/tct_t1.py @@ -70,7 +70,7 @@ with open('param_file/circuit/T1.cir', 'r') as f: lines[140] = 'tran 0.1p ' + str((T_ele[len(T_ele) - 1])) + 'n\n' lines[142] = 'wrdata output/t1.raw v(out)\n' f.close() -with open('output/T1_tmp.cir', 'w') as f: +with open('output/elec/T1_tmp.cir', 'w') as f: f.writelines(lines) f.close()