7 typedef struct PARTICLES
10 int cell [DIMENSIONS] ;
11 real coor [DIMENSIONS] ;
12 real speed[DIMENSIONS] ;
13 real mag [DIMENSIONS] ;
25 struct PARTICLES part;
31 void SET_PARTICLES (HEAD *list, HEAD *temp_list,
struct GRID gxyz[],
33 void ADVANCE_PARTICLES_predictor (HEAD *list,HEAD *temp_list, real ***uu[],
34 struct GRID gxyz[], real dt, real striction);
35 void ADVANCE_PARTICLES_corrector (HEAD *list,HEAD *temp_list, real ***uu[],
36 struct GRID gxyz[], real dt, real striction);
37 void SAVE_PARTICLES(HEAD *list,
int nt, real t,
38 real striction, real ***uu[]);
39 void SAVE_STEP ( HEAD *list, real dt,
int nop );
40 void RENAME_PARTICLES( HEAD *list);
44 void ADD_CELL(HEAD *list,
struct PARTICLES *pl);
45 void DELETE_CELL(HEAD *list,
int i);
46 void DISPLAY_LIST(HEAD *list);