File: riy88d.c

package info (click to toggle)
z88 13.0.0%2Bdfsg2-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid
  • size: 107,792 kB
  • sloc: ansic: 45,530; sh: 71; makefile: 14
file content (195 lines) | stat: -rw-r--r-- 6,024 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
/***********************************************************************
* 
*               *****   ***    ***
*                  *   *   *  *   *
*                 *     ***    ***
*                *     *   *  *   *
*               *****   ***    ***
*
* A FREE Finite Elements Analysis Program in ANSI C for the UNIX OS.
*
* Composed and edited and copyright by 
* Professor Dr.-Ing. Frank Rieg, University of Bayreuth, Germany
*
* eMail: 
* frank.rieg@uni-bayreuth.de
* dr.frank.rieg@t-online.de
* 
* V12.0  February 14, 2005
*
* Z88 should compile and run under any UNIX OS and Motif 2.0.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; see the file COPYING.  If not, write to
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
***********************************************************************/ 
/***********************************************************************
* riy88d liest Z88O1.BNY und Z88O3.BNY ein
* und oeffnet und schliesst diese Files
* riy88d entspricht genau riy88 (das in Z88E verwendet wird), benutzt
* aber wlog88d und wrim88d anstatt wlog88e und wrim88e.
* 22.2.2005 Rieg
***********************************************************************/

/***********************************************************************
* Fuer UNIX
***********************************************************************/
#ifdef FR_UNIX
#include <z88e.h>
#include <stdio.h>    /* FILE,fopen,fclose,fprintf,fwrite */
                      /* fread,rewind,NULL */
#endif

/***********************************************************************
* Fuer Windows 95
***********************************************************************/
#ifdef FR_WIN95
#include <z88e.h>
#include <stdio.h>    /* FILE,fopen,fclose,fprintf,fwrite */
                      /* fread,rewind,NULL */
#endif

/***********************************************************************
*  Functions
***********************************************************************/
int wrim88d(FR_INT4,int);
int wlog88d(FR_INT4,int);

/***********************************************************************
* hier beginnt Function riy88d
***********************************************************************/
int riy88d(void)
{
extern FILE *f1y,*f3y,*fwlo;
extern char c1y[],c3y[];

extern FR_DOUBLEAY u;
extern FR_DOUBLEAY x;
extern FR_DOUBLEAY y;
extern FR_DOUBLEAY z;
extern FR_DOUBLEAY emod;
extern FR_DOUBLEAY rnue;
extern FR_DOUBLEAY qpara;
extern FR_DOUBLEAY riyy;
extern FR_DOUBLEAY eyy;
extern FR_DOUBLEAY rizz;
extern FR_DOUBLEAY ezz;
extern FR_DOUBLEAY rit;
extern FR_DOUBLEAY wt;

extern FR_INT4AY ifrei; 
extern FR_INT4AY ioffs; 
extern FR_INT4AY ityp; 
extern FR_INT4AY koffs; 
extern FR_INT4AY koi; 
extern FR_INT4AY ivon; 
extern FR_INT4AY ibis; 
extern FR_INT4AY intord; 

extern FR_INT4 ndim,nkp,ne,nfg,neg,ibflag,ipflag,iqflag;
extern FR_INT4 nkoi;

FR_INT4 i;

/***********************************************************************
* Start Function: Oeffnen der Files
***********************************************************************/
f1y= fopen(c1y,"rb");
if(f1y == NULL)
  {
  wlog88d(0,LOG_NO1Y);
  fclose(fwlo);
  return(AL_NO1Y);
  }
rewind(f1y);

f3y= fopen(c3y,"rb");
if(f3y == NULL)
  {
  wlog88d(0,LOG_NO3Y);
  fclose(fwlo);
  return(AL_NO3Y);
  }
rewind(f3y);

/**********************************************************************
* Einlesen des Binaerfiles Z88O1.BNY
**********************************************************************/
wrim88d(0,TX_REAO1Y);
wlog88d(0,LOG_REAO1Y);

fread(&ndim,  sizeof(FR_INT4),1,f1y);
fread(&nkp,   sizeof(FR_INT4),1,f1y);
fread(&ne,    sizeof(FR_INT4),1,f1y);
fread(&nfg,   sizeof(FR_INT4),1,f1y);
fread(&neg,   sizeof(FR_INT4),1,f1y);
fread(&ibflag,sizeof(FR_INT4),1,f1y);
fread(&ipflag,sizeof(FR_INT4),1,f1y);
fread(&iqflag,sizeof(FR_INT4),1,f1y);

for(i = 1;i <= nkp;i++)
  { 
  fread(&x[i],     sizeof(FR_DOUBLE),1,f1y);
  fread(&y[i],     sizeof(FR_DOUBLE),1,f1y);
  fread(&z[i],     sizeof(FR_DOUBLE),1,f1y);
  fread(&ifrei[i], sizeof(FR_INT4),  1,f1y);
  fread(&ioffs[i], sizeof(FR_INT4),  1,f1y);
  }

for(i = 1;i <= ne;i++)
  { 
  fread(&ityp[i],  sizeof(FR_INT4),  1,f1y);
  fread(&koffs[i], sizeof(FR_INT4),  1,f1y);
  }
       
fread(&nkoi, sizeof(FR_INT4),1,f1y);
for(i = 1;i <= nkoi;i++)
  fread(&koi[i], sizeof(FR_INT4),1,f1y);

for(i = 1;i <= neg;i++)
  { 
  fread(&ivon[i],   sizeof(FR_INT4),  1,f1y);
  fread(&ibis[i],   sizeof(FR_INT4),  1,f1y);
  fread(&emod[i],   sizeof(FR_DOUBLE),1,f1y);
  fread(&rnue[i],   sizeof(FR_DOUBLE),1,f1y);
  fread(&intord[i], sizeof(FR_INT4),  1,f1y);
  fread(&qpara[i],  sizeof(FR_DOUBLE),1,f1y);
  fread(&riyy[i],   sizeof(FR_DOUBLE),1,f1y);
  fread(&eyy[i],    sizeof(FR_DOUBLE),1,f1y);
  fread(&rizz[i],   sizeof(FR_DOUBLE),1,f1y);
  fread(&ezz[i],    sizeof(FR_DOUBLE),1,f1y);
  fread(&rit[i],    sizeof(FR_DOUBLE),1,f1y);
  fread(&wt[i],     sizeof(FR_DOUBLE),1,f1y);
  }

/**********************************************************************
* Einlesen des Binaerfiles Z88O3.BNY
**********************************************************************/
wrim88d(0,TX_REAO3Y);
wlog88d(0,LOG_REAO3Y);

fread(&nfg,sizeof(FR_INT4),1,f3y);
for(i = 1;i <= nfg;i++)
  fread(&u[i],sizeof(FR_DOUBLE),1,f3y);

/**********************************************************************
* Files Z88O1.BNY und Z88O3.BNY schliessen, Ende
**********************************************************************/
fclose(f1y);
fclose(f3y);

wlog88d(0,LOG_RIY88OK);

return(0);
}