euler integration maybe working

This commit is contained in:
robin
2024-04-25 11:07:35 +02:00
parent 933fbf4503
commit 2864e70d39
8 changed files with 56 additions and 28 deletions

View File

@@ -0,0 +1,15 @@
#ifndef ADVECTION_ADVECTIONKERNEL_H
#define ADVECTION_ADVECTIONKERNEL_H
#include <tuple>
#include "Vel.h"
#define DT 4000
class AdvectionKernel {
public:
virtual std::pair<double, double> advect(int time, double latitude, double longitude) const = 0;
};
#endif //ADVECTION_ADVECTIONKERNEL_H