Example #1
0
        public SFROutputPackage(SFRPackage sfr)
        {
            Name               = PackageName;
            IsReadSSData       = false;
            IsLoadCompleteData = false;
#if DEBUG
            _MaxTimeStep = 100;
#else
            _MaxTimeStep = -1;
#endif
            SkippedSteps             = 1;
            DefaultAttachedVariables = new string[] { "Flow into stream", "Stream loss", "Flow out of stream", "Overland runoff", "Direct pricipitation", "Stream ET"
                                                      , "Stream head", "Stream depth", "Stream width", "Stream conductance", "Flow to water table", "Change of unsat. stor.", "Groundwater head" };
            ReachIndex    = new List <Tuple <int, int, int> >();
            _SFRPackage   = sfr;
            _Layer3DToken = "SFR";
            Variables     = DefaultAttachedVariables;
        }
 public SFRInputPackage(SFRPackage sfr)
 {
     _SFRPackage = sfr;
     Sites       = new List <Core.IObservationsSite>();
 }