コード例 #1
0
        /// <summary>
        /// Initializes the extension with a data file.
        /// </summary>
        public override void Initialize()
        {
            reinitialized = false;

            //initialize metadata
            MetadataHandler.InitializeMetadata(parameters.Timestep,
                                               parameters.StatusMapNames,
                                               parameters.MortMapNames,
                                               parameters.LogFileName,
                                               parameters.ManyAgentParameters,
                                               ModelCore);

            //get input params map names
            Timestep      = parameters.Timestep;
            statusMapName = parameters.StatusMapNames;
            mortMapNames  = parameters.MortMapNames;

            //initialize site variables:
            int numAgents = parameters.ManyAgentParameters.Count();

            SiteVars.Initialize(modelCore, numAgents);

            //Dispersal probdisp = new Dispersal();
            manyAgentParameters = parameters.ManyAgentParameters;
            int agentIndex = 0;

            //Initialize non-library climate data
            loadedClimateData = ClimateData.ReadClimateData(manyAgentParameters);

            foreach (IAgent activeAgent in manyAgentParameters)
            {
                if (activeAgent == null)
                {
                    ModelCore.UI.WriteLine("Agent Parameters NOT loading correctly.");
                }

                //read initial infection map and initialize cell status for each agent
                EpidemicRegions.ReadMap(activeAgent.InitEpiMap, agentIndex);
                agentIndex++;

                //initialize and populate dictionary with dispersal probabilities for current agent
                //probdisp.Initialize(activeAgent);
                Dispersal.Initialize(activeAgent);

                //Initialize climate data to calculate historic average for normalization
                ClimateVariableDefinition.CalculateHistoricClimateVariables(activeAgent);
            }
        }
