Subroutine to define the slider, in a multiscale problem
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(MS_FE_FILM), | intent(inout) | :: | ms_fe_f | |||
real(kind=R8), | intent(in) | :: | lx |
subroutine modify_h_slider_MS(ms_fe_f, lx)
implicit none
type(MS_FE_FILM), intent(inout) :: ms_fe_f
real(kind=R8), intent(in) :: lx
integer(kind=I4) :: e
call modify_h_slider(ms_fe_f%ts_fe_f, lx)
do e = 1, ms_fe_f%ts_fe_f%m%ne
call modify_h_slider(ms_fe_f%bs_fe_f(e), lx)
enddo
return
endsubroutine modify_h_slider_MS