fix: us and vs, tested better

This commit is contained in:
robin
2024-05-01 12:51:20 +02:00
parent 0aa58537b1
commit 84674c36de
7 changed files with 47 additions and 38 deletions

View File

@@ -11,7 +11,7 @@
*/
class AdvectionKernel {
public:
const static int DT = 100000; // Seconds
const static int DT = 60 * 15; // 60 sec/min * 15 mins
/**
* This function must take a time, latitude and longitude of a particle and must output
* a new latitude and longitude after being advected once for AdvectionKernel::DT time as defined above.