コード例 #2
0
        //---------------------------------------------------------------------

        public static Dictionary <string, double[]> CalculateHistoricDerivedClimateVariables(IAgent agent, IEcoregion ecoregion, int year)
        {
            //int currentYear = year;
            //int actualYear = currentYear;
            //AnnualClimate_Daily AnnualWeather = Climate.Spinup_DailyData[Climate.Spinup_DailyData.Keys.Max()][ecoregion.Index];
            //int maxSpinUpYear = Climate.Spinup_DailyData.Keys.Max();
            //int minFutureYear = AnnualWeather.Year;
            //actualYear = minFutureYear + (currentYear - 1);
            int numDailyRecords = 365;

            if (Climate.Spinup_DailyData != null)
            {
                AnnualClimate_Daily AnnualWeather = Climate.Spinup_DailyData[year][ecoregion.Index];
                numDailyRecords = AnnualWeather.DailyTemp.Length;
            }
            Dictionary <string, double[]> dailyDerivedClimate = new Dictionary <string, double[]>();

            double[] blankRecords = new double[numDailyRecords];
            dailyDerivedClimate.Add("JulianDay", blankRecords);

            foreach (DerivedClimateVariable derClimVar in agent.DerivedClimateVars)
            {
                double[] records = new double[numDailyRecords];
                dailyDerivedClimate.Add(derClimVar.Name, records);

                if (derClimVar.Source.Equals("formula", StringComparison.OrdinalIgnoreCase))
                {
                    int    indexa       = agent.VarFormula.Parameters.FindIndex(i => i == "a");
                    double a            = Double.Parse(agent.VarFormula.Values[indexa]);
                    int    indexb       = agent.VarFormula.Parameters.FindIndex(i => i == "b");
                    double b            = Double.Parse(agent.VarFormula.Values[indexb]);
                    int    indexc       = agent.VarFormula.Parameters.FindIndex(i => i == "c");
                    double c            = Double.Parse(agent.VarFormula.Values[indexc]);
                    int    indexd       = agent.VarFormula.Parameters.FindIndex(i => i == "d");
                    double d            = Double.Parse(agent.VarFormula.Values[indexd]);
                    int    indexe       = agent.VarFormula.Parameters.FindIndex(i => i == "e");
                    double e            = Double.Parse(agent.VarFormula.Values[indexe]);
                    int    indexf       = agent.VarFormula.Parameters.FindIndex(i => i == "f");
                    double f            = Double.Parse(agent.VarFormula.Values[indexf]);
                    int    indexVar     = agent.VarFormula.Parameters.FindIndex(i => i == "Variable");
                    string variableName = agent.VarFormula.Values[indexVar];
                    IClimateVariableDefinition selectClimateVar = new ClimateVariableDefinition();
                    bool select = false;
                    foreach (IClimateVariableDefinition climateVar in agent.ClimateVars)
                    {
                        if (variableName.Equals(climateVar.Name, StringComparison.OrdinalIgnoreCase))
                        {
                            selectClimateVar = climateVar;
                            select           = true;
                        }
                    }
                    if (select)
                    {
                        double[] variableArray;
                        if (selectClimateVar.SourceName.Equals("Library", StringComparison.OrdinalIgnoreCase))
                        {
                            AnnualClimate_Daily AnnualWeather = Climate.Spinup_DailyData[year][ecoregion.Index];
                            if (PlugIn.ModelCore.CurrentTime > 0)
                            {
                                AnnualWeather = Climate.Future_DailyData[year][ecoregion.Index];
                            }
                            if (selectClimateVar.ClimateLibVariable.Equals("DailyTemp", StringComparison.OrdinalIgnoreCase))
                            {
                                variableArray = AnnualWeather.DailyTemp;
                            }
                            else if (selectClimateVar.ClimateLibVariable.Equals("DailyPrecip", StringComparison.OrdinalIgnoreCase))
                            {
                                variableArray = AnnualWeather.DailyPrecip;
                            }
                            else
                            {
                                string mesg = string.Format("Only 'DailyTemp' and 'DailyPrecip' are supported for ClimateVar in ClimateVariables");
                                throw new System.ApplicationException(mesg);
                            }
                        }
                        else
                        {
                            string mesg = string.Format("ClimateVariables must come from the climate library (Source = 'Library')");
                            throw new System.ApplicationException(mesg);
                            //Read climate table
                            //ExternalClimateVariableValues weatherData = PlugIn.loadedClimateData.ExternalData[selectClimateVar.SourceName].YearClimate[year].EcoregionClimate[ecoregion.Index];
                            //variableArray = weatherData.ClimateVariableValues[selectClimateVar.ClimateLibVariable];
                        }
                        for (int i = 0; i < numDailyRecords; i++)
                        {
                            double variable = variableArray[i];
                            //tempIndex = a + b * exp(c[ln(Variable / d) / e] ^ f);
                            double tempIndex = a + b * Math.Exp(c * Math.Pow((Math.Log(variable / d) / e), f));
                            dailyDerivedClimate[derClimVar.Name][i] = tempIndex;
                            dailyDerivedClimate["JulianDay"][i]     = i + 1;
                        }
                    }
                    else
                    {
                        string mesg = string.Format("Variable {1} is not included in ClimateVariables)", variableName);
                        throw new System.ApplicationException(mesg);
                    }
                }
                else  //Not Formula
                {
                    //if daily
                    // create daily record of derived variable to mimic fields of AnnualClimate_Daily
                    if (derClimVar.Time.Equals("day", StringComparison.OrdinalIgnoreCase))
                    {
                        if (derClimVar.Count <= 1)
                        {
                            for (int i = 0; i < numDailyRecords; i++)
                            {
                                if (derClimVar.Source.Equals("Library", StringComparison.OrdinalIgnoreCase))
                                {
                                    AnnualClimate_Daily AnnualWeather = Climate.Spinup_DailyData[year][ecoregion.Index];
                                    if (PlugIn.ModelCore.CurrentTime > 0)
                                    {
                                        AnnualWeather = Climate.Future_DailyData[year][ecoregion.Index];
                                    }
                                    if (derClimVar.ClimateVariable.Equals("DailyPrecip", StringComparison.OrdinalIgnoreCase))
                                    {
                                        dailyDerivedClimate[derClimVar.Name][i] = AnnualWeather.DailyPrecip[i];
                                        dailyDerivedClimate["JulianDay"][i]     = i + 1;
                                    }
                                    else if (derClimVar.ClimateVariable.Equals("DailyTemp", StringComparison.OrdinalIgnoreCase))
                                    {
                                        dailyDerivedClimate[derClimVar.Name][i] = AnnualWeather.DailyTemp[i];
                                        dailyDerivedClimate["JulianDay"][i]     = i + 1;
                                    }
                                    else
                                    {
                                        string mesg = string.Format("Only 'DailyPrecip'and 'DailyTemp' supported for ClimateVar in DerivedClimateVariables");
                                        throw new System.ApplicationException(mesg);
                                    }
                                }
                                else
                                {
                                    string mesg = string.Format("ClimateVariables must come from the climate library (Source = 'Library')");
                                    throw new System.ApplicationException(mesg);
                                    // Read climate file
                                    // Extract variable
                                }
                            }
                        }
                        else
                        {
                            for (int i = 0; i < numDailyRecords; i++)
                            {
                                double varSum   = 0;
                                double varCount = 0;

                                for (int n = 0; n < derClimVar.Count; n++)
                                {
                                    int recIndex = i - n;
                                    if (recIndex >= 0)
                                    {
                                        if (derClimVar.Source.Equals("Library", StringComparison.OrdinalIgnoreCase))
                                        {
                                            AnnualClimate_Daily AnnualWeather = Climate.Spinup_DailyData[year][ecoregion.Index];
                                            if (PlugIn.ModelCore.CurrentTime > 0)
                                            {
                                                AnnualWeather = Climate.Future_DailyData[year][ecoregion.Index];
                                            }
                                            if (derClimVar.ClimateVariable.Equals("DailyPrecip", StringComparison.OrdinalIgnoreCase))
                                            {
                                                varSum += AnnualWeather.DailyPrecip[recIndex];
                                            }
                                            else if (derClimVar.ClimateVariable.Equals("DailyTemp", StringComparison.OrdinalIgnoreCase))
                                            {
                                                varSum += AnnualWeather.DailyTemp[recIndex];
                                            }
                                            else
                                            {
                                                string mesg = string.Format("Only 'DailyPrecip' and 'DailyTemp' supported for ClimateVar in DerivedClimateVariables");
                                                throw new System.ApplicationException(mesg);
                                            }
                                        }
                                        else
                                        {
                                            string mesg = string.Format("ClimateVariables must come from the climate library (Source = 'Library')");
                                            throw new System.ApplicationException(mesg);
                                            //Read Climate
                                            // Read variable
                                        }
                                        varCount += 1;
                                    }
                                }
                                if (derClimVar.Function.Equals("sum", StringComparison.OrdinalIgnoreCase))
                                {
                                    dailyDerivedClimate[derClimVar.Name][i] = varSum;
                                }
                                else if (derClimVar.Function.Equals("mean", StringComparison.OrdinalIgnoreCase))
                                {
                                    dailyDerivedClimate[derClimVar.Name][i] = varSum / varCount;
                                }
                                else
                                {
                                    string mesg = string.Format("Only 'Sum' and 'Mean' supported for Function in DerivedClimateVariables");
                                    throw new System.ApplicationException(mesg);
                                }
                                dailyDerivedClimate["JulianDay"][i] = i + 1;
                            }
                        }
                    }
                    else
                    {
                        //if weekly - FIXME
                        //  create weekly record of derived variable.  Include min and max julian days and month assignment to each weekly record

                        //if monthly - FIXME
                        // create monthly record of derived variable to mimic field on AnnualClimate_Monthly
                        string mesg = string.Format("Only 'Day' supported for DerivedClimateVariable Time");
                        throw new System.ApplicationException(mesg);
                    }
                }
            }
            return(dailyDerivedClimate);
        }
コード例 #3
0
        //---------------------------------------------------------------------

        protected override IAgent Parse()
        {
            InputVar <string> landisData = new InputVar <string>("LandisData");

            ReadVar(landisData);
            if (landisData.Value.Actual != LandisDataValue)
            {
                throw new InputValueException(landisData.Value.String, "The value is not \"{0}\"", LandisDataValue);
            }

            AgentParameters agentParameters = new AgentParameters(PlugIn.ModelCore.Species.Count, PlugIn.ModelCore.Ecoregions.Count);

            InputVar <string> agentName = new InputVar <string>("EDAAgentName");

            ReadVar(agentName);
            agentParameters.AgentName = agentName.Value;

            InputVar <SHImode> shi = new InputVar <SHImode>("SHIMode");

            ReadVar(shi);
            agentParameters.SHImode = shi.Value;

            InputVar <int> startYear = new InputVar <int>("StartYear");

            if (CurrentName == "StartYear")
            {
                ReadVar(startYear);
                agentParameters.StartYear = startYear.Value;
            }
            else
            {
                agentParameters.StartYear = 0;
            }

            InputVar <int> endYear = new InputVar <int>("EndYear");

            if (CurrentName == "EndYear")
            {
                ReadVar(endYear);
                agentParameters.EndYear = endYear.Value;
            }
            else
            {
                agentParameters.EndYear = PlugIn.ModelCore.EndTime;
            }

            // - Climate Input -
            //ADD HERE
            // Read Climate Variables
            ReadName("ClimateVariables");
            Dictionary <string, int> lineNumbers = new Dictionary <string, int>();

            lineNumbers.Clear();
            InputVar <string> climateVarName        = new InputVar <string>("Climate Variable Name");
            InputVar <string> climateLibraryVarName = new InputVar <string>("Climate Library Variable Name");
            InputVar <string> sourceName            = new InputVar <string>("Source Name");
            InputVar <string> transform             = new InputVar <string>("Tranformation");

            IClimateVariableDefinition climateVarDefn = null;

            while (!AtEndOfInput && (CurrentName != "DerivedClimateVariables"))
            {
                StringReader currentLine = new StringReader(CurrentLine);
                ReadValue(climateVarName, currentLine);
                CheckForRepeatedName(climateVarName.Value, "var name", lineNumbers);

                climateVarDefn      = new ClimateVariableDefinition();
                climateVarDefn.Name = climateVarName.Value;

                ReadValue(sourceName, currentLine);
                climateVarDefn.SourceName = sourceName.Value;

                ReadValue(climateLibraryVarName, currentLine);
                climateVarDefn.ClimateLibVariable = climateLibraryVarName.Value;

                ReadValue(transform, currentLine);
                climateVarDefn.Transform = transform.Value;

                agentParameters.ClimateVars.Add(climateVarDefn);
                GetNextLine();
            }
            // Read Derived Climate Variables
            ReadName("DerivedClimateVariables");
            lineNumbers.Clear();
            InputVar <string>       derivedClimateVarName = new InputVar <string>("Derived Climate Variable Name");
            InputVar <string>       derSource             = new InputVar <string>("Derived Climate Variable Source");
            InputVar <string>       derVariableName       = new InputVar <string>("Derived Climate Variable source Variable Name");
            InputVar <string>       function           = new InputVar <string>("Function");
            InputVar <string>       time               = new InputVar <string>("Time");
            InputVar <int>          count              = new InputVar <int>("Count");
            IDerivedClimateVariable derivedClimateVars = null;
            Queue <string>          formulaVars        = new Queue <string>();

            while (!AtEndOfInput && !(formulaVars.Contains(CurrentName)))
            {
                StringReader currentLine = new StringReader(CurrentLine);
                ReadValue(derivedClimateVarName, currentLine);
                CheckForRepeatedName(derivedClimateVarName.Value, "var name", lineNumbers);

                derivedClimateVars      = new DerivedClimateVariable();
                derivedClimateVars.Name = derivedClimateVarName.Value;

                ReadValue(derSource, currentLine);
                derivedClimateVars.Source = derSource.Value;

                if (derivedClimateVars.Source == "Formula")
                {
                    formulaVars.Enqueue(derivedClimateVars.Name);
                }

                ReadValue(derVariableName, currentLine);
                derivedClimateVars.ClimateVariable = derVariableName.Value;

                ReadValue(function, currentLine);
                derivedClimateVars.Function = function.Value;

                ReadValue(time, currentLine);
                derivedClimateVars.Time = time.Value;

                ReadValue(count, currentLine);
                derivedClimateVars.Count = count.Value;

                agentParameters.DerivedClimateVars.Add(derivedClimateVars);

                GetNextLine();
            }

            foreach (string formulaName in formulaVars)
            {
                // Read Temp Index model
                ReadName(formulaName);
                formulaVars.Dequeue();

                lineNumbers.Clear();
                InputVar <string> tempIndexVarName     = new InputVar <string>("Temp Index Variable Name");
                InputVar <string> tempIndexParamValue  = new InputVar <string>("Parameter Value");
                List <string>     tempIndexParameters  = new List <string>();
                List <string>     tempIndexParamValues = new List <string>();
                IFormula          tempIndexModel       = new Formula();

                while (!AtEndOfInput && (CurrentName != "WeatherIndexVariables") && !(formulaVars.Contains(CurrentName)))
                {
                    StringReader currentLine = new StringReader(CurrentLine);
                    ReadValue(tempIndexVarName, currentLine);
                    CheckForRepeatedName(tempIndexVarName.Value, "var name", lineNumbers);
                    tempIndexModel.Parameters.Add(tempIndexVarName.Value);
                    //agentParameters.TempIndexModel.Parameters.Add(tempIndexVarName.Value);

                    ReadValue(tempIndexParamValue, currentLine);
                    tempIndexModel.Values.Add(tempIndexParamValue.Value);
                    //agentParameters.TempIndexModel.Values.Add(tempIndexParamValue.Value);

                    GetNextLine();
                }
                agentParameters.VarFormula = tempIndexModel;
                if (formulaVars.Count == 0)
                {
                    break;
                }
            }
            // Read Weather Index Variables
            ReadName("WeatherIndexVariables");
            lineNumbers.Clear();
            InputVar <string> weatherIndexVarName = new InputVar <string>("Weather Index Variable Name");

            while (!AtEndOfInput && (CurrentName != "AnnualWeatherIndex"))
            {
                StringReader currentLine = new StringReader(CurrentLine);
                ReadValue(weatherIndexVarName, currentLine);
                CheckForRepeatedName(weatherIndexVarName.Value, "var name", lineNumbers);

                agentParameters.WeatherIndexVars.Add(weatherIndexVarName.Value);

                GetNextLine();
            }

            //Read Annual Weather Index
            ReadName("AnnualWeatherIndex");
            WeatherIndex      weatherIndex          = new WeatherIndex();
            StringReader      annualWeatherLine     = new StringReader(CurrentLine);
            InputVar <int>    minMonth              = new InputVar <int>("Min Month");
            InputVar <int>    maxMonth              = new InputVar <int>("Max Month");
            InputVar <string> annualWeatherFunction = new InputVar <string>("Function");

            ReadValue(minMonth, annualWeatherLine);
            weatherIndex.MinMonth = minMonth.Value;
            TextReader.SkipWhitespace(annualWeatherLine);
            string currentWord = TextReader.ReadWord(annualWeatherLine);

            if (currentWord != "to")
            {
                StringBuilder message = new StringBuilder();
                message.AppendFormat("Expected \"to\" after the minimum month ({0})",
                                     minMonth.Value.String);
                if (currentWord.Length > 0)
                {
                    message.AppendFormat(", but found \"{0}\" instead", currentWord);
                }
                throw NewParseException(message.ToString());
            }
            ReadValue(maxMonth, annualWeatherLine);
            weatherIndex.MaxMonth = maxMonth.Value;

            ReadValue(annualWeatherFunction, annualWeatherLine);
            weatherIndex.Function = annualWeatherFunction.Value;

            agentParameters.AnnualWeatherIndex = weatherIndex;
            GetNextLine();

            // - Transmission Input -

            InputVar <double> tr = new InputVar <double>("TransmissionRate");

            ReadVar(tr);
            agentParameters.TransmissionRate = tr.Value;

            InputVar <double> ar = new InputVar <double>("AcquisitionRate");

            ReadVar(ar);
            agentParameters.AcquisitionRate = ar.Value;

            InputVar <string> epiMap = new InputVar <string>("InitialEpidemMap");

            ReadVar(epiMap);
            agentParameters.InitEpiMap = epiMap.Value;

            InputVar <DispersalType> dt = new InputVar <DispersalType>("DispersalType");

            ReadVar(dt);
            agentParameters.DispersalType = dt.Value;

            InputVar <DispersalTemplate> dk = new InputVar <DispersalTemplate>("DispersalKernel");

            ReadVar(dk);
            agentParameters.DispersalKernel = dk.Value;

            InputVar <int> dmax = new InputVar <int>("DispersalMaxDist");

            ReadVar(dmax);
            agentParameters.DispersalMaxDist = dmax.Value;

            InputVar <double> ac = new InputVar <double>("AlphaCoef");

            ReadVar(ac);
            agentParameters.AlphaCoef = ac.Value;

            //--------- Read In Ecoregion Table ---------------------------------------
            PlugIn.ModelCore.UI.WriteLine("Begin parsing ECOREGION table.");

            InputVar <string> ecoName     = new InputVar <string>("Ecoregion Name");
            InputVar <double> ecoModifier = new InputVar <double>("Ecoregion Modifier");

            lineNumbers.Clear();
            const string DistParms = "DisturbanceModifiers";
            const string SppParms  = "EDASpeciesParameters";

            while (!AtEndOfInput && CurrentName != DistParms && CurrentName != SppParms)
            {
                StringReader currentLine = new StringReader(CurrentLine);

                ReadValue(ecoName, currentLine);
                IEcoregion ecoregion = EcoregionsDataset[ecoName.Value.Actual];
                if (ecoregion == null)
                {
                    throw new InputValueException(ecoName.Value.String,
                                                  "{0} is not an ecoregion name.",
                                                  ecoName.Value.String);
                }
                int lineNumber;
                if (lineNumbers.TryGetValue(ecoregion.Name, out lineNumber))
                {
                    throw new InputValueException(ecoName.Value.String,
                                                  "The ecoregion {0} was previously used on line {1}",
                                                  ecoName.Value.String, lineNumber);
                }
                else
                {
                    lineNumbers[ecoregion.Name] = LineNumber;
                }

                IEcoParameters ecoParms = new EcoParameters();
                agentParameters.EcoParameters[ecoregion.Index] = ecoParms;

                ReadValue(ecoModifier, currentLine);
                ecoParms.EcoModifier = ecoModifier.Value;

                CheckNoDataAfter("the " + ecoModifier.Name + " column",
                                 currentLine);
                GetNextLine();
            }

            if (CurrentName == DistParms)
            {
                //--------- Read In Disturbance Modifier Table -------------------------------
                PlugIn.ModelCore.UI.WriteLine("Begin parsing DISTURBANCE table.");

                ReadName(DistParms);

                InputVar <string> prescriptionName = new InputVar <string>("Disturbance Type");
                InputVar <int>    duration         = new InputVar <int>("Duration");
                InputVar <double> distModifier     = new InputVar <double>("Disturbance Modifier");

                lineNumbers = new Dictionary <string, int>();
                Dictionary <int, int> DisturbanceTypeLineNumbers = new Dictionary <int, int>();


                while (!AtEndOfInput && CurrentName != SppParms)
                {
                    StringReader currentLine = new StringReader(CurrentLine);

                    ReadValue(distModifier, currentLine);

                    IDisturbanceType currentDisturbanceType = new DisturbanceType();
                    agentParameters.DisturbanceTypes.Add(currentDisturbanceType);

                    currentDisturbanceType.SHIModifier = distModifier.Value;

                    ReadValue(duration, currentLine);
                    currentDisturbanceType.ImpactDuration = duration.Value;

                    List <string> prescriptionNames = new List <string>();
                    TextReader.SkipWhitespace(currentLine);
                    while (currentLine.Peek() != -1)
                    {
                        ReadValue(prescriptionName, currentLine);
                        prescriptionNames.Add(prescriptionName.Value);

                        TextReader.SkipWhitespace(currentLine);
                    }
                    if (prescriptionNames.Count == 0)
                    {
                        throw NewParseException("At least one disturbance type is required.");
                    }

                    currentDisturbanceType.PrescriptionNames = prescriptionNames;

                    CheckNoDataAfter("the " + distModifier.Name + " column",
                                     currentLine);
                    GetNextLine();
                }
            }

            //--------- Read In Species Table ---------------------------------------
            PlugIn.ModelCore.UI.WriteLine("Begin parsing SPECIES table.");

            ReadName(SppParms);

            //Species Name
            InputVar <string> sppName = new InputVar <string>("Species");

            //SHI (Host Index)
            InputVar <int> lowHostAge      = new InputVar <int>("Low Host Index Age");
            InputVar <int> lowHostScore    = new InputVar <int>("Low Host Index Score");
            InputVar <int> mediumHostAge   = new InputVar <int>("Medium Host Index Age");
            InputVar <int> mediumHostScore = new InputVar <int>("Medium Host Index Score");
            InputVar <int> highHostAge     = new InputVar <int>("High Host Index Age");
            InputVar <int> highHostScore   = new InputVar <int>("High Host Index Score");

            //SHV (Vulnerability)
            InputVar <int>    lowVulnHostAge         = new InputVar <int>("Low Vulnerability Host Age");
            InputVar <double> lowVulnHostMortProb    = new InputVar <double>("Low Vulnerability Host MortProb");
            InputVar <int>    mediumVulnHostAge      = new InputVar <int>("Medium Vulnerability Host Age");
            InputVar <double> mediumVulnHostMortProb = new InputVar <double>("Medium Vulnerability Host MortProb");
            InputVar <int>    highVulnHostAge        = new InputVar <int>("High Vulnerability Host Age");
            InputVar <double> highVulnHostMortProb   = new InputVar <double>("High Vulnerability Host MortProb");

            //CFS
            InputVar <bool> cfsConifer = new InputVar <bool>("CFS Conifer type:  yes/no");

            //MORTALITY SPECIES TO CONSIDER FOR PLOTTING
            InputVar <bool> mortSppFlag = new InputVar <bool>("Mortality plot:  yes/no");

            // species to ignore in SHI calculation
            const string NegSpp = "IgnoredSpecies";

            while ((!AtEndOfInput) && (CurrentName != NegSpp))
            {
                StringReader currentLine = new StringReader(CurrentLine);

                ReadValue(sppName, currentLine);
                ISpecies species = SpeciesDataset[sppName.Value.Actual];
                if (species == null)
                {
                    throw new InputValueException(sppName.Value.String,
                                                  "{0} is not a species name.",
                                                  sppName.Value.String);
                }
                int lineNumber;
                if (lineNumbers.TryGetValue(species.Name, out lineNumber))
                {
                    throw new InputValueException(sppName.Value.String,
                                                  "The species {0} was previously used on line {1}",
                                                  sppName.Value.String, lineNumber);
                }
                else
                {
                    lineNumbers[species.Name] = LineNumber;
                }

                ISppParameters sppParms = new SppParameters();
                agentParameters.SppParameters[species.Index] = sppParms;

                //SHI
                ReadValue(lowHostAge, currentLine);
                sppParms.LowHostAge = lowHostAge.Value;

                ReadValue(lowHostScore, currentLine);
                sppParms.LowHostScore = lowHostScore.Value;

                ReadValue(mediumHostAge, currentLine);
                sppParms.MediumHostAge = mediumHostAge.Value;

                ReadValue(mediumHostScore, currentLine);
                sppParms.MediumHostScore = mediumHostScore.Value;

                ReadValue(highHostAge, currentLine);
                sppParms.HighHostAge = highHostAge.Value;

                ReadValue(highHostScore, currentLine);
                sppParms.HighHostScore = highHostScore.Value;

                //SHV
                ReadValue(lowVulnHostAge, currentLine);
                sppParms.LowVulnHostAge = lowVulnHostAge.Value;

                ReadValue(lowVulnHostMortProb, currentLine);
                sppParms.LowVulnHostMortProb = lowVulnHostMortProb.Value;

                ReadValue(mediumVulnHostAge, currentLine);
                sppParms.MediumVulnHostAge = mediumVulnHostAge.Value;

                ReadValue(mediumVulnHostMortProb, currentLine);
                sppParms.MediumVulnHostMortProb = mediumVulnHostMortProb.Value;

                ReadValue(highVulnHostAge, currentLine);
                sppParms.HighVulnHostAge = highVulnHostAge.Value;

                ReadValue(highVulnHostMortProb, currentLine);
                sppParms.HighVulnHostMortProb = highVulnHostMortProb.Value;

                //CFS
                ReadValue(cfsConifer, currentLine);
                sppParms.CFSConifer = cfsConifer.Value;

                //MORTALITY SPECIES FLAG
                ReadValue(mortSppFlag, currentLine);
                sppParms.MortSppFlag = mortSppFlag.Value;

                CheckNoDataAfter("the " + mortSppFlag.Name + " column",
                                 currentLine);

                GetNextLine();
            }

            //--------- Read In Ignored Species List ---------------------------------------
            List <ISpecies> negSppList = new List <ISpecies>();

            if (!AtEndOfInput)
            {
                ReadName(NegSpp);
                InputVar <string> negSppName = new InputVar <string>("Ignored Spp Name");

                while (!AtEndOfInput)
                {
                    StringReader currentLine = new StringReader(CurrentLine);

                    ReadValue(negSppName, currentLine);
                    ISpecies species = SpeciesDataset[negSppName.Value.Actual];
                    if (species == null)
                    {
                        throw new InputValueException(negSppName.Value.String,
                                                      "{0} is not a species name.",
                                                      negSppName.Value.String);
                    }
                    int lineNumber;
                    if (lineNumbers.TryGetValue(species.Name, out lineNumber))
                    {
                        PlugIn.ModelCore.UI.WriteLine("WARNING: The species {0} was previously used on line {1}.  Being listed in the IgnoredSpecies list will override any settings in the Host table.", negSppName.Value.String, lineNumber);
                    }
                    else
                    {
                        lineNumbers[species.Name] = LineNumber;
                    }

                    negSppList.Add(species);

                    GetNextLine();
                }
            }
            agentParameters.NegSppList = negSppList;
            return(agentParameters);
        }