From 8448d3eb0b1683646d06f1ef15a0c2238cdf0c5d Mon Sep 17 00:00:00 2001 From: SarahAlidoost Date: Thu, 4 Jul 2024 10:53:48 +0200 Subject: [PATCH] comment unused modflow variables --- src/+groundwater/readGroundwaterSettings.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/+groundwater/readGroundwaterSettings.m b/src/+groundwater/readGroundwaterSettings.m index b64da5e1..33b60922 100644 --- a/src/+groundwater/readGroundwaterSettings.m +++ b/src/+groundwater/readGroundwaterSettings.m @@ -39,11 +39,11 @@ soilThick cumulative soil layers thickness (from top to bottom) GroundwaterSettings.tempBotm = 17.0; % groundwater temperature (C), received from MODFLOW through BMI % Call MODFLOW layers information (number of aquifer layers and their elevations, etc) - GroundwaterSettings.numAqL = 5; % number of MODFLOW aquifer layers, received from MODFLOW through BMI - numAqN = GroundwaterSettings.numAqL + 1; % number of MODFLOW aquifer nodes + % GroundwaterSettings.numAqL = 5; % number of MODFLOW aquifer layers, received from MODFLOW through BMI + % numAqN = GroundwaterSettings.numAqL + 1; % number of MODFLOW aquifer nodes GroundwaterSettings.aqLayers = [2000.0 1900.0 1800.0 1700.0 1600.0 1500.0]; % elevation of top surface level and all bottom levels of aquifer layers, received from MODFLOW through BMI GroundwaterSettings.topLevel = GroundwaterSettings.aqLayers(1); % elevation of the top surface aquifer layer - GroundwaterSettings.aqBotms = GroundwaterSettings.aqLayers(2:end); % elevation of the bottom layer of all MODFLOW aquifers, received from MODFLOW through BMI + % GroundwaterSettings.aqBotms = GroundwaterSettings.aqLayers(2:end); % elevation of the bottom layer of all MODFLOW aquifers, received from MODFLOW through BMI gw_Dep = GroundwaterSettings.topLevel - GroundwaterSettings.headBotmLayer; % depth from top layer to groundwater level % Check that the position of the water table is within the soil column