Madingley.ResponsiveDispersal.WriteOutParameterValues C# (CSharp) Méthode

WriteOutParameterValues() public méthode

Write out the values of the parameters to an output file
public WriteOutParameterValues ( StreamWriter sw ) : void
sw System.IO.StreamWriter A streamwriter object to write the parameter values to
Résultat void
        public void WriteOutParameterValues(StreamWriter sw)
        {
            // Write out parameters
            sw.WriteLine("Responsive Dispersal\tTimeUnitImplementation\t" + Convert.ToString(_TimeUnitImplementation));
            sw.WriteLine("Responsive Dispersal\t_DispersalSpeedBodyMassScalar\t" + Convert.ToString(DispersalSpeedBodyMassScalar));
            sw.WriteLine("Responsive Dispersal\t_DispersalSpeedBodyMassExponent\t" + Convert.ToString(DispersalSpeedBodyMassExponent));
            sw.WriteLine("Responsive Dispersal\tTDensityThresholdScaling\t" + Convert.ToString(_DensityThresholdScaling));
            sw.WriteLine("Responsive Dispersal\tStarvationDispersalBodyMassThreshold\t" + Convert.ToString(_StarvationDispersalBodyMassThreshold));
        }