You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since we have specific problems, we need to add inside the impl classes checks such that when the problems are constucted , the mesh object passed in satisfies the physical bounds for that specific problem
e.g., for the Euler2d:
explicitEigenApp2d(constmesh_t & meshObj, int icId = 1)
: meshObj_(meshObj), icId_(icId) {
if (probid == 1){
// throw if domain not compatible with 2d Sedov, else throw
}
elseif (probid==2){
// throw if domain not compatible with 2d Riemann
}
///
}
The text was updated successfully, but these errors were encountered:
fnrizzi
changed the title
add checks inside impl classes to ensure mesh bounds is consistent
check inside impl classes that mesh bounds are consistent with problem selected
May 27, 2021
fnrizzi
changed the title
check inside impl classes that mesh bounds are consistent with problem selected
check that mesh provided is consistent with problem selected
Jun 6, 2021
fnrizzi
changed the title
check that mesh provided is consistent with problem selected
cpp: check that mesh provided is consistent with problem selected
Feb 1, 2022
Since we have specific problems, we need to add inside the impl classes checks such that when the problems are constucted , the mesh object passed in satisfies the physical bounds for that specific problem
e.g., for the Euler2d:
The text was updated successfully, but these errors were encountered: