Skip to content

Commit

Permalink
fills ghosts
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Park authored and Mike Park committed Apr 7, 2022
1 parent b7d262e commit cafb229
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/ref_phys.c
Expand Up @@ -746,6 +746,9 @@ REF_STATUS ref_phys_yplus_lengthscale(REF_GRID ref_grid, REF_DBL mach,
}
}
ref_free(hits);

RSS(ref_node_ghost_dbl(ref_node, lengthscale, 1), "ghost lengthscale");

return REF_SUCCESS;
}

Expand Down Expand Up @@ -796,6 +799,9 @@ REF_STATUS ref_phys_normal_spacing(REF_GRID ref_grid, REF_DBL *normalspacing) {
}
}
ref_free(hits);

RSS(ref_node_ghost_dbl(ref_node, normalspacing, 1), "ghost normalspacing");

return REF_SUCCESS;
}

Expand Down Expand Up @@ -871,6 +877,8 @@ REF_STATUS ref_phys_yplus_metric(REF_GRID ref_grid, REF_DBL *metric,
}
}

RSS(ref_node_ghost_dbl(ref_node, metric, 6), "ghost metric");

ref_free(lengthscale);
ref_free(new_metric);
ref_free(hits);
Expand Down

0 comments on commit cafb229

Please sign in to comment.