You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
458 B
C
22 lines
458 B
C
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include "genlib.h"
|
|
#include "geostat.h"
|
|
|
|
#ifndef _PRESSURE_H
|
|
#define _PRESSURE_H
|
|
|
|
/*STRUCTURES*/
|
|
/*----------*/
|
|
|
|
/* pressure_mod */
|
|
/* x: macroscopic gradient value in x direction */
|
|
/* y: macroscopic gradient value in x direction */
|
|
/* z: macroscopic gradient value in x direction */
|
|
struct pressure_mod {
|
|
double x,y,z;
|
|
};
|
|
|
|
|
|
#endif // define _PRESSURE_H
|