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 Aug 24, 2023
2 parents 996f42e + 7125b80 commit 89a3b2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moose
Submodule moose updated 75 files
+2 −1 CODEOWNERS
+2 −1 framework/doc/content/source/bcs/FunctorNeumannBC.md
+2 −2 framework/doc/content/source/reporters/AccumulateReporter.md
+22 −0 framework/include/actions/DeclareLateReportersAction.h
+2 −2 framework/include/actions/MaterialOutputAction.h
+2 −0 framework/include/bcs/FunctorNeumannBC.h
+1 −1 framework/include/interfaces/BlockRestrictable.h
+2 −2 framework/include/interfaces/BoundaryRestrictable.h
+5 −10 framework/include/interfaces/XFEMInterface.h
+1 −9 framework/include/loops/ComputeFVFluxThread.h
+0 −6 framework/include/loops/ComputeMaterialsObjectThread.h
+0 −4 framework/include/loops/ProjectMaterialProperties.h
+4 −4 framework/include/materials/DerivativeMaterialInterface.h
+4 −4 framework/include/materials/InterfaceMaterial.h
+3 −3 framework/include/materials/Material.h
+1 −1 framework/include/materials/MaterialBase.h
+43 −43 framework/include/materials/MaterialData.h
+93 −69 framework/include/materials/MaterialProperty.h
+75 −85 framework/include/materials/MaterialPropertyInterface.h
+19 −7 framework/include/materials/MaterialPropertyRegistry.h
+28 −27 framework/include/materials/MaterialPropertyStorage.h
+6 −6 framework/include/materials/ThreeMaterialPropertyInterface.h
+3 −3 framework/include/materials/TwoMaterialPropertyInterface.h
+2 −0 framework/include/postprocessors/Postprocessor.h
+3 −7 framework/include/problems/FEProblemBase.h
+2 −4 framework/include/relationshipmanagers/RedistributeProperties.h
+1 −1 framework/include/reporters/AccumulateReporter.h
+10 −0 framework/include/reporters/Reporter.h
+53 −0 framework/include/restart/DataIO.h
+8 −9 framework/include/utils/MooseArray.h
+33 −0 framework/src/actions/DeclareLateReportersAction.C
+4 −2 framework/src/actions/MaterialOutputAction.C
+2 −0 framework/src/base/Moose.C
+7 −0 framework/src/base/MooseApp.C
+8 −3 framework/src/bcs/FunctorNeumannBC.C
+11 −0 framework/src/geomsearch/PenetrationLocator.C
+0 −21 framework/src/geomsearch/PenetrationThread.C
+1 −1 framework/src/interfaces/BlockRestrictable.C
+31 −54 framework/src/loops/ComputeMaterialsObjectThread.C
+5 −11 framework/src/loops/ProjectMaterialProperties.C
+1 −1 framework/src/materials/Material.C
+1 −0 framework/src/materials/MaterialBase.C
+30 −5 framework/src/materials/MaterialData.C
+28 −138 framework/src/materials/MaterialPropertyInterface.C
+10 −1 framework/src/materials/MaterialPropertyRegistry.C
+203 −39 framework/src/materials/MaterialPropertyStorage.C
+0 −1 framework/src/materials/ThreeMaterialPropertyInterface.C
+93 −137 framework/src/problems/FEProblemBase.C
+4 −6 framework/src/relationshipmanagers/RedistributeProperties.C
+1 −1 framework/src/reporters/AccumulateReporter.C
+3 −0 framework/src/reporters/Reporter.C
+1 −1 framework/src/userobjects/ActivateElementsUserObjectBase.C
+1 −1 framework/src/userobjects/ElementSubdomainModifier.C
+ modules/contact/test/tests/mortar_restart/gold/frictional_bouncing_block_action_restart_2_out.e
+7 −0 modules/doc/content/newsletter/2023/2023_08.md
+6 −2 modules/navier_stokes/src/kernels/INSADBoussinesqBodyForce.C
+2 −2 modules/navier_stokes/src/materials/INSADMaterial.C
+12 −8 modules/porous_flow/src/materials/PorousFlowMaterial.C
+56 −0 modules/thermal_hydraulics/doc/content/source/components/HSBoundaryExternalAppHeatFlux.md
+30 −0 modules/thermal_hydraulics/include/components/HSBoundary.h
+34 −0 modules/thermal_hydraulics/include/components/HSBoundaryExternalAppHeatFlux.h
+2 −2 modules/thermal_hydraulics/include/materials/DerivativeMaterialInterfaceTHM.h
+48 −0 modules/thermal_hydraulics/src/components/HSBoundary.C
+132 −0 modules/thermal_hydraulics/src/components/HSBoundaryExternalAppHeatFlux.C
+2 −0 modules/thermal_hydraulics/test/tests/components/hs_boundary_external_app_heat_flux/gold/main_out_sub0.csv
+154 −0 modules/thermal_hydraulics/test/tests/components/hs_boundary_external_app_heat_flux/main.i
+35 −0 modules/thermal_hydraulics/test/tests/components/hs_boundary_external_app_heat_flux/mesh.i
+113 −0 modules/thermal_hydraulics/test/tests/components/hs_boundary_external_app_heat_flux/sub.i
+40 −0 modules/thermal_hydraulics/test/tests/components/hs_boundary_external_app_heat_flux/tests
+16 −16 modules/xfem/src/base/XFEM.C
+32 −15 test/include/postprocessors/SetupInterfaceCount.h
+2 −2 test/src/kernels/ADMatDiffusionTest.C
+1 −1 test/src/userobjects/DGDiffusionDomainUserObject.C
+1 −1 test/src/userobjects/MaterialCopyUserObject.C
+27 −0 test/tests/materials/stateful_prop/tests

0 comments on commit 89a3b2a

Please sign in to comment.