Skip to content

Commit

Permalink
Merge pull request #27755 from joshuahansel/physics-changes
Browse files Browse the repository at this point in the history
Added Physics interfaces for adding multiapps and transfers
  • Loading branch information
joshuahansel authored May 31, 2024
2 parents 21f3884 + a6a09f1 commit f14bf8e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions framework/include/physics/PhysicsBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,8 @@ class PhysicsBase : public Action, public InputParametersChecksUtils<PhysicsBase
virtual void addMaterials() {}
virtual void addFunctorMaterials() {}
virtual void addUserObjects() {}
virtual void addMultiApps() {}
virtual void addTransfers() {}
virtual void addPostprocessors() {}
virtual void addVectorPostprocessors() {}
virtual void addReporters() {}
Expand Down
5 changes: 5 additions & 0 deletions framework/src/physics/PhysicsBase.C
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,11 @@ PhysicsBase::act()
else if (_current_task == "add_functor_material")
addFunctorMaterials();

else if (_current_task == "add_multi_app")
addMultiApps();
else if (_current_task == "add_transfer")
addTransfers();

else if (_current_task == "add_postprocessor")
addPostprocessors();
else if (_current_task == "add_vector_postprocessor")
Expand Down

0 comments on commit f14bf8e

Please sign in to comment.