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
3 changes: 1 addition & 2 deletions columnphysics/icepack_algae.F90
Original file line number Diff line number Diff line change
Expand Up @@ -394,8 +394,7 @@ subroutine zbio (dt, &
bio_index, &
aicen, &
vicen, vsnon, &
iphin, &! ntrcr
trcrn, aice_old, &!aice_old
iphin, trcrn, &
flux_bion, flux_bio, &
upNOn, upNHn, &
upNO, upNH, &
Expand Down
2 changes: 0 additions & 2 deletions columnphysics/icepack_itd.F90
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,6 @@ subroutine shift_ice (trcr_depend, &
worka, workb

real (kind=dbl_kind), dimension(ncat) :: aicen_init
real (kind=dbl_kind), dimension(ncat) :: vicen_init
real (kind=dbl_kind), dimension(ncat) :: vsnon_init

character(len=*),parameter :: subname='(shift_ice)'
Expand All @@ -444,7 +443,6 @@ subroutine shift_ice (trcr_depend, &
!-----------------------------------------------------------------

aicen_init(:) = aicen(:)
vicen_init(:) = vicen(:)
vsnon_init(:) = vsnon(:)

!-----------------------------------------------------------------
Expand Down
6 changes: 2 additions & 4 deletions columnphysics/icepack_zbgc_shared.F90
Original file line number Diff line number Diff line change
Expand Up @@ -588,8 +588,7 @@ subroutine merge_bgc_fluxes (dt, &
bio_index, &
aicen, &
vicen, vsnon, &
iphin, &
trcrn, aice_init, &
iphin, trcrn, &
flux_bion, flux_bio, &
upNOn, upNHn, &
upNO, upNH, &
Expand Down Expand Up @@ -618,8 +617,7 @@ subroutine merge_bgc_fluxes (dt, &
real (kind=dbl_kind), intent(in):: &
aicen , & ! concentration of ice
vicen , & ! volume of ice (m)
vsnon , & ! volume of snow(m)
aice_init ! initial concentration of ice
vsnon ! volume of snow(m)

! single category rates
real (kind=dbl_kind), dimension(:), intent(in):: &
Expand Down
6 changes: 5 additions & 1 deletion doc/source/user_guide/ug_running.rst
Original file line number Diff line number Diff line change
Expand Up @@ -390,8 +390,12 @@ On macOS:

.. code-block:: bash

# Download the Miniconda installer to ~/Downloads/miniconda.sh
# Check hardware platform (x86_64 or arm64)
uname -m
# Download the compatible Miniconda installer to ~/Downloads/miniconda.sh
curl -L https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -o ~/Downloads/miniconda.sh
# or
curl -L https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-arm64.sh -o ~/Downloads/miniconda.sh
# Install Miniconda
bash ~/Downloads/miniconda.sh

Expand Down
Loading