Skip to content

Commit

Permalink
Fix some missing module use statements
Browse files Browse the repository at this point in the history
  • Loading branch information
maximumcats committed Oct 1, 2019
1 parent b7535f7 commit bb0b158
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Source/scf/scf_relaxation.F90
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ subroutine scf_calculate_target_h_max(lo, hi, &
maximum_density, &
target_h_max) bind(C, name='scf_calculate_target_h_max')

use meth_params_module, only: NVAR, URHO, UTEMP, UFS
use network, only: nspec
use meth_params_module, only: NVAR, URHO, UTEMP, UFS, UFX
use network, only: nspec, naux
use eos_module, only: eos
use eos_type_module, only: eos_input_rt, eos_t

Expand Down Expand Up @@ -260,8 +260,8 @@ subroutine scf_update_density(lo, hi, &
Linf_norm) bind(C, name='scf_update_density')

use amrex_constants_module, only: ZERO, HALF
use meth_params_module, only: NVAR, URHO, UTEMP, UMX, UMZ, UEDEN, UEINT, UFS
use network, only: nspec
use meth_params_module, only: NVAR, URHO, UTEMP, UMX, UMZ, UEDEN, UEINT, UFS, UFX
use network, only: nspec, naux
use eos_module, only: eos
use eos_type_module, only: eos_input_th, eos_t

Expand Down Expand Up @@ -346,8 +346,8 @@ subroutine scf_diagnostics(lo, hi, &
kin_eng, pot_eng, int_eng, mass) bind(C, name='scf_diagnostics')

use amrex_constants_module, only: ZERO, HALF
use meth_params_module, only: NVAR, URHO, UTEMP, UFS
use network, only: nspec
use meth_params_module, only: NVAR, URHO, UTEMP, UFS, UFX
use network, only: nspec, naux
use eos_module, only: eos
use eos_type_module, only: eos_input_rt, eos_t

Expand Down

0 comments on commit bb0b158

Please sign in to comment.