@@ -18,8 +18,8 @@ bool Neutrals::exchange_old(Grid &grid) {
18
18
int64_t nGCs = grid.get_nGCs ();
19
19
20
20
for (int iSpecies = 0 ; iSpecies < nSpecies; iSpecies++) {
21
- if (species[iSpecies].DoAdvect )
22
- DidWork = exchange_one_var (grid, species[iSpecies].density_scgc , false );
21
+ // if (species[iSpecies].DoAdvect)
22
+ DidWork = exchange_one_var (grid, species[iSpecies].density_scgc , false );
23
23
}
24
24
25
25
DidWork = exchange_one_var (grid, temperature_scgc, false );
@@ -1033,14 +1033,14 @@ bool exchange_one_var(Grid &grid,
1033
1033
MPI_Barrier (aether_comm);
1034
1034
1035
1035
// If this is a cubesphere grid, interpolate ghostcells to their proper location
1036
- if (grid.IsCubeSphereGrid & grid.gcInterpolationSet ) {
1037
- report.print (3 , " Interpolating Ghostcells to Proper Location" );
1038
- var_scgc = interpolate_ghostcells (var_to_pass, grid);
1039
- var_to_pass = var_scgc;
1040
- }
1036
+ // if (grid.IsCubeSphereGrid & grid.gcInterpolationSet) {
1037
+ // report.print(3, "Interpolating Ghostcells to Proper Location");
1038
+ // var_scgc = interpolate_ghostcells(var_to_pass, grid);
1039
+ // var_to_pass = var_scgc;
1040
+ // }
1041
1041
1042
1042
// Now we fill in the corners so that we don't have zero values there:
1043
- fill_corners (var_to_pass, nG);
1043
+ // fill_corners(var_to_pass, nG);
1044
1044
1045
1045
report.exit (function);
1046
1046
return DidWork;
0 commit comments