Skip to content

Commit

Permalink
Finish addressing Tracys comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mkavulich committed Apr 3, 2024
1 parent 7fdf996 commit bfc72d1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions scm/doc/TechGuide/chap_ccpp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ called ‘smoke’.
.. code:: fortran
call check(NF90_INQ_VARID(grp_ncid,"smoke",varID))
call check(NF90_GET_VAR(grp_ncid,varID,input_smoke))
call check(NF90_GET_VAR(grp_ncid,varID,input_smoke))
- set ``scm_input%input_smoke = input_smoke``

Expand All @@ -339,9 +339,9 @@ called ‘smoke’.
.. code:: fortran
do i=1, scm_state%n_cols
call interpolate_to_grid_centers(scm_input%input_nlev, scm_input%input_pres, scm_input%input_smoke, scm_state%pres_l(i,1,:), &
scm_state%n_levels, scm_state%state_tracer(i,1,:,scm_state%smoke_index,1), last_index_init, 1)
end do
call interpolate_to_grid_centers(scm_input%input_nlev, scm_input%input_pres, scm_input%input_smoke, scm_state%pres_l(i,1,:), &
scm_state%n_levels, scm_state%state_tracer(i,1,:,scm_state%smoke_index,1), last_index_init, 1)
end do
- At this point, you have a new tracer initialized to values
specified in the input file on the model vertical grid, but it is
Expand Down
2 changes: 1 addition & 1 deletion scm/doc/TechGuide/chap_hsd.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Hierarchical Physics Development
================================

:numref:`Chapter %c <Hierarchical_Physics_Development>` provides an overview of
:numref:`Chapter %c <Hierarchical Physics Development>` provides an overview of
the tools supported by the Single Column Model (SCM) to faciliate
hierarchical system development (HSD)

Expand Down

0 comments on commit bfc72d1

Please sign in to comment.