File tree 1 file changed +8
-4
lines changed
1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,8 @@ bool output(const Neutrals &neutrals,
89
89
90
90
// make sure the output dt is set correctly. Otherwise these errors aren't caught correctly.
91
91
precision_t dt_output = input.get_dt_output (iOutput);
92
- if (dt_output == 0.0 ){
92
+
93
+ if (dt_output == 0.0 ) {
93
94
report.exit (function);
94
95
return false ;
95
96
}
@@ -243,6 +244,9 @@ bool output(const Neutrals &neutrals,
243
244
AllOutputContainers[iOutput].store_variable (" Gvertical" ,
244
245
" m/s^2" ,
245
246
grid.gravity_vcgc [2 ]);
247
+ AllOutputContainers[iOutput].store_variable (" Gmag" ,
248
+ " m/s^2" ,
249
+ grid.gravity_mag_scgc );
246
250
AllOutputContainers[iOutput].store_variable (" Gpotential" ,
247
251
" m^2/s^2" ,
248
252
grid.gravity_potential_scgc );
@@ -261,9 +265,9 @@ bool output(const Neutrals &neutrals,
261
265
" degrees" ,
262
266
grid.magLon_scgc * cRtoD);
263
267
AllOutputContainers[iOutput].store_variable (" invLat" ,
264
- " Magnetic Invariant Latitude" ,
265
- " degrees" ,
266
- grid.magInvLat_scgc * cRtoD);
268
+ " Magnetic Invariant Latitude" ,
269
+ " degrees" ,
270
+ grid.magInvLat_scgc * cRtoD);
267
271
AllOutputContainers[iOutput].store_variable (" mlt" ,
268
272
" Magnetic Local Time" ,
269
273
" hours" ,
You can’t perform that action at this time.
0 commit comments