diff --git a/MES_Wind/PRM_wind.cs b/MES_Wind/PRM_wind.cs index 0e319692a2d622fa9edddf0eb8072fca0540b8fe..aafa4647187219c174b83b12820b26aa992667a8 100644 --- a/MES_Wind/PRM_wind.cs +++ b/MES_Wind/PRM_wind.cs @@ -22,6 +22,12 @@ namespace MES_Wind public double velocityX; public double velocityY; public PRM_coordinate coords; + public PRM_raster_cell_prognostic(PRM_coordinate coord, double vX, double vY) + { + this.coords = coord; + this.velocityX = vX; + this.velocityY = vY; + } } public class PRM_raster_cell_climate { @@ -29,6 +35,14 @@ namespace MES_Wind public double wind10; public double wind15; public PRM_coordinate coords; + + public PRM_raster_cell_climate(PRM_coordinate coord, double w5, double w10, double w15) + { + this.coords = coord; + this.wind5 = w5; + this.wind10 = w10; + this.wind15 = w15; + } } public struct PRM_cell_size { @@ -43,11 +57,25 @@ namespace MES_Wind public int power; public List<PRM_coordinate> coords { get; private set; } public bool isbroken; + + public PRM_Line(List<PRM_coordinate> coord, int id, int yer, double h, int pw, bool isbrkn) + { + this.coords = coord; + this.identifier = id; + this.year = yer; + this.height = h; + this.power = pw; + this.isbroken = isbrkn; + } } public class PRM_Station { int identifier; - //TODO + public PRM_coordinate coords; + string name; + int power; + + } class PRM_wind { diff --git a/MES_Wind/obj/Debug/MES_Wind.csproj.FileListAbsolute.txt b/MES_Wind/obj/Debug/MES_Wind.csproj.FileListAbsolute.txt index c57f88ac95a5f1aca30e469bb9fc1516e8fe51dd..8a59effe28ee788161d819f34c3b802b85b6051a 100644 --- a/MES_Wind/obj/Debug/MES_Wind.csproj.FileListAbsolute.txt +++ b/MES_Wind/obj/Debug/MES_Wind.csproj.FileListAbsolute.txt @@ -208,3 +208,10 @@ C:\Users\Geophyslab-laptop\Documents\MES_Wind2\MES_Wind\bin\Debug\MES_Wind.exe C:\Users\Geophyslab-laptop\Documents\MES_Wind2\MES_Wind\bin\Debug\MES_Wind.pdb C:\gitlab_wind\MES_Wind\obj\Debug\MES_Wind.exe C:\gitlab_wind\MES_Wind\obj\Debug\MES_Wind.pdb +C:\gitlab_wind\MES_Wind\bin\Debug\MES_Wind.exe +C:\gitlab_wind\MES_Wind\bin\Debug\MES_Wind.pdb +C:\gitlab_wind\MES_Wind\obj\Debug\MES_Wind.csprojResolveAssemblyReference.cache +C:\gitlab_wind\MES_Wind\obj\Debug\MES_Wind.frmGraph.resources +C:\gitlab_wind\MES_Wind\obj\Debug\MES_Wind.frmMain.resources +C:\gitlab_wind\MES_Wind\obj\Debug\MES_Wind.Properties.Resources.resources +C:\gitlab_wind\MES_Wind\obj\Debug\MES_Wind.csproj.GenerateResource.Cache diff --git a/MES_Wind/obj/Debug/MES_Wind.csproj.GenerateResource.Cache b/MES_Wind/obj/Debug/MES_Wind.csproj.GenerateResource.Cache index 3f373bbace73c90f3ad31154deb02bff74781c87..841ec97ca6ee6741d8eb5e88f7fe856fb28143a5 100644 Binary files a/MES_Wind/obj/Debug/MES_Wind.csproj.GenerateResource.Cache and b/MES_Wind/obj/Debug/MES_Wind.csproj.GenerateResource.Cache differ diff --git a/MES_Wind/obj/Debug/MES_Wind.csprojResolveAssemblyReference.cache b/MES_Wind/obj/Debug/MES_Wind.csprojResolveAssemblyReference.cache index 20f5483f93cd240d8699dca1731f4e7325d8ad1b..1d0fb07dceec79f9379efd70c284457e0cda4277 100644 Binary files a/MES_Wind/obj/Debug/MES_Wind.csprojResolveAssemblyReference.cache and b/MES_Wind/obj/Debug/MES_Wind.csprojResolveAssemblyReference.cache differ