@@ -6,6 +6,13 @@ It provides tools for solving coupled conjugate heat transfer problems.
66Some simple 1 and 2D validation cases can be found in
77[ the tests] ( https://github.com/aurora-multiphysics/hippo/tree/main/test/tests/multiapps ) .
88
9+ ## Using Hippo
10+
11+ Hippo's documentation is a work in progress,
12+ and can be found [ here] ( https://aurora-multiphysics.github.io/hippo/ ) .
13+ It includes an example of how to set up
14+ a coupled conjugate heat transfer problem.
15+
916## Install/Build
1017
1118Note: Only tested with GCC.
@@ -135,10 +142,10 @@ you may run into errors when running Hippo.
135142Hippo input files that run a MOOSE case do not require a Kernel or variables.
136143However, MOOSE will still happily go off and calculate a residual.
137144Since there are no variables defined,
138- the residual calculation results in a division by vero and an FPE signal.
145+ the residual calculation results in a division by zero and an FPE signal.
139146OpenFOAM will catch this signal and abort the application.
140147
141- There are two workarounds for this problem :
148+ Either of these two workarounds will work :
142149
1431501 . Disable trapping for floating point exceptions.
144151 ` unset FOAM_SIGFPE && unset FOAM_SETNAN ` .
@@ -153,8 +160,3 @@ There are two workarounds for this problem:
153160 []
154161 []
155162 ```
156-
157- "Fork hippo" to create a new MOOSE-based application.
158-
159- For more information see:
160- [ http://mooseframework.org/create-an-app/ ] ( http://mooseframework.org/create-an-app/ )
0 commit comments