public LaplacianScheme(string[] array) : base(array[0]) { discretisation = (DiscretisationType) Enum.Parse(typeof (DiscretisationType), array[1]); interpolation = (InterpolationType) Enum.Parse(typeof (InterpolationType), array[2]); snGradScheme = (SurfaceNormalGradientType) Enum.Parse(typeof (SurfaceNormalGradientType), array[3]); }
public LaplacianScheme(string[] array) : base(array[0]) { discretisation = (DiscretisationType)Enum.Parse(typeof(DiscretisationType), array[1]); interpolation = (InterpolationType)Enum.Parse(typeof(InterpolationType), array[2]); snGradScheme = (SurfaceNormalGradientType)Enum.Parse(typeof(SurfaceNormalGradientType), array[3]); }
public LaplacianScheme() { discretisation = DiscretisationType.Gauss; interpolation = InterpolationType.none; snGradScheme = SurfaceNormalGradientType.none; }
public SurfaceNormalGradientScheme(string[] array) : base(array[0]) { type = (SurfaceNormalGradientType)Enum.Parse(typeof(SurfaceNormalGradientType), array[1]); }
public SurfaceNormalGradientScheme() { type = SurfaceNormalGradientType.limited; }