source: CIVL/examples/fortran/nek5000/core/experimental/lpm.h

main
Last change on this file was ea777aa, checked in by Alex Wilton <awilton@…>, 3 years ago

Moved examples, include, build_default.properties, common.xml, and README out from dev.civl.com into the root of the repo.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@5704 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100755
File size: 676 bytes
Line 
1c Set default values
2#ifndef LPM_LPART
3# define LPM_LPART 10000
4#endif
5#ifndef LPM_JX
6# define LPM_JX 1
7#endif
8#ifndef LPM_JY
9# define LPM_JY 2
10#endif
11#ifndef LPM_JZ
12# define LPM_JZ 3
13#endif
14
15c Number of secondary real properties for a particle
16#define LPM_LRP2 4
17
18c Number of integer properties for a particle
19#ifndef LPM_LIP
20#define LPM_LIP 11
21#endif
22
23c Maximum number of ghost particles
24#define LPM_LPART_GP 26*LPM_LPART
25
26#ifndef LPM_LRP_PRO
27#define LPM_LRP_PRO 1
28#endif
29#if LPM_LRP_PRO == 0
30#undef LPM_LRP_PRO
31#define LPM_LRP_PRO 1
32#endif
33
34#ifndef LPM_LRP_GP
35#define LPM_LRP_GP 4+LPM_LRP_PRO
36#endif
37
38#include "lpm_comm.f"
39#include "lpm_solve.f"
40#include "lpm_io.f"
Note: See TracBrowser for help on using the repository browser.