Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/simulation/m_checker.fpp
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,8 @@ contains
!> Checks constraints on elasticity parameters
subroutine s_check_inputs_elasticity
@:PROHIBIT(hyperelasticity .and. hyper_model == dflt_int)
@:PROHIBIT((hypoelasticity .or. hyperelasticity) .and. fd_order /= 4)
@:PROHIBIT((hypoelasticity .or. hyperelasticity) .and. fd_order == dflt_int, &
"fd_order must be set for hypoelasticity or hyperelasticity")
end subroutine

!> Checks constraints on bubble parameters
Expand Down
Loading