Skip to content

Commit

Permalink
Merge pull request #23 from aurora-multiphysics/IRMINSAD-material-fix
Browse files Browse the repository at this point in the history
Change -> to . in IRMINSADMaterial.C to match change in MOOSE
  • Loading branch information
ajdubas authored Sep 4, 2023
2 parents 6062a6a + a87ef23 commit e59a33e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/materials/IRMINSADMaterial.C
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,14 @@ IRMINSADMaterial::subdomainSetup()
// So we have to go through MaterialData here. We already performed the material property
// requests through the MaterialPropertyInterface APIs in the INSAD kernels, so we should be
// safe for dependencies
_boussinesq_alpha = &_material_data->getProperty<Real, true>(
_boussinesq_alpha = &_material_data.getProperty<Real, true>(
_object_tracker->get<MaterialPropertyName>("alpha", _current_subdomain_id), 0, *this);
_temperature =
&_subproblem
.getStandardVariable(
_tid, _object_tracker->get<std::string>("temperature", _current_subdomain_id))
.adSln();
_ref_temp = &_material_data->getProperty<Real, false>(
_ref_temp = &_material_data.getProperty<Real, false>(
_object_tracker->get<MaterialPropertyName>("ref_temp", _current_subdomain_id), 0, *this);
}
else
Expand Down

0 comments on commit e59a33e

Please sign in to comment.