Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Verification/Pyrolysis/tga_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def h_w(tmp):
f = open('tga_analysis_exact.csv','w')

f.write('s,C,g/g,g/g,g/g,g/g,g/g,1/s,1/s,1/s,1/s,1/s,W/g,W/g\n')
f.write('Time,Temp,Total Mass,component 1 Mass,water Mass,component 2 Mass,residue Mass,Total MLR, component 1 MLR, water MLR, component 2 MLR, residue MLR,MCC,DSC\n')
f.write('Time,Temp,Total Mass,dry wood Mass,water Mass,char Mass,ash Mass,Total MLR, dry wood MLR, water MLR, char MLR, ash MLR,MCC,DSC\n')

outstr=[str('{:.4e}'.format(t)),str('{:.4e}'.format(Temp)),str('{:.4e}'.format(msum/m0)),str('{:.4e}'.format(m1/m0)),str('{:.4e}'.format(mw/m0)),str('{:.4e}'.format(m2/m0)),str('{:.4e}'.format(mr/m0)),str('{:.4e}'.format(0)),str('{:.4e}'.format(0)),str('{:.4e}'.format(0)),str('{:.4e}'.format(0)),str('{:.4e}'.format(0)),str('{:.4e}'.format(0)),str('{:.4e}'.format(0))]
outstr2 = ','.join(outstr)+'\n'
Expand Down
2 changes: 1 addition & 1 deletion Verification/Pyrolysis/tga_analysis_exact.csv
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
s,C,g/g,g/g,g/g,g/g,g/g,1/s,1/s,1/s,1/s,1/s,W/g,W/g
Time,Temp,Total Mass,component 1 Mass,water Mass,component 2 Mass,residue Mass,Total MLR, component 1 MLR, water MLR, component 2 MLR, residue MLR,MCC,DSC
Time,Temp,Total Mass,dry wood Mass,water Mass,char Mass,ash Mass,Total MLR, dry wood MLR, water MLR, char MLR, ash MLR,MCC,DSC
0.0000e+00,2.0000e+01,1.0000e+00,9.0000e-01,1.0000e-01,0.0000e+00,0.0000e+00,0.0000e+00,0.0000e+00,0.0000e+00,0.0000e+00,0.0000e+00,0.0000e+00,0.0000e+00
1.2000e+01,2.1000e+01,9.9963e-01,9.0000e-01,9.9627e-02,0.0000e+00,0.0000e+00,3.1596e-05,0.0000e+00,0.0000e+00,3.1596e-05,0.0000e+00,0.0000e+00,1.9418e-01
2.4000e+01,2.2000e+01,9.9924e-01,9.0000e-01,9.9240e-02,0.0000e+00,0.0000e+00,3.2820e-05,0.0000e+00,0.0000e+00,3.2820e-05,0.0000e+00,0.0000e+00,1.9725e-01
Expand Down
Loading