Skip to content

Commit 4a9735a

Browse files
committed
FEAT: separate friction and heat transfer
1 parent e89e401 commit 4a9735a

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

src/output.cpp

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -247,10 +247,14 @@ bool output(const Neutrals &neutrals,
247247
"Heating from Chemistry",
248248
"K/s",
249249
neutrals.heating_chemical_scgc);
250-
AllOutputContainers[iOutput].store_variable("Heating_Collisions",
251-
"Heating from Ion Neutral Collisions",
250+
AllOutputContainers[iOutput].store_variable("Heating_Transfer",
251+
"Heating from Ti- Tn Ion Neutral Collisions",
252252
"K/s",
253-
neutrals.heating_ion_collisions_scgc);
253+
neutrals.heating_ion_heat_transfer_scgc);
254+
AllOutputContainers[iOutput].store_variable("Heating_Ion_Friction",
255+
"Heating from Friction Ion Neutral Collisions",
256+
"K/s",
257+
neutrals.heating_ion_friction_scgc);
254258
AllOutputContainers[iOutput].store_variable("Conduction",
255259
"Conduction",
256260
"K/s",
@@ -297,9 +301,6 @@ bool output(const Neutrals &neutrals,
297301
if (type_output == "bfield")
298302
filename = "3DBFI_";
299303

300-
if (type_output == "moment")
301-
filename = "3DMMT_";
302-
303304
if (type_output == "gravity")
304305
filename = "3DGRA_";
305306

0 commit comments

Comments
 (0)