Exemplo n.º 1
0
 internal PhreaticPotential(IXYZTDataSet Potential, MikeSheGridInfo Grid, double DeleteValue)
 {
     _deleteValue     = DeleteValue;
     _potential       = Potential;
     _bottomOfCell    = Grid.LowerLevelOfComputationalLayers;
     _thicknessOfCell = Grid.ThicknessOfComputationalLayers;
 }
Exemplo n.º 2
0
 internal PhreaticPotential(IXYZTDataSet Potential, MikeSheGridInfo Grid, double DeleteValue)
 {
   _deleteValue = DeleteValue;
   _potential = Potential;
   _bottomOfCell = Grid.LowerLevelOfComputationalLayers;
   _thicknessOfCell = Grid.ThicknessOfComputationalLayers;
 }
Exemplo n.º 3
0
    internal TopOfCell(IXYZDataSet CellBottom, IXYDataSet TopoGraphy)
    {
      _data = new Matrix3d(CellBottom.Data[0].RowCount, CellBottom.Data[0].ColumnCount, CellBottom.Data.LayerCount);

      for (int i = 0; i < _data.LayerCount - 1; i++)
      {
        _data[i] = CellBottom.Data[i + 1];
      }

      _data[_data.LayerCount - 1] = TopoGraphy.Data;
    }
Exemplo n.º 4
0
        internal TopOfCell(IXYZDataSet CellBottom, IXYDataSet TopoGraphy)
        {
            _data = new Matrix3d(CellBottom.Data[0].RowCount, CellBottom.Data[0].ColumnCount, CellBottom.Data.LayerCount);

            for (int i = 0; i < _data.LayerCount - 1; i++)
            {
                _data[i] = CellBottom.Data[i + 1];
            }

            _data[_data.LayerCount - 1] = TopoGraphy.Data;
        }