From b6dae6cfc2e0843c1eb3cf8e1bb519f064821cf9 Mon Sep 17 00:00:00 2001 From: Rex Zhe Li Date: Wed, 13 Oct 2021 00:33:08 -0400 Subject: [PATCH] fix dumb bugs;build passed --- models/IonModel.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/models/IonModel.h b/models/IonModel.h index 1398d9f6..5f3e390c 100644 --- a/models/IonModel.h +++ b/models/IonModel.h @@ -37,7 +37,11 @@ public: void getIonConcentration(DoubleArray &IonConcentration, const size_t ic); void getIonConcentration_debug(int timestep); void getIonFluxDiffusive(DoubleArray &IonFlux_x,DoubleArray &IonFlux_y,DoubleArray &IonFlux_z,const size_t ic); + void getIonFluxAdvective(DoubleArray &IonFlux_x,DoubleArray &IonFlux_y,DoubleArray &IonFlux_z,const size_t ic); + void getIonFluxElectrical(DoubleArray &IonFlux_x,DoubleArray &IonFlux_y,DoubleArray &IonFlux_z,const size_t ic); void getIonFluxDiffusive_debug(int timestep); + void getIonFluxAdvective_debug(int timestep); + void getIonFluxElectrical_debug(int timestep); void DummyFluidVelocity(); void DummyElectricField(); double CalIonDenConvergence(vector &ci_avg_previous);