compiles on robins computer :)

This commit is contained in:
Robin
2025-01-18 20:24:15 +01:00
parent db1b1a60ca
commit c65af95a66
9 changed files with 46 additions and 10 deletions

View File

@@ -21,7 +21,7 @@ static float* d_volume = nullptr;
// * time controls - arbitrary skipping to specified point (would require some changes to gpubuffer) (could have)
void getTemperature(std::vector<float>& temperatureData, int idx = 0) {
std::string path = "data/trimmed";
std::string path = "../../../hurricane-sandy-data";
// std::string path = "data";
std::string variable = "T";
DataReader dataReader(path, variable);
@@ -31,7 +31,7 @@ void getTemperature(std::vector<float>& temperatureData, int idx = 0) {
}
void getSpeed(std::vector<float>& speedData, int idx = 0) {
std::string path = "data/trimmed";
std::string path = "../../../hurricane-sandy-data";
// std::string path = "data";
std::string varU = "U";
std::string varV = "V";