Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/devel'
Browse files Browse the repository at this point in the history
  • Loading branch information
hugary1995 committed Jan 15, 2025
2 parents 51dc4ff + 914a18f commit b0d7a5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moose
Submodule moose updated 92 files
+17 −0 framework/doc/content/source/meshmodifiers/MoveNodesToSphere.md
+0 −13 framework/doc/content/source/userobjects/GeometrySphere.md
+2 −2 framework/include/auxkernels/SolutionAux.h
+2 −2 framework/include/auxkernels/SolutionScalarAux.h
+0 −3 framework/include/base/MooseApp.h
+2 −2 framework/include/functions/Axisymmetric2D3DSolutionFunction.h
+2 −2 framework/include/functions/SolutionFunction.h
+2 −2 framework/include/ics/ScalarSolutionIC.h
+2 −2 framework/include/ics/SolutionIC.h
+9 −6 framework/include/meshmodifiers/MoveNodesToGeometryModifierBase.h
+6 −4 framework/include/meshmodifiers/MoveNodesToSphere.h
+7 −485 framework/include/userobjects/SolutionUserObject.h
+514 −0 framework/include/userobjects/SolutionUserObjectBase.h
+2 −2 framework/src/auxkernels/SolutionAux.C
+2 −2 framework/src/auxkernels/SolutionScalarAux.C
+2 −2 framework/src/functions/Axisymmetric2D3DSolutionFunction.C
+2 −2 framework/src/functions/SolutionFunction.C
+2 −2 framework/src/ics/ScalarSolutionIC.C
+2 −2 framework/src/ics/SolutionIC.C
+18 −7 framework/src/meshmodifiers/MoveNodesToGeometryModifierBase.C
+39 −0 framework/src/meshmodifiers/MoveNodesToSphere.C
+1 −1 framework/src/postprocessors/ParsedPostprocessor.C
+12 −4 framework/src/restart/RestartableEquationSystems.C
+0 −35 framework/src/userobjects/GeometrySphere.C
+22 −1,207 framework/src/userobjects/SolutionUserObject.C
+1,265 −0 framework/src/userobjects/SolutionUserObjectBase.C
+5 −2 modules/fluid_properties/include/fluidproperties/SinglePhaseFluidProperties.h
+11 −0 modules/fluid_properties/include/fluidproperties/TabulatedFluidProperties.h
+7 −2 modules/fluid_properties/src/fluidproperties/NaKFluidProperties.C
+37 −13 modules/fluid_properties/src/fluidproperties/SimpleFluidProperties.C
+4 −1 modules/fluid_properties/src/fluidproperties/SinglePhaseFluidProperties.C
+6 −25 modules/fluid_properties/src/fluidproperties/TabulatedBicubicFluidProperties.C
+109 −19 modules/fluid_properties/src/fluidproperties/TabulatedFluidProperties.C
+6 −4 modules/fluid_properties/src/fluidproperties/TemperaturePressureFunctionFluidProperties.C
+66 −0 modules/fluid_properties/test/tests/tabulated/tests
+5 −2 modules/navier_stokes/include/postprocessors/VolumetricFlowRate.h
+47 −0 modules/navier_stokes/include/userobjects/RhieChowFaceFluxProvider.h
+9 −10 modules/navier_stokes/include/userobjects/RhieChowInterpolatorBase.h
+9 −9 modules/navier_stokes/include/userobjects/RhieChowMassFlux.h
+4 −4 modules/navier_stokes/src/postprocessors/MassFluxWeightedFlowRate.C
+16 −11 modules/navier_stokes/src/postprocessors/VolumetricFlowRate.C
+35 −0 modules/navier_stokes/src/userobjects/RhieChowFaceFluxProvider.C
+9 −10 modules/navier_stokes/src/userobjects/RhieChowInterpolatorBase.C
+22 −21 modules/navier_stokes/src/userobjects/RhieChowMassFlux.C
+188 −0 modules/navier_stokes/test/tests/postprocessors/flow_rates/conservation_LinearFV.i
+3 −0 modules/navier_stokes/test/tests/postprocessors/flow_rates/gold/conservation_LinearFV_out.csv
+10 −1 modules/navier_stokes/test/tests/postprocessors/flow_rates/tests
+6 −4 modules/optimization/include/userobjects/AdjointSolutionUserObject.h
+14 −19 modules/optimization/src/userobjects/AdjointSolutionUserObject.C
+2 −0 modules/phase_field/src/userobjects/SolutionRasterizer.C
+4 −4 modules/solid_mechanics/doc/content/modules/solid_mechanics/ShellElements.md
+18 −0 modules/solid_mechanics/doc/content/source/auxkernels/ShellLocalCoordinatesAux.md
+65 −0 modules/solid_mechanics/doc/content/source/auxkernels/ShellResultantsAux.md
+39 −0 modules/solid_mechanics/include/auxkernels/ShellLocalCoordinatesAux.h
+59 −0 modules/solid_mechanics/include/auxkernels/ShellResultantsAux.h
+11 −0 modules/solid_mechanics/include/materials/ADComputeIncrementalShellStrain.h
+6 −0 modules/solid_mechanics/include/materials/ADComputeShellStress.h
+71 −0 modules/solid_mechanics/src/auxkernels/ShellLocalCoordinatesAux.C
+142 −0 modules/solid_mechanics/src/auxkernels/ShellResultantsAux.C
+83 −26 modules/solid_mechanics/src/materials/ADComputeIncrementalShellStrain.C
+8 −0 modules/solid_mechanics/src/materials/ADComputeShellStress.C
+213 −0 modules/solid_mechanics/test/tests/shell/static/Plate_Concentrated_Loads.msh
+68 −68 modules/solid_mechanics/test/tests/shell/static/beam_bending_moment_AD.i
+73 −73 modules/solid_mechanics/test/tests/shell/static/beam_bending_moment_AD_2.i
+ modules/solid_mechanics/test/tests/shell/static/gold/beam_bending_moment_AD_2_out.e
+ modules/solid_mechanics/test/tests/shell/static/gold/inclined_straintest_local_stress_out.e
+ modules/solid_mechanics/test/tests/shell/static/gold/large_strain_m_40_AD_out.e
+3 −0 modules/solid_mechanics/test/tests/shell/static/gold/pinched_cylinder_symm_local_stress_out.csv
+ modules/solid_mechanics/test/tests/shell/static/gold/pinched_cylinder_symm_local_stress_out.e
+ modules/solid_mechanics/test/tests/shell/static/gold/pinched_cylinder_symm_unstructured_out.e
+ modules/solid_mechanics/test/tests/shell/static/gold/plate_cantilever_out.e
+ modules/solid_mechanics/test/tests/shell/static/gold/plate_concentrated_loads_out.e
+280 −0 modules/solid_mechanics/test/tests/shell/static/inclined_straintest_local_stress.i
+48 −48 modules/solid_mechanics/test/tests/shell/static/large_strain_m_40_AD.i
+2 −3 modules/solid_mechanics/test/tests/shell/static/pinched_cylinder_symm.i
+461 −0 modules/solid_mechanics/test/tests/shell/static/pinched_cylinder_symm_local_stress.i
+4 −3 modules/solid_mechanics/test/tests/shell/static/pinched_cylinder_symm_unstructured.i
+267 −0 modules/solid_mechanics/test/tests/shell/static/plate_cantilever.i
+298 −0 modules/solid_mechanics/test/tests/shell/static/plate_concentrated_loads.i
+24 −1 modules/solid_mechanics/test/tests/shell/static/tests
+7 −0 modules/thermal_hydraulics/src/actions/AddComponentAction.C
+54 −0 modules/thermal_hydraulics/test/tests/misc/mesh_block_interaction/test.i
+10 −0 modules/thermal_hydraulics/test/tests/misc/mesh_block_interaction/tests
+2 −2 test/include/postprocessors/TestDiscontinuousValuePP.h
+2 −2 test/src/postprocessors/TestDiscontinuousValuePP.C
+ test/tests/auxkernels/solution_aux/gold/solution_aux_exodus_interp_out2.e
+9 −0 test/tests/auxkernels/solution_aux/tests
+0 −0 test/tests/meshmodifiers/move_nodes_to_sphere/block.i
+0 −0 test/tests/meshmodifiers/move_nodes_to_sphere/geometrysphere.i
+ test/tests/meshmodifiers/move_nodes_to_sphere/gold/block_out.e-s004
+ test/tests/meshmodifiers/move_nodes_to_sphere/gold/geometrysphere_out.e-s004
+1 −1 test/tests/meshmodifiers/move_nodes_to_sphere/tests

0 comments on commit b0d7a5e

Please sign in to comment.