idaholab / blackbear

BlackBear is a MOOSE-based code for simulating degradation processes in concrete and other structural materials.
GNU Lesser General Public License v2.1
17 stars 42 forks source link

Clean up BlackBear tests to remove usage of deprecated syntax #318

Open bwspenc opened 1 year ago

bwspenc commented 1 year ago

Reason

We have a number of tests currently failing the deprecated tests. Update the syntax of those tests, and for the syntax in BlackBear, remove the deprecated syntax since it has been deprecated for some time now.

Design

Specific usages to be addressed include: In the concrete model: thermal_conductivity_model and thermal_capacity_model should be replaced with thermal_model ref_density_of_concrete should be replaced with ref_density ref_specific_heat_of_concrete should be replaced with ref_specific_heat ref_thermal_conductivity_of_concrete should be replaced with ref_thermal_conductivity aggregate_vol_fraction needs to be specified with the new syntax moisture_diffusivity_model should be replaced with moisture_model General: Putting block in GlobalParams gives a deprecated error coord_type needs to go in Mesh instead of Problem component should not be specified in Pressure BCs MultiAppCommandLineControl is replaced by MultiAppSamplerControl

Impact

Updating the syntax in the tests will have no impact on existing behavior. Removing the outdated syntax that is in the scope of BlackBear will affect end users.