-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clean up BlackBear tests to remove usage of deprecated syntax #318
Comments
bwspenc
added a commit
to bwspenc/blackbear
that referenced
this issue
Nov 21, 2022
vprithiv
pushed a commit
to vprithiv/blackbear
that referenced
this issue
Dec 14, 2022
bwspenc
added a commit
to bwspenc/blackbear
that referenced
this issue
Dec 21, 2022
…daholab#318 A recent change removed usage of deprecated syntax in these tests. This resulted in an unexpected change in the model behavior because of a memory access bug that was only triggered by the old syntax. This updates the gold results for the Wald block tests. The newer results show greater expansion than before, but the difference is minor, and in many cases gives better agreement with experimental results.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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
andthermal_capacity_model
should be replaced withthermal_model
ref_density_of_concrete
should be replaced withref_density
ref_specific_heat_of_concrete
should be replaced withref_specific_heat
ref_thermal_conductivity_of_concrete
should be replaced withref_thermal_conductivity
aggregate_vol_fraction
needs to be specified with the new syntaxmoisture_diffusivity_model
should be replaced withmoisture_model
General:
Putting
block
inGlobalParams
gives a deprecated errorcoord_type
needs to go inMesh
instead ofProblem
component
should not be specified inPressure
BCsMultiAppCommandLineControl
is replaced byMultiAppSamplerControl
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.
The text was updated successfully, but these errors were encountered: