Skip to content

Commit

Permalink
Merge branch 'master' into jrood/update-stk-throw
Browse files Browse the repository at this point in the history
  • Loading branch information
jrood-nrel authored Apr 15, 2024
2 parents 351c052 + 6d91aed commit 65c8927
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
1 change: 1 addition & 0 deletions include/Enums.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ static const std::string EquationTypeMap[] = {
"PNG_U",
"PNG_TKE",
"Wall_Distance",
"Gamma_Transition",
"Volume_of_Fluid"};

enum UserDataType {
Expand Down
2 changes: 1 addition & 1 deletion src/FieldRegistry.C
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Registry()
{"pressure", SingleStateNodalScalar},
{"rans_time_scale" , SingleStateNodalScalar},
{"scalarQ", SingleStateNodalScalar},
{"specific_dissipation_rate", SingleStateNodalScalar},
{"specific_dissipation_rate", MultiStateNodalScalar},
{"specific_heat" , SingleStateNodalScalar},
{"sst_f_one_blending" , SingleStateNodalScalar},
{"sst_max_length_scale", SingleStateNodalScalar},
Expand Down
3 changes: 2 additions & 1 deletion unit_tests/UnitTestSideWriter.C
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ public:
stk::mesh::put_field_on_mesh(
*test_field, meta->universal_part(), 1, &minus_one);

double minus_one_vec[3] = {-1.0, -1.0, -1.0};
stk::mesh::put_field_on_mesh(
*test_vector_field, meta->universal_part(), 3, &minus_one);
*test_vector_field, meta->universal_part(), 3, minus_one_vec);
stk::io::set_field_output_type(
*test_vector_field, stk::io::FieldOutputType::VECTOR_3D);

Expand Down
3 changes: 2 additions & 1 deletion unit_tests/UnitTestUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,10 @@ class Hex8Mesh : public ::testing::Test

double one = 1.0;
double zero = 0.0;
double zeroVec[3] = {0.0, 0.0, 0.0};
const stk::mesh::PartVector parts(1, &meta->universal_part());
elemCentroidField =
fieldManager->register_field<double>("elemCentroid", parts, &zero);
fieldManager->register_field<double>("elemCentroid", parts, zeroVec);
nodalPressureField =
fieldManager->register_field<double>("nodalPressure", parts, &one);
discreteLaplacianOfPressure =
Expand Down
4 changes: 2 additions & 2 deletions unit_tests/kernels/UnitTestKernelUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -1454,7 +1454,7 @@ class VOFKernelHex8Mesh : public TestKernelHex8Mesh
stk::mesh::put_field_on_mesh(
*volumeOfFluid_, meta_->universal_part(), nullptr);
stk::mesh::put_field_on_mesh(
*dvolumeOfFluidDx_, meta_->universal_part(), nullptr);
*dvolumeOfFluidDx_, meta_->universal_part(), spatialDim_, nullptr);
stk::mesh::put_field_on_mesh(
*velocity_, meta_->universal_part(), spatialDim_, nullptr);
stk::io::set_field_output_type(
Expand Down Expand Up @@ -1486,7 +1486,7 @@ class VOFKernelHex8Mesh : public TestKernelHex8Mesh
}

sierra::nalu::ScalarFieldType* volumeOfFluid_{nullptr};
sierra::nalu::ScalarFieldType* dvolumeOfFluidDx_{nullptr};
sierra::nalu::VectorFieldType* dvolumeOfFluidDx_{nullptr};
sierra::nalu::VectorFieldType* velocity_{nullptr};
sierra::nalu::ScalarFieldType* density_{nullptr};
sierra::nalu::ScalarFieldType* viscosity_{nullptr};
Expand Down
2 changes: 1 addition & 1 deletion unit_tests/ngp_kernels/UnitTestNgpLoops.C
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public:
*velocity, stk::io::FieldOutputType::VECTOR_3D);
stk::mesh::put_field_on_mesh(
*massFlowRate, meta->universal_part(), hex8SCS.num_integration_points(),
&zero);
nullptr);
stk::mesh::put_field_on_mesh(*mdotEdge, meta->universal_part(), &zero);
}

Expand Down

0 comments on commit 65c8927

Please sign in to comment.