Skip to content

Commit

Permalink
Change single to double precision for unit coversion
Browse files Browse the repository at this point in the history
Co-authored-by: Micael Oliveira <micael.oliveira@anu.edu.au>
  • Loading branch information
ezhilsabareesh8 and micaeljtoliveira authored Oct 25, 2024
1 parent d111628 commit 708b1ea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/topography.f90
Original file line number Diff line number Diff line change
Expand Up @@ -506,10 +506,10 @@ subroutine topography_cut_off_T_cells(this, hgrid, cutoff)
! Apply cutoff to depth based on the provided T-cell cutoff value in kilometers
do i = 1, int(ny_len / 2)
do j = 1, int((nxp_len - 1) / 2)
if (dy_t(i, j) < cutoff*1000.0) then !Input cutoff in Kilometers covert it to meters
this%depth(i, j) = MISSING_VALUE ! Set values below cutoff to zero or another value as needed
end if
end do
if (dy_t(i, j) < cutoff*1000.0_real64) then !Input cutoff in Kilometers covert it to meters
this%depth(i, j) = MISSING_VALUE ! Set values below cutoff to zero or another value as needed
end if
end do
end do

end subroutine topography_cut_off_T_cells
Expand Down

0 comments on commit 708b1ea

Please sign in to comment.