| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
#include "cddefines.h" |
|---|
| 5 |
#include "cddrive.h" |
|---|
| 6 |
#include "version.h" |
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
#ifdef MPI |
|---|
| 14 |
# include <mpi.h> |
|---|
| 15 |
#endif |
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
#ifdef _MSC_VER |
|---|
| 20 |
|
|---|
| 21 |
# pragma warning( disable : 4127 ) |
|---|
| 22 |
#endif |
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 |
|
|---|
| 27 |
|
|---|
| 28 |
|
|---|
| 29 |
|
|---|
| 30 |
|
|---|
| 31 |
|
|---|
| 32 |
|
|---|
| 33 |
|
|---|
| 34 |
|
|---|
| 35 |
|
|---|
| 36 |
|
|---|
| 37 |
#define TITLE "std con Fe2 sol, col 24 " |
|---|
| 38 |
|
|---|
| 39 |
|
|---|
| 40 |
#define FILENAME "STD_con_sol" |
|---|
| 41 |
|
|---|
| 42 |
|
|---|
| 43 |
|
|---|
| 44 |
|
|---|
| 45 |
#define PATHNAME "" |
|---|
| 46 |
|
|---|
| 47 |
|
|---|
| 48 |
#define OFFSET_HDEN (0.) |
|---|
| 49 |
#define OFFSET_FLUX (0.) |
|---|
| 50 |
|
|---|
| 51 |
|
|---|
| 52 |
|
|---|
| 53 |
|
|---|
| 54 |
|
|---|
| 55 |
|
|---|
| 56 |
#define HDENINIT (7.+OFFSET_HDEN) |
|---|
| 57 |
#define HDENLIMIT (14.+OFFSET_HDEN) |
|---|
| 58 |
|
|---|
| 59 |
|
|---|
| 60 |
|
|---|
| 61 |
#define FLUXINIT (17.+OFFSET_FLUX) |
|---|
| 62 |
#define FLUXLIMIT (24.+OFFSET_FLUX) |
|---|
| 63 |
|
|---|
| 64 |
#define FLUXLIMIT (20.5+OFFSET_FLUX)*/ |
|---|
| 65 |
|
|---|
| 66 |
|
|---|
| 67 |
|
|---|
| 68 |
#define INCREMENT 1. |
|---|
| 69 |
|
|---|
| 70 |
|
|---|
| 71 |
|
|---|
| 72 |
|
|---|
| 73 |
|
|---|
| 74 |
#define ITERATIONS 2 |
|---|
| 75 |
|
|---|
| 76 |
|
|---|
| 77 |
|
|---|
| 78 |
#define COLDEN 24 |
|---|
| 79 |
|
|---|
| 80 |
|
|---|
| 81 |
#define FEII true |
|---|
| 82 |
|
|---|
| 83 |
|
|---|
| 84 |
#define QUICK_MODEL false |
|---|
| 85 |
|
|---|
| 86 |
|
|---|
| 87 |
#define VERY_QUICK_MODEL false |
|---|
| 88 |
|
|---|
| 89 |
|
|---|
| 90 |
|
|---|
| 91 |
#define DO_PRINT false |
|---|
| 92 |
|
|---|
| 93 |
|
|---|
| 94 |
#define PRINT_LAST false |
|---|
| 95 |
|
|---|
| 96 |
|
|---|
| 97 |
#define NO_BUFFERING false |
|---|
| 98 |
|
|---|
| 99 |
|
|---|
| 100 |
|
|---|
| 101 |
|
|---|
| 102 |
#define NLINTOT 1500 |
|---|
| 103 |
|
|---|
| 104 |
typedef struct |
|---|
| 105 |
{ |
|---|
| 106 |
|
|---|
| 107 |
|
|---|
| 108 |
double hden , flux , pred[NLINTOT] ; |
|---|
| 109 |
|
|---|
| 110 |
int nWarnings , nCautions , nTFail; |
|---|
| 111 |
|
|---|
| 112 |
int lgBadEnd ; |
|---|
| 113 |
|
|---|
| 114 |
double etime; |
|---|
| 115 |
|
|---|
| 116 |
double par1 , par2; |
|---|
| 117 |
} GRIDTAG; |
|---|
| 118 |
|
|---|
| 119 |
|
|---|
| 120 |
#ifdef MPI |
|---|
| 121 |
void Build_derived_type(GRIDTAG gridtag, MPI_Datatype* message_type_ptr) |
|---|
| 122 |
{ |
|---|
| 123 |
int block_lengths[10]; |
|---|
| 124 |
MPI_Aint displacements[10]; |
|---|
| 125 |
MPI_Aint addresses[11]; |
|---|
| 126 |
MPI_Datatype typelist[10]; |
|---|
| 127 |
|
|---|
| 128 |
|
|---|
| 129 |
typelist[0] = MPI_DOUBLE; |
|---|
| 130 |
typelist[1] = MPI_DOUBLE; |
|---|
| 131 |
typelist[2] = MPI_DOUBLE; |
|---|
| 132 |
typelist[3] = MPI_INT; |
|---|
| 133 |
typelist[4] = MPI_INT; |
|---|
| 134 |
typelist[5] = MPI_INT; |
|---|
| 135 |
typelist[6] = MPI_INT; |
|---|
| 136 |
typelist[7] = MPI_DOUBLE; |
|---|
| 137 |
typelist[8] = MPI_DOUBLE; |
|---|
| 138 |
typelist[9] = MPI_DOUBLE; |
|---|
| 139 |
|
|---|
| 140 |
|
|---|
| 141 |
block_lengths[0] = block_lengths[1] = block_lengths[3] = 1; |
|---|
| 142 |
block_lengths[4] = block_lengths[5] = block_lengths[6] = 1; |
|---|
| 143 |
block_lengths[7] = 1; |
|---|
| 144 |
|
|---|
| 145 |
block_lengths[2] = NLINTOT; |
|---|
| 146 |
|
|---|
| 147 |
block_lengths[8] = block_lengths[9] = 1; |
|---|
| 148 |
|
|---|
| 149 |
|
|---|
| 150 |
MPI_Address( &gridtag, &addresses[0]); |
|---|
| 151 |
MPI_Address(&(gridtag.hden), &addresses[1]); |
|---|
| 152 |
MPI_Address(&(gridtag.flux), &addresses[2]); |
|---|
| 153 |
MPI_Address(&(gridtag.pred), &addresses[3]); |
|---|
| 154 |
MPI_Address(&(gridtag.nWarnings), &addresses[4]); |
|---|
| 155 |
MPI_Address(&(gridtag.nCautions), &addresses[5]); |
|---|
| 156 |
MPI_Address(&(gridtag.nTFail), &addresses[6]); |
|---|
| 157 |
MPI_Address(&(gridtag.lgBadEnd), &addresses[7]); |
|---|
| 158 |
MPI_Address(&(gridtag.etime), &addresses[8]); |
|---|
| 159 |
MPI_Address(&(gridtag.par1), &addresses[9]); |
|---|
| 160 |
MPI_Address(&(gridtag.par2), &addresses[10]); |
|---|
| 161 |
|
|---|
| 162 |
|
|---|
| 163 |
displacements[0] = addresses[1] - addresses[0]; |
|---|
| 164 |
displacements[1] = addresses[2] - addresses[0]; |
|---|
| 165 |
displacements[2] = addresses[3] - addresses[0]; |
|---|
| 166 |
displacements[3] = addresses[4] - addresses[0]; |
|---|
| 167 |
displacements[4] = addresses[5] - addresses[0]; |
|---|
| 168 |
displacements[5] = addresses[6] - addresses[0]; |
|---|
| 169 |
displacements[6] = addresses[7] - addresses[0]; |
|---|
| 170 |
displacements[7] = addresses[8] - addresses[0]; |
|---|
| 171 |
displacements[8] = addresses[9] - addresses[0]; |
|---|
| 172 |
displacements[9] = addresses[10]- addresses[0]; |
|---|
| 173 |
|
|---|
| 174 |
|
|---|
| 175 |
MPI_Type_struct(10, block_lengths, displacements, typelist,message_type_ptr); |
|---|
| 176 |
|
|---|
| 177 |
|
|---|
| 178 |
MPI_Type_commit(message_type_ptr); |
|---|
| 179 |
|
|---|
| 180 |
} |
|---|
| 181 |
|
|---|
| 182 |
# endif |
|---|
| 183 |
|
|---|
| 184 |
int main( int argc, char *argv[] ) |
|---|
| 185 |
{ |
|---|
| 186 |
DEBUG_ENTRY( "main()" ); |
|---|
| 187 |
|
|---|
| 188 |
try { |
|---|
| 189 |
bool lgAbort; |
|---|
| 190 |
int IntegerMod; |
|---|
| 191 |
int myrank ; |
|---|
| 192 |
double hden , absolute , relative , flux; |
|---|
| 193 |
char chVer[10] , chPath[1000] , chFilename[1000] , chFile[2000] ; |
|---|
| 194 |
|
|---|
| 195 |
double *xpar , *ypar, *par1, *par2; |
|---|
| 196 |
|
|---|
| 197 |
|
|---|
| 198 |
|
|---|
| 199 |
long int mod, nLines, LimModels, nModels; |
|---|
| 200 |
|
|---|
| 201 |
|
|---|
| 202 |
|
|---|
| 203 |
char **chLabel ; |
|---|
| 204 |
realnum *wl; |
|---|
| 205 |
|
|---|
| 206 |
long int |
|---|
| 207 |
NumberWarnings1, NumberCautions1, NumberNotes1, NumberSurprises1, NumberTempFailures1, |
|---|
| 208 |
NumberPresFailures1, NumberIonFailures1, NumberNeFailures1 ; |
|---|
| 209 |
|
|---|
| 210 |
int nErrorExits; |
|---|
| 211 |
|
|---|
| 212 |
FILE *ioOUT , *ioDATA ; |
|---|
| 213 |
char chLine[100]; |
|---|
| 214 |
|
|---|
| 215 |
long int n; |
|---|
| 216 |
|
|---|
| 217 |
int numprocs = 1; |
|---|
| 218 |
|
|---|
| 219 |
|
|---|
| 220 |
GRIDTAG grid; |
|---|
| 221 |
|
|---|
| 222 |
|
|---|
| 223 |
# ifdef MPI |
|---|
| 224 |
GRIDTAG gridtag; |
|---|
| 225 |
GRIDTAG *grids; |
|---|
| 226 |
|
|---|
| 227 |
MPI_Datatype message_type; |
|---|
| 228 |
|
|---|
| 229 |
MPI_Init(&argc, &argv); |
|---|
| 230 |
MPI_Comm_size(MPI_COMM_WORLD, &numprocs); |
|---|
| 231 |
MPI_Comm_rank(MPI_COMM_WORLD, &myrank); |
|---|
| 232 |
|
|---|
| 233 |
Build_derived_type(gridtag, &message_type); |
|---|
| 234 |
# else |
|---|
| 235 |
myrank = 0; |
|---|
| 236 |
# endif |
|---|
| 237 |
|
|---|
| 238 |
|
|---|
| 239 |
|
|---|
| 240 |
strcpy( chPath , PATHNAME ); |
|---|
| 241 |
|
|---|
| 242 |
|
|---|
| 243 |
|
|---|
| 244 |
strcpy( chFilename , FILENAME ); |
|---|
| 245 |
|
|---|
| 246 |
|
|---|
| 247 |
|
|---|
| 248 |
|
|---|
| 249 |
|
|---|
| 250 |
|
|---|
| 251 |
LimModels = (long)((FLUXLIMIT - FLUXINIT)/INCREMENT + 1.1); |
|---|
| 252 |
LimModels *= (long)((HDENLIMIT - HDENINIT)/INCREMENT+1.1); |
|---|
| 253 |
|
|---|
| 254 |
|
|---|
| 255 |
LimModels += numprocs; |
|---|
| 256 |
|
|---|
| 257 |
xpar = (double*)malloc(LimModels*sizeof(double) ); |
|---|
| 258 |
ypar = (double*)malloc(LimModels*sizeof(double) ); |
|---|
| 259 |
par1 = (double*)malloc(LimModels*sizeof(double) ); |
|---|
| 260 |
par2 = (double*)malloc(LimModels*sizeof(double) ); |
|---|
| 261 |
|
|---|
| 262 |
if( xpar==NULL || ypar==NULL || par1==NULL || par2==NULL ) |
|---|
| 263 |
{ |
|---|
| 264 |
fprintf(stderr,"malloc failed\n"); |
|---|
| 265 |
# ifdef MPI |
|---|
| 266 |
MPI_Finalize(); |
|---|
| 267 |
# endif |
|---|
| 268 |
cdEXIT(EXIT_FAILURE); |
|---|
| 269 |
} |
|---|
| 270 |
|
|---|
| 271 |
hden = HDENINIT; |
|---|
| 272 |
flux = FLUXINIT; |
|---|
| 273 |
nModels = 0; |
|---|
| 274 |
nErrorExits = 0; |
|---|
| 275 |
# ifdef MPI |
|---|
| 276 |
|
|---|
| 277 |
* bottom right of loc plane, increasing density, |
|---|
| 278 |
* and ending on the major diagonal. |
|---|
| 279 |
* this is for load leveling on parallel machines */ |
|---|
| 280 |
for( hden = HDENLIMIT; hden>= HDENINIT; hden-=INCREMENT ) |
|---|
| 281 |
{ |
|---|
| 282 |
for( flux=FLUXINIT; flux<=FLUXLIMIT; flux+= INCREMENT ) |
|---|
| 283 |
{ |
|---|
| 284 |
if( hden + (flux-FLUXINIT) > HDENLIMIT ) break; |
|---|
| 285 |
assert( nModels < LimModels ); |
|---|
| 286 |
xpar[nModels] = hden + (flux-FLUXINIT); |
|---|
| 287 |
ypar[nModels] = flux; |
|---|
| 288 |
par1[nModels] = COLDEN; |
|---|
| 289 |
par2[nModels] = 0.; |
|---|
| 290 |
++nModels; |
|---|
| 291 |
} |
|---|
| 292 |
} |
|---|
| 293 |
|
|---|
| 294 |
for( flux=FLUXINIT+INCREMENT; flux<=FLUXLIMIT; flux+= INCREMENT ) |
|---|
| 295 |
{ |
|---|
| 296 |
for( hden = HDENINIT; hden<= HDENLIMIT; hden+=INCREMENT ) |
|---|
| 297 |
{ |
|---|
| 298 |
if( flux + (hden-HDENINIT) > FLUXLIMIT ) break; |
|---|
| 299 |
assert( nModels < LimModels ); |
|---|
| 300 |
xpar[nModels] = hden ; |
|---|
| 301 |
ypar[nModels] = flux + (hden-HDENINIT); |
|---|
| 302 |
par1[nModels] = COLDEN; |
|---|
| 303 |
par2[nModels] = 0.; |
|---|
| 304 |
++nModels; |
|---|
| 305 |
} |
|---|
| 306 |
} |
|---|
| 307 |
# else |
|---|
| 308 |
|
|---|
| 309 |
while( hden < 1.00001 * HDENLIMIT ) |
|---|
| 310 |
{ |
|---|
| 311 |
while( flux < 1.00001*FLUXLIMIT ) |
|---|
| 312 |
{ |
|---|
| 313 |
xpar[nModels] = hden; |
|---|
| 314 |
ypar[nModels] = flux; |
|---|
| 315 |
par1[nModels] = COLDEN; |
|---|
| 316 |
par2[nModels] = 0.; |
|---|
| 317 |
++nModels; |
|---|
| 318 |
flux += INCREMENT; |
|---|
| 319 |
} |
|---|
| 320 |
flux = FLUXINIT; |
|---|
| 321 |
hden += INCREMENT; |
|---|
| 322 |
} |
|---|
| 323 |
# endif |
|---|
| 324 |
|
|---|
| 325 |
if( nModels%numprocs) |
|---|
| 326 |
{ |
|---|
| 327 |
|
|---|
| 328 |
IntegerMod = nModels + (numprocs - nModels%numprocs); |
|---|
| 329 |
} |
|---|
| 330 |
else |
|---|
| 331 |
{ |
|---|
| 332 |
IntegerMod = nModels; |
|---|
| 333 |
} |
|---|
| 334 |
|
|---|
| 335 |
|
|---|
| 336 |
for( mod=nModels; mod<IntegerMod; ++mod) |
|---|
| 337 |
{ |
|---|
| 338 |
xpar[mod] = xpar[0]; |
|---|
| 339 |
ypar[mod] = ypar[0]; |
|---|
| 340 |
par1[mod] = par1[0]; |
|---|
| 341 |
par2[mod] = par2[0]; |
|---|
| 342 |
} |
|---|
| 343 |
|
|---|
| 344 |
|
|---|
| 345 |
|
|---|
| 346 |
# ifdef MPI |
|---|
| 347 |
|
|---|
| 348 |
if( (grids = ((GRIDTAG *)malloc( (size_t)(numprocs)*sizeof(GRIDTAG )))) == NULL ) |
|---|
| 349 |
{ |
|---|
| 350 |
fprintf(stderr," main could not malloc grid\n"); |
|---|
| 351 |
# ifdef MPI |
|---|
| 352 |
MPI_Finalize(); |
|---|
| 353 |
# endif |
|---|
| 354 |
cdEXIT(EXIT_FAILURE); |
|---|
| 355 |
} |
|---|
| 356 |
# endif |
|---|
| 357 |
|
|---|
| 358 |
|
|---|
| 359 |
cdInit(); |
|---|
| 360 |
|
|---|
| 361 |
|
|---|
| 362 |
|
|---|
| 363 |
|
|---|
| 364 |
nLines = cdGetLineList("" , &chLabel , &wl); |
|---|
| 365 |
|
|---|
| 366 |
|
|---|
| 367 |
|
|---|
| 368 |
cdVersion(chVer); |
|---|
| 369 |
|
|---|
| 370 |
|
|---|
| 371 |
if( DO_PRINT ) |
|---|
| 372 |
{ |
|---|
| 373 |
|
|---|
| 374 |
strcpy( chFile , chPath ); |
|---|
| 375 |
strcat( chFile , chFilename ); |
|---|
| 376 |
strcat( chFile , ".out" ); |
|---|
| 377 |
ioOUT = fopen(chFile,"w"); |
|---|
| 378 |
if( ioOUT == NULL ) |
|---|
| 379 |
{ |
|---|
| 380 |
printf(" main could not open %s for writing.\n", chFile); |
|---|
| 381 |
# ifdef MPI |
|---|
| 382 |
MPI_Finalize(); |
|---|
| 383 |
# endif |
|---|
| 384 |
cdEXIT(EXIT_FAILURE); |
|---|
| 385 |
} |
|---|
| 386 |
} |
|---|
| 387 |
else |
|---|
| 388 |
{ |
|---|
| 389 |
|
|---|
| 390 |
ioOUT = stderr; |
|---|
| 391 |
} |
|---|
| 392 |
|
|---|
| 393 |
|
|---|
| 394 |
strcpy( chFile , chPath ); |
|---|
| 395 |
strcat( chFile , chFilename ); |
|---|
| 396 |
strcat( chFile , ".lin" ); |
|---|
| 397 |
ioDATA = fopen(chFile,"w"); |
|---|
| 398 |
if( ioDATA == NULL ) |
|---|
| 399 |
{ |
|---|
| 400 |
printf(" could not open %s for writing.\n" , chFile ); |
|---|
| 401 |
# ifdef MPI |
|---|
| 402 |
MPI_Finalize(); |
|---|
| 403 |
# endif |
|---|
| 404 |
cdEXIT(EXIT_FAILURE); |
|---|
| 405 |
} |
|---|
| 406 |
|
|---|
| 407 |
|
|---|
| 408 |
|
|---|
| 409 |
fprintf(ioDATA,"Cloudy version %s, %s\n",chVer,TITLE); |
|---|
| 410 |
|
|---|
| 411 |
for( mod=myrank; mod<IntegerMod; mod+=numprocs ) |
|---|
| 412 |
{ |
|---|
| 413 |
hden = xpar[mod]; |
|---|
| 414 |
flux = ypar[mod]; |
|---|
| 415 |
|
|---|
| 416 |
memset(&grid, 0, sizeof(GRIDTAG)); |
|---|
| 417 |
|
|---|
| 418 |
|
|---|
| 419 |
cdInit(); |
|---|
| 420 |
|
|---|
| 421 |
|
|---|
| 422 |
cdOutp(ioOUT); |
|---|
| 423 |
|
|---|
| 424 |
|
|---|
| 425 |
cdTalk( DO_PRINT ); |
|---|
| 426 |
|
|---|
| 427 |
|
|---|
| 428 |
sprintf(chLine,"title %s", TITLE); |
|---|
| 429 |
n = cdRead( chLine ); |
|---|
| 430 |
|
|---|
| 431 |
|
|---|
| 432 |
# if PRINT_LAST |
|---|
| 433 |
n = cdRead("print last iteration "); |
|---|
| 434 |
# endif |
|---|
| 435 |
|
|---|
| 436 |
|
|---|
| 437 |
# if QUICK_MODEL |
|---|
| 438 |
n = cdRead( "stop zone 3 " ); |
|---|
| 439 |
n = cdRead( "constant temper 4 " ); |
|---|
| 440 |
# endif |
|---|
| 441 |
# if VERY_QUICK_MODEL |
|---|
| 442 |
cdNoExec(); |
|---|
| 443 |
# endif |
|---|
| 444 |
|
|---|
| 445 |
|
|---|
| 446 |
# if ( (!QUICK_MODEL) && (!VERY_QUICK_MODEL) &&(ITERATIONS!=0) ) |
|---|
| 447 |
# if ITERATIONS < 0 |
|---|
| 448 |
n = cdRead( "iterate convergence " ); |
|---|
| 449 |
# else |
|---|
| 450 |
sprintf(chLine,"iterate %i", ITERATIONS); |
|---|
| 451 |
n = cdRead( chLine ); |
|---|
| 452 |
# endif |
|---|
| 453 |
# endif |
|---|
| 454 |
|
|---|
| 455 |
# ifdef MPI |
|---|
| 456 |
|
|---|
| 457 |
cdMPI(); |
|---|
| 458 |
# endif |
|---|
| 459 |
|
|---|
| 460 |
|
|---|
| 461 |
# ifdef NO_BUFFERING |
|---|
| 462 |
n = cdRead("no buffering "); |
|---|
| 463 |
# endif |
|---|
| 464 |
|
|---|
| 465 |
|
|---|
| 466 |
|
|---|
| 467 |
|
|---|
| 468 |
if( mod >= nModels ) |
|---|
| 469 |
cdNoExec(); |
|---|
| 470 |
|
|---|
| 471 |
|
|---|
| 472 |
sprintf(chLine,"phi(h) %f", flux); |
|---|
| 473 |
n = cdRead( chLine ); |
|---|
| 474 |
|
|---|
| 475 |
sprintf(chLine,"hden %f", hden); |
|---|
| 476 |
n = cdRead( chLine ); |
|---|
| 477 |
|
|---|
| 478 |
|
|---|
| 479 |
# if FEII |
|---|
| 480 |
n = cdRead( "atom feii " ); |
|---|
| 481 |
# endif |
|---|
| 482 |
|
|---|
| 483 |
|
|---|
| 484 |
n = cdRead( "agn 6.00 -1.40 -0.50 -1.0 " ); |
|---|
| 485 |
|
|---|
| 486 |
|
|---|
| 487 |
|
|---|
| 488 |
|
|---|
| 489 |
|
|---|
| 490 |
|
|---|
| 491 |
|
|---|
| 492 |
|
|---|
| 493 |
|
|---|
| 494 |
|
|---|
| 495 |
|
|---|
| 496 |
|
|---|
| 497 |
|
|---|
| 498 |
|
|---|
| 499 |
|
|---|
| 500 |
|
|---|
| 501 |
|
|---|
| 502 |
|
|---|
| 503 |
|
|---|
| 504 |
|
|---|
| 505 |
|
|---|
| 506 |
n = cdRead( "background z=0 " ); |
|---|
| 507 |
|
|---|
| 508 |
sprintf(chLine,"stop column density %f ", par1[mod]); |
|---|
| 509 |
n = cdRead( chLine ); |
|---|
| 510 |
|
|---|
| 511 |
n = cdRead( "failures 3 " ); |
|---|
| 512 |
|
|---|
| 513 |
|
|---|
| 514 |
# if 0 |
|---|
| 515 |
n = cdRead( "metals 10 " ); |
|---|
| 516 |
n = cdRead( "element nitrogen scale 10 " ); |
|---|
| 517 |
n = cdRead( "element helium scale 1.66 " ); |
|---|
| 518 |
n = cdRead( "metals 20 " ); |
|---|
| 519 |
n = cdRead( |
|---|