diff --git a/.codespell-ignore-words b/.codespell-ignore-words index 1cad85119..fa19262b4 100644 --- a/.codespell-ignore-words +++ b/.codespell-ignore-words @@ -4,4 +4,5 @@ inout parms pres rime -wth \ No newline at end of file +TE +wth diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 33f594a2b..8efd12ce0 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -24,10 +24,10 @@ jobs: run: | ./Docs/BuildDocs.sh - - name: Check links - run: | - cd Docs/sphinx_doc - make SPHINXOPTS="-v -W --keep-going" NO_DOXYGEN=TRUE linkcheck +# - name: Check links +# run: | +# cd Docs/sphinx_doc +# make SPHINXOPTS="-v -W --keep-going" NO_DOXYGEN=TRUE linkcheck - name: Deploy to Webpage if: github.event_name == 'push' && github.repository == 'erf-model/ERF' && github.ref == 'refs/heads/development' diff --git a/Source/Utils/ERF_PoissonSolve.cpp b/Source/Utils/ERF_PoissonSolve.cpp index b5547a7bc..e4bb52e37 100644 --- a/Source/Utils/ERF_PoissonSolve.cpp +++ b/Source/Utils/ERF_PoissonSolve.cpp @@ -24,12 +24,6 @@ void ERF::project_velocities (int lev, Real l_dt, Vector& mom_mf, Mult MultiFab r_hse(base_state[lev], make_alias, BaseState::r0_comp, 1); - auto bclo = get_projection_bc(Orientation::low); - auto bchi = get_projection_bc(Orientation::high); - - // amrex::Print() << "BCLO " << bclo[0] << " " << bclo[1] << " " << bclo[2] << std::endl; - // amrex::Print() << "BCHI " << bchi[0] << " " << bchi[1] << " " << bchi[2] << std::endl; - Vector rhs; Vector phi; Vector > fluxes; diff --git a/Source/Utils/ERF_TerrainMetrics.cpp b/Source/Utils/ERF_TerrainMetrics.cpp index c024cdf1c..3543915bf 100644 --- a/Source/Utils/ERF_TerrainMetrics.cpp +++ b/Source/Utils/ERF_TerrainMetrics.cpp @@ -96,8 +96,8 @@ init_zlevels (Vector>& zlevels_stag, } for (int lev = 0; lev <= max_level; lev++) { - int nz = zlevels_stag[lev].size(); - for (int k = 0; k < nz-1; k++) + int nz_zlevs = zlevels_stag[lev].size(); + for (int k = 0; k < nz_zlevs-1; k++) { stretched_dz_h[lev][k] = (zlevels_stag[lev][k+1] - zlevels_stag[lev][k]); } diff --git a/Source/Utils/ERF_solve_with_gmres.cpp b/Source/Utils/ERF_solve_with_gmres.cpp index 4fd1539d9..b753b9fb6 100644 --- a/Source/Utils/ERF_solve_with_gmres.cpp +++ b/Source/Utils/ERF_solve_with_gmres.cpp @@ -11,7 +11,7 @@ using namespace amrex; /** * Solve the Poisson equation using GMRES */ -void ERF::solve_with_gmres (int lev, Vector& /*rhs*/, Vector& /*phi*/, Vector>& /*fluxes*/) +void ERF::solve_with_gmres (int /*lev*/, Vector& /*rhs*/, Vector& /*phi*/, Vector>& /*fluxes*/) //void ERF::solve_with_gmres (int lev, Vector& rhs, Vector& phi, Vector>& fluxes) { BL_PROFILE("ERF::solve_with_gmres()");