File: shared.c

package info (click to toggle)
nec2c 1.3.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 952 kB
  • sloc: ansic: 10,345; sh: 4,839; makefile: 45
file content (67 lines) | stat: -rw-r--r-- 965 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
 * Shared global variables for nec2c.c
 */

#include "shared.h"

/*------------------------------------------------------------------------*/

/* common  /crnt/ */
crnt_t crnt;

/* common  /dataj/ */
dataj_t dataj;

/* common  /data/ */
data_t data;

/* pointers to input/output files */
FILE *input_fp=NULL, *output_fp=NULL, *plot_fp=NULL;

/* common  /fpat/ */
fpat_t fpat;

/*common  /ggrid/ */
ggrid_t ggrid;

/* common  /gnd/ */
gnd_t gnd;

/* common  /gwav/ */
gwav_t gwav;

/* common  /incom/ */
incom_t incom;

/* common  /matpar/ */
matpar_t matpar;

/* common  /netcx/ */
netcx_t netcx;

/* common  /plot/ */
plot_t plot;

/* common  /save/ */
save_t save;

/* common  /segj/ */
segj_t segj;

/* common  /smat/ */
smat_t smat;

/* common  /tmi/ */
tmi_t tmi;

/* common  /vsorc/ */
vsorc_t vsorc;

/* common  /yparm/ */
yparm_t yparm;

/* common  /zload/ */
zload_t zload;

/*------------------------------------------------------------------------*/