From 560f9caa15438247e0be4f58c32bad03be9a36c5 Mon Sep 17 00:00:00 2001 From: Andrew Moodie Date: Wed, 10 Jun 2020 18:01:51 -0400 Subject: [PATCH] remove clim eta property and test --- pyDeltaRCM/init_tools.py | 2 -- tests/test_init_tools.py | 4 ---- 2 files changed, 6 deletions(-) diff --git a/pyDeltaRCM/init_tools.py b/pyDeltaRCM/init_tools.py index 12bbef8d..1f882a1c 100644 --- a/pyDeltaRCM/init_tools.py +++ b/pyDeltaRCM/init_tools.py @@ -346,8 +346,6 @@ def create_domain(self): self.inlet = list(np.unique(np.where(self.cell_type == 1)[1])) self.eta[:] = self.stage - self.depth - self.clim_eta = (-self.h0 - 1, 0.05) - def init_stratigraphy(self): """Creates sparse array to store stratigraphy data. """ diff --git a/tests/test_init_tools.py b/tests/test_init_tools.py index cb93d8ee..cac71c89 100644 --- a/tests/test_init_tools.py +++ b/tests/test_init_tools.py @@ -306,7 +306,3 @@ def test_sfc_visit(test_DeltaModel): def test_sfc_sum(test_DeltaModel): assert np.any(test_DeltaModel.sfc_sum) == 0 - - -def test_clim_eta(test_DeltaModel): - assert test_DeltaModel.clim_eta == (-2, 0.05)