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/1173504
  • Loading branch information
moosetest committed Sep 14, 2022
1 parent 17d805d commit a6eed7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moose
Submodule moose updated 67 files
+15 −4 framework/doc/content/source/fvkernels/FVDiffusion.md
+4 −0 framework/include/fviks/FVDiffusionInterface.h
+4 −0 framework/include/fviks/FVOneVarDiffusionInterface.h
+4 −0 framework/include/fvkernels/FVDiffusion.h
+4 −0 framework/include/postprocessors/InterfaceDiffusiveFluxIntegral.h
+89 −2 framework/include/utils/MathFVUtils.h
+9 −0 framework/include/utils/MooseTypes.h
+11 −1 framework/src/fviks/FVDiffusionInterface.C
+11 −1 framework/src/fviks/FVOneVarDiffusionInterface.C
+19 −2 framework/src/fvkernels/FVDiffusion.C
+17 −1 framework/src/postprocessors/InterfaceDiffusiveFluxIntegral.C
+22 −1 modules/navier_stokes/doc/content/source/kernels/INSADEnergyAdvection.md
+46 −0 modules/navier_stokes/doc/content/source/postprocessors/INSElementIntegralEnergyAdvection.md
+39 −0 modules/navier_stokes/include/postprocessors/INSElementIntegralEnergyAdvection.h
+53 −0 modules/navier_stokes/src/postprocessors/INSElementIntegralEnergyAdvection.C
+3 −0 modules/navier_stokes/test/tests/finite_element/ins/energy-conservation/gold/q1q1_out.csv
+3 −0 modules/navier_stokes/test/tests/finite_element/ins/energy-conservation/gold/q2q1_out.csv
+184 −0 modules/navier_stokes/test/tests/finite_element/ins/energy-conservation/q1q1.i
+183 −0 modules/navier_stokes/test/tests/finite_element/ins/energy-conservation/q2q1.i
+19 −0 modules/navier_stokes/test/tests/finite_element/ins/energy-conservation/tests
+8 −0 modules/stochastic_tools/doc/content/bib/stochastic_tools.bib
+10 −0 modules/stochastic_tools/doc/content/source/surrogates/GaussianProcessTrainer.md
+8 −4 modules/stochastic_tools/doc/content/source/utils/GaussianProcessHandler.md
+5 −6 modules/stochastic_tools/include/surrogates/GaussianProcessTrainer.h
+49 −9 modules/stochastic_tools/include/utils/GaussianProcessHandler.h
+45 −14 modules/stochastic_tools/src/surrogates/GaussianProcessTrainer.C
+159 −11 modules/stochastic_tools/src/utils/GaussianProcessHandler.C
+131 −0 modules/stochastic_tools/test/tests/surrogates/gaussian_process/GP_Matern_half_int_tuned_adam.i
+130 −0 modules/stochastic_tools/test/tests/surrogates/gaussian_process/GP_exponential_tuned_adam.i
+1 −1 modules/stochastic_tools/test/tests/surrogates/gaussian_process/GP_squared_exponential_tuned.i
+136 −0 modules/stochastic_tools/test/tests/surrogates/gaussian_process/GP_squared_exponential_tuned_adam.i
+2 −0 ...hastic_tools/test/tests/surrogates/gaussian_process/gold/GP_Matern_half_int_tuned_adam_hyperparams_0002.csv
+2 −0 ...ls/test/tests/surrogates/gaussian_process/gold/GP_Matern_half_int_tuned_adam_minibatch_hyperparams_0002.csv
+21 −0 ..._tools/test/tests/surrogates/gaussian_process/gold/GP_Matern_half_int_tuned_adam_minibatch_results_0002.csv
+101 −0 ...tools/test/tests/surrogates/gaussian_process/gold/GP_Matern_half_int_tuned_adam_minibatch_samp_avg_0002.csv
+21 −0 ...stochastic_tools/test/tests/surrogates/gaussian_process/gold/GP_Matern_half_int_tuned_adam_results_0002.csv
+101 −0 ...tochastic_tools/test/tests/surrogates/gaussian_process/gold/GP_Matern_half_int_tuned_adam_samp_avg_0002.csv
+2 −0 ...hastic_tools/test/tests/surrogates/gaussian_process/gold/GP_exponential_tuned_adam_out_hyperparams_0002.csv
+21 −0 ...stochastic_tools/test/tests/surrogates/gaussian_process/gold/GP_exponential_tuned_adam_out_results_0002.csv
+101 −0 ...tochastic_tools/test/tests/surrogates/gaussian_process/gold/GP_exponential_tuned_adam_out_samp_avg_0002.csv
+2 −0 ...ools/test/tests/surrogates/gaussian_process/gold/GP_squared_exponential_tuned_adam_out_hyperparams_0002.csv
+21 −0 ...ic_tools/test/tests/surrogates/gaussian_process/gold/GP_squared_exponential_tuned_adam_out_results_0002.csv
+101 −0 ...c_tools/test/tests/surrogates/gaussian_process/gold/GP_squared_exponential_tuned_adam_out_samp_avg_0002.csv
+47 −3 modules/stochastic_tools/test/tests/surrogates/gaussian_process/tests
+2 −1 python/MooseDocs/base/executioners.py
+ test/tests/fviks/diffusion/gold/harmonic.e
+ test/tests/fviks/diffusion/gold/test_out.e
+23 −14 test/tests/fviks/diffusion/test.i
+13 −0 test/tests/fviks/diffusion/tests
+ test/tests/fviks/one-var-diffusion/gold/test_out.e
+1 −0 test/tests/fviks/one-var-diffusion/no-ik.i
+33 −13 test/tests/fviks/one-var-diffusion/test.i
+16 −0 test/tests/fviks/one-var-diffusion/test.py
+14 −1 test/tests/fviks/one-var-diffusion/tests
+8 −6 test/tests/fvkernels/block-restriction/1d.i
+10 −6 test/tests/fvkernels/block-restriction/fv-and-fe-block-restriction.i
+7 −7 test/tests/fvkernels/block-restriction/just-mat-blk-restriction.i
+1 −0 test/tests/fvkernels/fv-to-fe-coupling/1d.i
+96 −0 test/tests/fvkernels/mms/harmonic_interpolation/diffusion.i
+72 −0 test/tests/fvkernels/mms/harmonic_interpolation/test.py
+50 −0 test/tests/fvkernels/mms/harmonic_interpolation/tests
+1 −0 test/tests/materials/boundary_material/fv_material_quadrature.i
+1 −0 test/tests/materials/piecewise_by_block_material/test.i
+1 −0 test/tests/materials/piecewise_by_block_material/test_functor.i
+3 −0 test/tests/postprocessors/interface_diffusive_flux/gold/InterfaceDiffusiveFluxIntegral_fv-harmonic.csv
+2 −2 test/tests/postprocessors/interface_diffusive_flux/interface_diffusive_flux_fv.i
+16 −2 test/tests/postprocessors/interface_diffusive_flux/tests

0 comments on commit a6eed7a

Please sign in to comment.