Add files via upload

This commit is contained in:
Nils Berglund 2023-01-23 14:48:06 +01:00 committed by GitHub
parent 8bb0734140
commit 0727164e2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

View File

@ -1372,6 +1372,18 @@ int reset_view = 0; /* switch to reset 3D view parameters (for option RO
**Program:** `lennardjones.c` postprocessed with `ljones_movie.c`
```
#define MOVIE 0 /* set to 1 to generate movie */
#define DOUBLE_MOVIE 0 /* set to 1 to produce movies for wave height and energy simultaneously */
#define SAVE_MEMORY 1 /* set to 1 to save memory while saving frames */
#define NO_EXTRA_BUFFER_SWAP 0 /* some OS require one less buffer swap when recording images */
#define TIME_LAPSE 1 /* set to 1 to add a time-lapse movie at the end */
/* so far incompatible with double movie */
#define TIME_LAPSE_FACTOR 3 /* factor of time-lapse movie */
#define TIME_LAPSE_FIRST 1 /* set to 1 to show time-lapse version first */
#define SAVE_TIME_SERIES 1 /* set to 1 to save time series of particle positions */
#define WINWIDTH 1280 /* window width */
#define WINHEIGHT 720 /* window height */