hydrobricks
Loading...
Searching...
No Matches
ActionGlacierEvolutionAreaScaling.h
1#ifndef HYDROBRICKS_ACTION_GLACIER_EVOLUTION_AREA_SCALING_H
2#define HYDROBRICKS_ACTION_GLACIER_EVOLUTION_AREA_SCALING_H
3
4#include "Action.h"
5#include "Includes.h"
6
8 public:
10
11 ~ActionGlacierEvolutionAreaScaling() override = default;
12
23 void AddLookupTables(int month, const string& landCoverName, const axi& hydroUnitIds, const axxd& areas,
24 const axxd& volumes);
25
29 bool Init() override;
30
37 bool Apply(double date) override;
38
45 return _landCoverName;
46 }
47
54 return _hydroUnitIds;
55 }
56
63 return _tableArea;
64 }
65
72 return _tableVolume;
73 }
74
75 protected:
76 string _landCoverName;
77 axi _hydroUnitIds;
78 axxd _tableArea;
79 axxd _tableVolume;
80 axd _initialGlacierWE;
81};
82
83#endif // HYDROBRICKS_ACTION_GLACIER_EVOLUTION_AREA_SCALING_H
Definition ActionGlacierEvolutionAreaScaling.h:7
bool Apply(double date) override
Definition ActionGlacierEvolutionAreaScaling.cpp:58
string GetLandCoverName()
Definition ActionGlacierEvolutionAreaScaling.h:44
axi GetHydroUnitIds()
Definition ActionGlacierEvolutionAreaScaling.h:53
bool Init() override
Definition ActionGlacierEvolutionAreaScaling.cpp:21
axxd GetLookupTableArea()
Definition ActionGlacierEvolutionAreaScaling.h:62
void AddLookupTables(int month, const string &landCoverName, const axi &hydroUnitIds, const axxd &areas, const axxd &volumes)
Definition ActionGlacierEvolutionAreaScaling.cpp:9
axxd GetLookupTableVolume()
Definition ActionGlacierEvolutionAreaScaling.h:71
Definition Action.h:7