Nstrophy/src/init.h

11 lines
218 B
C
Raw Normal View History

2022-05-26 19:05:30 +00:00
#ifndef INIT_H
#define INIT_H
// random initial condition
int init_random(_Complex double* u0, int K1, int K2, int seed);
// Gaussian initial condition
int init_gaussian(_Complex double* u0, int K1, int K2);
#endif