#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <unistd.h>
#include "cgnslib.h"
Go to the source code of this file.
Defines | |
#define | NUM_I (size[0] + rind[0] + rind[1]) |
#define | NUM_J (size[1] + rind[2] + rind[3]) |
#define | NUM_K (size[2] + rind[4] + rind[5]) |
#define | INDEX(I, J, K) ((I) + NUM_I * ((J) + NUM_J * (K))) |
Functions | |
int | main (int argc, char *argv[]) |
Variables | |
int | CellDim = 3 |
int | PhyDim = 3 |
int | cgfile |
int | cgbase |
int | cgzone |
int | cggrid |
int | cgsect |
int | cgsol |
int | cgfld |
int | size [9] = {5, 5, 5, 4, 4, 4, 0, 0, 0} |
int | rind [6] = {0, 0, 0, 0, 1, 1} |
int | num_coord |
float * | xcoord |
float * | ycoord |
float * | zcoord |
int * | nmap |
int | num_element |
int * | elements |
float * | solution |
#define INDEX | ( | I, | |||
J, | |||||
K | ) | ((I) + NUM_I * ((J) + NUM_J * (K))) |
Definition at line 20 of file write_rind.c.
Definition at line 16 of file write_rind.c.
Definition at line 17 of file write_rind.c.
Definition at line 18 of file write_rind.c.
int main | ( | int | argc, | |
char * | argv[] | |||
) |
Definition at line 51 of file write_rind.c.
int CellDim = 3 |
Definition at line 10 of file write_rind.c.
int cgbase |
Definition at line 11 of file write_rind.c.
int cgfile |
Definition at line 11 of file write_rind.c.
int cgfld |
Definition at line 11 of file write_rind.c.
int cggrid |
Definition at line 11 of file write_rind.c.
int cgsect |
Definition at line 11 of file write_rind.c.
int cgsol |
Definition at line 11 of file write_rind.c.
int cgzone |
Definition at line 11 of file write_rind.c.
int * elements |
Definition at line 26 of file write_rind.c.
int* nmap |
Definition at line 24 of file write_rind.c.
int num_coord |
Definition at line 22 of file write_rind.c.
int num_element |
Definition at line 26 of file write_rind.c.
int PhyDim = 3 |
Definition at line 10 of file write_rind.c.
int rind[6] = {0, 0, 0, 0, 1, 1} |
Definition at line 14 of file write_rind.c.
int size[9] = {5, 5, 5, 4, 4, 4, 0, 0, 0} |
Definition at line 13 of file write_rind.c.
float* solution |
Definition at line 28 of file write_rind.c.
float* xcoord |
Definition at line 23 of file write_rind.c.
float * ycoord |
Definition at line 23 of file write_rind.c.
float * zcoord |
Definition at line 23 of file write_rind.c.