Skip to content

Commit

Permalink
Merge commit '34451eb9bded36e32c6e3832f6119c95865aa6de'
Browse files Browse the repository at this point in the history
  • Loading branch information
moosetest committed Mar 8, 2025
2 parents a595036 + 34451eb commit b234090
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moose
Submodule moose updated 94 files
+17 −0 framework/doc/content/source/actioncomponents/ComponentBoundaryConditionInterface.md
+16 −0 framework/doc/content/source/actioncomponents/ComponentInitialConditionInterface.md
+19 −0 framework/doc/content/source/actioncomponents/ComponentMaterialPropertyInterface.md
+4 −4 framework/doc/content/source/actioncomponents/ComponentPhysicsInterface.md
+2 −2 framework/doc/content/source/actioncomponents/CylinderComponent.md
+13 −0 framework/doc/content/source/ics/FunctorIC.md
+64 −0 framework/doc/content/source/outputs/SolutionInvalidityOutput.md
+17 −8 framework/include/actioncomponents/ActionComponent.h
+98 −0 framework/include/actioncomponents/ComponentBoundaryConditionInterface.h
+50 −0 framework/include/actioncomponents/ComponentInitialConditionInterface.h
+45 −0 framework/include/actioncomponents/ComponentMaterialPropertyInterface.h
+7 −7 framework/include/actioncomponents/ComponentPhysicsInterface.h
+10 −2 framework/include/actioncomponents/CylinderComponent.h
+10 −2 framework/include/actioncomponents/MeshGeneratorComponent.h
+1 −10 framework/include/ics/FunctionIC.h
+41 −0 framework/include/ics/FunctorIC.h
+36 −0 framework/include/outputs/SolutionInvalidityOutput.h
+2 −0 framework/include/physics/DiffusionCG.h
+4 −1 framework/include/physics/DiffusionPhysicsBase.h
+7 −3 framework/include/physics/PhysicsBase.h
+75 −0 framework/include/physics/PhysicsComponentInterface.h
+1 −0 framework/include/problems/FEProblemBase.h
+2 −1 framework/include/utils/InputParametersChecksUtils.h
+30 −10 framework/include/utils/PiecewiseByBlockLambdaFunctor.h
+37 −4 framework/include/utils/SolutionInvalidity.h
+10 −1 framework/src/actioncomponents/ActionComponent.C
+213 −0 framework/src/actioncomponents/ComponentBoundaryConditionInterface.C
+87 −0 framework/src/actioncomponents/ComponentInitialConditionInterface.C
+120 −0 framework/src/actioncomponents/ComponentMaterialPropertyInterface.C
+5 −5 framework/src/actioncomponents/ComponentPhysicsInterface.C
+20 −2 framework/src/actioncomponents/CylinderComponent.C
+20 −2 framework/src/actioncomponents/MeshGeneratorComponent.C
+11 −0 framework/src/actions/CommonOutputAction.C
+100 −0 framework/src/ics/FunctorIC.C
+10 −3 framework/src/meshgenerators/ElementGenerator.C
+59 −0 framework/src/outputs/SolutionInvalidityOutput.C
+51 −7 framework/src/physics/DiffusionCG.C
+8 −4 framework/src/physics/DiffusionFV.C
+55 −7 framework/src/physics/DiffusionPhysicsBase.C
+15 −8 framework/src/physics/PhysicsBase.C
+128 −0 framework/src/physics/PhysicsComponentInterface.C
+15 −1 framework/src/problems/FEProblemBase.C
+2 −2 framework/src/reporters/SolutionInvalidityReporter.C
+1 −0 framework/src/systems/LinearSystem.C
+2 −2 framework/src/systems/NonlinearSystem.C
+2 −2 framework/src/systems/NonlinearSystemBase.C
+1 −1 framework/src/systems/SolverSystem.C
+1 −1 framework/src/utils/InputParameters.C
+147 −23 framework/src/utils/SolutionInvalidity.C
+43 −5 modules/doc/content/newsletter/2025/2025_02.md
+18 −0 modules/doc/content/newsletter/2025/2025_03.md
+1 −0 modules/doc/content/newsletter/index.md
+4 −0 modules/heat_transfer/include/physics/HeatConductionCG.h
+24 −5 modules/heat_transfer/src/physics/HeatConductionCG.C
+2 −2 modules/heat_transfer/src/physics/HeatConductionPhysicsBase.C
+1 −0 modules/heat_transfer/test/tests/physics/gold/test_cg_no_ad_out.e
+9 −0 modules/heat_transfer/test/tests/physics/tests
+0 −3 modules/phase_field/include/materials/GrandPotentialTensorMaterial.h
+4 −0 modules/phase_field/include/materials/PolycrystalDiffusivityTensorBase.h
+2 −4 modules/phase_field/src/materials/GrandPotentialTensorMaterial.C
+15 −6 modules/phase_field/src/materials/PolycrystalDiffusivityTensorBase.C
+ modules/phase_field/test/tests/GrandPotentialPFM/gold/SinteringBase_out.e
+1 −1 test/include/materials/NonsafeMaterial.h
+25 −0 test/include/physics/TestPhysicsComponentInterfaceErrors.h
+3 −0 test/src/base/MooseTestApp.C
+30 −0 test/src/physics/TestPhysicsComponentInterfaceErrors.C
+170 −0 test/tests/actioncomponents/interfaces/component_with_bcs.i
+147 −0 test/tests/actioncomponents/interfaces/component_with_ics.i
+121 −0 test/tests/actioncomponents/interfaces/component_with_materials.i
+1 −0 test/tests/actioncomponents/interfaces/component_with_physics.i
+3 −0 test/tests/actioncomponents/interfaces/gold/component_with_bcs_out.csv
+3 −0 test/tests/actioncomponents/interfaces/gold/component_with_ics_out.csv
+1 −0 test/tests/actioncomponents/interfaces/gold/component_with_materials_out.csv
+0 −0 test/tests/actioncomponents/interfaces/gold/component_with_physics_out.csv
+33 −0 test/tests/actioncomponents/interfaces/physics_component_interface_errors.i
+92 −0 test/tests/actioncomponents/interfaces/tests
+0 −7 test/tests/actioncomponents/tests
+3 −0 test/tests/ics/functor_ic/gold/from_function.csv
+3 −0 test/tests/ics/functor_ic/gold/from_functor_mat.csv
+3 −0 test/tests/ics/functor_ic/gold/from_pp.csv
+3 −0 test/tests/ics/functor_ic/gold/gradient_ic.csv
+75 −0 test/tests/ics/functor_ic/test.i
+50 −0 test/tests/ics/functor_ic/tests
+1 −0 test/tests/meshgenerators/element_generator/element_generator.i
+5 −3 test/tests/misc/solution_invalid/solution_invalid.i
+7 −4 test/tests/misc/solution_invalid/solution_invalid_recover.i
+81 −0 test/tests/misc/solution_invalid/solution_invalid_timehistory.i
+38 −0 test/tests/misc/solution_invalid/tests
+1 −0 test/tests/physics/diffusion_cg.i
+2 −0 test/tests/physics/diffusion_fv.i
+1 −0 test/tests/physics/errors/base_fv.i
+12 −0 test/tests/physics/gold/diffusion_cg_out.csv
+1 −0 test/tests/physics/multi_system/diffusion_multisys.i
+10 −0 test/tests/physics/tests

0 comments on commit b234090

Please sign in to comment.