Skip to content

Commit

Permalink
Updating stable moose submodule refs #000
Browse files Browse the repository at this point in the history
Triggered by CIVET job https://civet.inl.gov/job/2492659
  • Loading branch information
moosetest committed Oct 12, 2024
1 parent 8ae5af0 commit 1451d03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moose
Submodule moose updated 57 files
+4 −2 framework/doc/content/source/auxkernels/ParsedAux.md
+10 −3 framework/doc/content/syntax/Functions/index.md
+3 −3 framework/include/actioncomponents/PhysicsComponentBase.h
+2 −2 framework/include/actions/ActionWarehouse.h
+8 −0 framework/include/auxkernels/ParsedAux.h
+2 −0 framework/include/functions/ConstantFunction.h
+11 −2 framework/include/functions/Function.h
+1 −0 framework/include/functions/PiecewiseLinearBase.h
+3 −2 framework/include/physics/DiffusionPhysicsBase.h
+9 −1 framework/include/utils/LinearInterpolation.h
+36 −4 framework/src/auxkernels/ParsedAux.C
+6 −0 framework/src/functions/ConstantFunction.C
+6 −0 framework/src/functions/Function.C
+12 −0 framework/src/functions/PiecewiseLinearBase.C
+2 −2 framework/src/physics/DiffusionCG.C
+18 −0 framework/src/physics/DiffusionPhysicsBase.C
+125 −0 framework/src/utils/LinearInterpolation.C
+8 −0 modules/heat_transfer/doc/content/source/physics/HeatConductionPhysicsBase.md
+8 −2 modules/heat_transfer/include/bcs/ADConvectiveHeatFluxBC.h
+2 −2 modules/heat_transfer/include/physics/HeatConductionCG.h
+2 −2 modules/heat_transfer/include/physics/HeatConductionFV.h
+2 −2 modules/heat_transfer/include/physics/HeatConductionPhysicsBase.h
+51 −8 modules/heat_transfer/src/bcs/ADConvectiveHeatFluxBC.C
+54 −2 modules/heat_transfer/src/physics/HeatConductionCG.C
+57 −2 modules/heat_transfer/src/physics/HeatConductionFV.C
+26 −11 modules/heat_transfer/src/physics/HeatConductionPhysicsBase.C
+ modules/heat_transfer/test/tests/physics/gold/test_cg_convective_bc_out.e
+1 −0 modules/heat_transfer/test/tests/physics/gold/test_cg_functor_hs_out.e
+ modules/heat_transfer/test/tests/physics/gold/test_fv_convective_bc_out.e
+1 −0 modules/heat_transfer/test/tests/physics/gold/test_fv_functor_hs_out.e
+49 −0 modules/heat_transfer/test/tests/physics/test_cg_convective_bc.i
+52 −0 modules/heat_transfer/test/tests/physics/test_fv_convective_bc.i
+47 −9 modules/heat_transfer/test/tests/physics/tests
+2 −2 modules/navier_stokes/include/physics/PNSFVSolidHeatTransferPhysics.h
+5 −0 modules/navier_stokes/src/physics/PNSFVSolidHeatTransferPhysics.C
+4 −1 modules/scalar_transport/include/physics/MultiSpeciesDiffusionPhysicsBase.h
+2 −2 modules/scalar_transport/src/physics/MultiSpeciesDiffusionCG.C
+28 −0 modules/scalar_transport/src/physics/MultiSpeciesDiffusionPhysicsBase.C
+2 −0 modules/scalar_transport/test/tests/physics/restart/gold/from_file.csv
+2 −0 modules/scalar_transport/test/tests/physics/restart/gold/restart_user_ics.csv
+2 −0 modules/scalar_transport/test/tests/physics/restart/gold/user_ics.csv
+96 −0 modules/scalar_transport/test/tests/physics/restart/test_cg.i
+31 −0 modules/scalar_transport/test/tests/physics/restart/tests
+1 −1 modules/scalar_transport/test/tests/physics/tests
+2 −0 modules/solid_properties/include/solidproperties/ThermalFunctionSolidProperties.h
+6 −0 modules/solid_properties/src/solidproperties/ThermalFunctionSolidProperties.C
+4 −3 modules/solid_properties/unit/include/ThermalFunctionSolidPropertiesTest.h
+12 −1 modules/solid_properties/unit/src/ThermalFunctionSolidPropertiesTest.C
+ test/tests/auxkernels/parsed_aux/gold/parsed_aux_mat_test_out.e
+110 −0 test/tests/auxkernels/parsed_aux/parsed_aux_mat_test.i
+29 −12 test/tests/auxkernels/parsed_aux/tests
+18 −0 unit/include/ConstantFunctionTest.h
+20 −0 unit/include/FunctionTestUtils.h
+22 −0 unit/include/PiecewiseLinearTest.h
+23 −0 unit/src/ConstantFunctionTest.C
+55 −0 unit/src/FunctionTestUtils.C
+55 −0 unit/src/PiecewiseLinearTest.C

0 comments on commit 1451d03

Please sign in to comment.