Skip to content

Commit

Permalink
Remove debug output. COSIMA/access-om2#242
Browse files Browse the repository at this point in the history
  • Loading branch information
nichannah committed Aug 3, 2021
1 parent a451a7f commit c5a82a1
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion atm/src/atm.F90
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,6 @@ program atm
do i=1, num_atm_to_ice_fields
ri = to_runoff_map(i)

print*, 'forcing_fields(i)%dt: ', forcing_fields(i)%dt
if (mod(cur_runtime_in_seconds, forcing_fields(i)%dt) == 0) then
call field_read_timer%start()
call forcing_fields(i)%update(accessom2%get_cur_forcing_date(), &
Expand Down
1 change: 0 additions & 1 deletion libforcing/src/forcing_config.F90
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ subroutine forcing_config_init(self, config, loggerin, num_fields)

self%num_inputs = self%core%count(inputs)
num_fields = self%num_inputs
print*, 'forcing_config_init num_fields: ', num_fields
self%logger => loggerin

endsubroutine forcing_config_init
Expand Down
6 changes: 0 additions & 6 deletions libforcing/src/forcing_field.F90
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ subroutine forcing_field_init(self, name_list, filename_template_list, cname, do
integer :: num_file_inputs, i

num_file_inputs = size(name_list)
print*, 'num_file_inputs: ', num_file_inputs

allocate(self%names(num_file_inputs))
allocate(self%filename_templates(num_file_inputs))
Expand Down Expand Up @@ -110,8 +109,6 @@ subroutine forcing_field_init(self, name_list, filename_template_list, cname, do
dt = self%dt
calendar = self%calendar

print*, 'dt, calendar, nx, ny:', dt, calendar, self%ncvars(1)%nx, self%ncvars(1)%ny

endsubroutine forcing_field_init


Expand Down Expand Up @@ -316,9 +313,6 @@ function get_shape(self)
class(forcing_field), intent(in) :: self
integer, dimension(2) :: get_shape

print*, 'cname: ', self%coupling_name
print*, 'shape: ', shape(self%data_array)

get_shape = shape(self%data_array)
endfunction

Expand Down

0 comments on commit c5a82a1

Please sign in to comment.