Skip to content
Merged
Show file tree
Hide file tree
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
9 changes: 7 additions & 2 deletions src/test/host.F90
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ program test_host
integer :: ntest = -1
logical :: no_mask = .false.
logical :: no_diag = .false.
real(rke) :: dt = 1._rke

#if _FABM_DIMENSION_COUNT_>0
i__ = 50
Expand Down Expand Up @@ -259,6 +260,10 @@ program test_host
i = i + 1
call get_command_argument(i, arg)
read (arg,*) ntest
case ('--dt')
i = i + 1
call get_command_argument(i, arg)
read (arg,*) dt
case ('-h')
write (*,'(a)') ''
write (*,'(a)') ''
Expand Down Expand Up @@ -346,7 +351,7 @@ program test_host
! ======================================================================

call start_test('set_domain')
call model%set_domain(_PREARG_LOCATION_ seconds_per_time_unit=1._rke)
call model%set_domain(_PREARG_LOCATION_ seconds_per_time_unit=dt)
call report_test_result()

! ======================================================================
Expand Down Expand Up @@ -815,7 +820,7 @@ subroutine simulate(n)
call cpu_time(time_begin)

do i = 1, n
call model%prepare_inputs()
call model%prepare_inputs(real(i, rke))

_BEGIN_OUTER_HORIZONTAL_LOOP_
flux = 0
Expand Down
1 change: 1 addition & 0 deletions util/developers/environment.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
bottom_depth: 10
bottom_depth_below_geoid: 10
bottom_stress: 0.01
cell_thickness: 10
density: 1020
Expand Down
Loading