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
34 void Reset() override;
35
42 bool Apply(double date) override;
43
50 return _landCoverName;
51 }
52
59 return _hydroUnitIds;
60 }
61
68 return _tableArea;
69 }
70
77 return _tableVolume;
78 }
79
80 protected:
81 string _landCoverName;
82 axi _hydroUnitIds;
83 axxd _tableArea;
84 axxd _tableVolume;
85 axd _initialGlacierWE;
86};
87
88#endif // HYDROBRICKS_ACTION_GLACIER_EVOLUTION_AREA_SCALING_H
Definition ActionGlacierEvolutionAreaScaling.h:7
bool Apply(double date) override
Definition ActionGlacierEvolutionAreaScaling.cpp:73
string GetLandCoverName()
Definition ActionGlacierEvolutionAreaScaling.h:49
void Reset() override
Definition ActionGlacierEvolutionAreaScaling.cpp:62
axi GetHydroUnitIds()
Definition ActionGlacierEvolutionAreaScaling.h:58
bool Init() override
Definition ActionGlacierEvolutionAreaScaling.cpp:21
axxd GetLookupTableArea()
Definition ActionGlacierEvolutionAreaScaling.h:67
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:76
Definition Action.h:7