Skip to content

Commit

Permalink
Convert mean powder grain size to microns (#374)
Browse files Browse the repository at this point in the history
  • Loading branch information
MattRolchigo committed Aug 30, 2024
1 parent 50929fd commit f49d140
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/CAinputs.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -397,9 +397,9 @@ struct Inputs {
}
else if ((!input_data["Substrate"].contains("PowderDensity")) &&
(!input_data["Substrate"].contains("MeanPowderGrainSize"))) {
// Case where neither PowderDensity nor MeanPowderGrainSize inputs are given - defaults to powder
// active fraction of 1, mean powder grain size equal to the cell size
substrate.powder_grain_spacing = domain.deltax;
// Case where neither PowderDensity nor MeanPowderGrainSize inputs are given - defaults to a mean
// powder grain size equal to the cell size (in microns)
substrate.powder_grain_spacing = domain.deltax * pow(10, 6);
}
if ((input_data["Substrate"].contains("PowderFirstLayer")) && (id == 0))
std::cout
Expand Down

0 comments on commit f49d140

Please sign in to comment.