@@ -64,18 +64,14 @@ contains
6464 @:PROHIBIT(p + 1 < min (1 , p)* num_stcls_min* weno_order, &
6565 " For 3D simulation, p must be greater than or equal to (num_stcls_min*weno_order - 1), whose value is " // trim (numStr))
6666 @:PROHIBIT(weno_order /= 1 .and. f_is_default(weno_eps), &
67- " weno_order != 1, but weno_eps is not set. A typical value of weno_eps is 1e-6" )
68- @:PROHIBIT(weno_eps <= 0d0 , " weno_eps must be positive. A typical value of weno_eps is 1e-6" )
69- @:PROHIBIT(wenoz .and. weno_order == 7 .and. f_is_default(wenoz_q), &
70- " wenoz is used at 7th order, but wenoz_q is not set. It should be either 2, 3, or 4" )
71- @:PROHIBIT(wenoz .and. weno_order == 7 .and. .not. (f_approx_equal(wenoz_q, 2._wp ) .or. f_approx_equal(wenoz_q, 3._wp ) .or. f_approx_equal(wenoz_q, 4d0 )), &
72- " wenoz_q must be either 2, 3, or 4" )
73- @:PROHIBIT(teno .and. f_is_default(teno_CT), " teno is used, but teno_CT is not set. A typical value of teno_CT is 1e-6" )
74- @:PROHIBIT(teno .and. teno_CT <= 0._wp , " teno_CT must be positive. A typical value of teno_CT is 1e-6" )
67+ " weno_order != 1, but weno_eps is not set. A typical value of weno_eps is 1e-6_wp" )
68+ @:PROHIBIT(weno_eps <= 0._wp , " weno_eps must be positive. A typical value of weno_eps is 1e-6_wp" )
69+ @:PROHIBIT(teno .and. f_is_default(teno_CT), " teno is used, but teno_CT is not set. A typical value of teno_CT is 1e-6_wp" )
70+ @:PROHIBIT(teno .and. teno_CT <= 0._wp , " teno_CT must be positive. A typical value of teno_CT is 1e-6_wp" )
7571 @:PROHIBIT(count ([mapped_weno, wenoz, teno]) >= 2 , " Only one of mapped_weno, wenoz, or teno can be set to true" )
7672 @:PROHIBIT(weno_order == 1 .and. mapped_weno)
7773 @:PROHIBIT(weno_order == 1 .and. wenoz)
78- @:PROHIBIT(( weno_order == 1 .or. weno_order == 3 ) .and. teno)
74+ @:PROHIBIT(weno_order /= 5 .and. teno)
7975 @:PROHIBIT(weno_order /= 5 .and. mp_weno)
8076 @:PROHIBIT(model_eqns == 1 .and. weno_avg)
8177 end subroutine s_check_inputs_weno
@@ -295,4 +291,4 @@ contains
295291 @:PROHIBIT(integral_wrt .and. (.not. bubbles))
296292 end subroutine s_check_inputs_misc
297293
298- end module m_checker
294+ end module m_checker
0 commit comments