-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathutoprim_1dvsq2fix1.c
633 lines (440 loc) · 18.6 KB
/
utoprim_1dvsq2fix1.c
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
//Modified by Alexander Tchekhovskoy: MPI+3D
/***********************************************************************************
Copyright 2006 Charles F. Gammie, Jonathan C. McKinney, Scott C. Noble,
Gabor Toth, and Luca Del Zanna
HARM version 1.0 (released May 1, 2006)
This file is part of HARM. HARM is a program that solves hyperbolic
partial differential equations in conservative form using high-resolution
shock-capturing techniques. This version of HARM has been configured to
solve the relativistic magnetohydrodynamic equations of motion on a
stationary black hole spacetime in Kerr-Schild coordinates to evolve
an accretion disk model.
You are morally obligated to cite the following two papers in his/her
scientific literature that results from use of any part of HARM:
[1] Gammie, C. F., McKinney, J. C., \& Toth, G.\ 2003,
Astrophysical Journal, 589, 444.
[2] Noble, S. C., Gammie, C. F., McKinney, J. C., \& Del Zanna, L. \ 2006,
Astrophysical Journal, 641, 626.
Further, we strongly encourage you to obtain the latest version of
HARM directly from our distribution website:
http://rainman.astro.uiuc.edu/codelib/
HARM 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 of the License, or
(at your option) any later version.
HARM 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 HARM; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
***********************************************************************************/
/*************************************************************************************/
/*************************************************************************************/
/*************************************************************************************
utoprim_1dvsq2fix1.c:
---------------
-- uses eq. (27) of Noble et al. or the "momentum equation" and ignores
the energy equation (29) in order to use the additional EOS;
Uses the 1D^*_{v^2} method:
-- solves for one independent variable (v^2, or vsq) via a 1D
Newton-Raphson method
-- like the 1D_{v^2} method, except can be used (in principle)
with a general equation of state. The main difference is how
it calculates the intermediary value of W: by performing a
nested set of Newton-Rapshon iterations to get the best W value
for the current v^2 value.
-- Currently returns with an error state (>0) if a negative rest-mass
density or internal energy density is calculated. You may want
to change this aspect of the code so that it still calculates the
velocity and so that you can floor the densities. If you want to
change this aspect of the code please comment out the "return(retval)"
statement after "retval = 5;" statement in Utoprim_new_body();
******************************************************************************/
#include "u2p_util.h"
#define NEWT_DIM 1
#define LTRACE 0
/* these variables need to be shared between the functions
Utoprim_1D, residual, and utsq */
static FTYPE Bsq,QdotBsq,Qtsq,Qdotn,D, K_atm ;
#pragma omp threadprivate(Bsq,QdotBsq,Qtsq,Qdotn,D, K_atm)
// Declarations:
static FTYPE vsq_calc(FTYPE W);
static FTYPE W_of_vsq(FTYPE vsq, FTYPE *p, FTYPE *rho, FTYPE *u);
static FTYPE u_of_p(FTYPE p);
static FTYPE pressure_of_rho(FTYPE rho0);
static FTYPE dWdvsq_calc(FTYPE vsq, FTYPE rho, FTYPE p);
static int Utoprim_new_body(FTYPE U[], FTYPE gcov[NDIM][NDIM], FTYPE gcon[NDIM][NDIM], FTYPE gdet, FTYPE prim[]);
static void func_1d_gnr(FTYPE x[], FTYPE dx[], FTYPE resid[], FTYPE jac[][NEWT_DIM], FTYPE *f, FTYPE *df, int n);
static int general_newton_raphson( FTYPE x[], int n, void (*funcd) (FTYPE [], FTYPE [], FTYPE [], FTYPE [][NEWT_DIM], FTYPE *, FTYPE *, int) );
/**********************************************************************/
/******************************************************************
Utoprim_1dvsq2fix1():
-- Driver for new prim. var. solver. The driver just translates
between the two sets of definitions for U and P. The user may
wish to alter the translation as they see fit.
It assumes that on input/output:
/ rho u^t \
U = | T^t_t + rho u^t | sqrt(-det(g_{\mu\nu}))
| T^t_\mu |
\ B^i /
/ rho \
P = | uu |
| \tilde{u}^i |
\ B^i /
ala HARM.
Arguments:
U[NPR] = conserved variables (current values on input/output);
gcov[NDIM][NDIM] = covariant form of the metric ;
gcon[NDIM][NDIM] = contravariant form of the metric ;
gdet = sqrt( - determinant of the metric) ;
prim[NPR] = primitive variables (guess on input, calculated values on
output if there are no problems);
-- NOTE: for those using this routine for special relativistic MHD and are
unfamiliar with metrics, merely set
gcov = gcon = diag(-1,1,1,1) and gdet = 1. ;
-- different from Utoprim_1dvsq2() in that it also assumes an EOS of
P = K rho^\Gamma or P = K rho
depending on the value of G_ATM flag in u2p_defs.h
******************************************************************/
int Utoprim_1dvsq2fix1(FTYPE U[NPR], FTYPE gcov[NDIM][NDIM], FTYPE gcon[NDIM][NDIM],
FTYPE gdet, FTYPE prim[NPR], FTYPE K )
{
FTYPE U_tmp[NPR], prim_tmp[NPR];
int i, j, ret;
FTYPE alpha;
/* First update the primitive B-fields */
for(i = BCON1; i <= BCON3; i++) prim[i] = U[i] / gdet ;
if( U[0] <= 0. ) {
return(-100);
}
K_atm = K ;
/* Set the geometry variables: */
alpha = 1.0/sqrt(-gcon[0][0]);
/* Transform the CONSERVED variables into the new system */
U_tmp[RHO] = alpha * U[RHO] / gdet;
U_tmp[UU] = alpha * (U[UU] - U[RHO]) / gdet ;
for( i = UTCON1; i <= UTCON3; i++ ) {
U_tmp[i] = alpha * U[i] / gdet ;
}
for( i = BCON1; i <= BCON3; i++ ) {
U_tmp[i] = alpha * U[i] / gdet ;
}
/* Transform the PRIMITIVE variables into the new system */
for( i = 0; i < BCON1; i++ ) {
prim_tmp[i] = prim[i];
}
for( i = BCON1; i <= BCON3; i++ ) {
prim_tmp[i] = alpha*prim[i];
}
ret = Utoprim_new_body(U_tmp, gcov, gcon, gdet, prim_tmp);
/* Transform new primitive variables back if there was no problem : */
if( ret == 0 ) {
for( i = 0; i < BCON1; i++ ) {
prim[i] = prim_tmp[i];
}
}
#if( DOKTOT )
prim[KTOT] = U[KTOT]/U[RHO];
#endif
return( ret ) ;
}
/**********************************************************************/
/**********************************************************************************
Utoprim_new_body():
-- Attempt an inversion from U to prim using the initial guess prim.
-- This is the main routine that calculates auxiliary quantities for the
Newton-Raphson routine.
-- assumes that
/ rho gamma \
U = | alpha T^t_\mu |
\ alpha B^i /
/ rho \
prim = | uu |
| \tilde{u}^i |
\ alpha B^i /
return: (i*100 + j) where
i = 0 -> Newton-Raphson solver either was not called (yet or not used)
or returned successfully;
1 -> Newton-Raphson solver did not converge to a solution with the
given tolerances;
2 -> Newton-Raphson procedure encountered a numerical divergence
(occurrence of "nan" or "+/-inf" ;
j = 0 -> success
1 -> failure: some sort of failure in Newton-Raphson;
2 -> failure: utsq<0 w/ initial p[] guess;
3 -> failure: W<0 or W>W_TOO_BIG
4 -> failure: v^2 > 1
5 -> failure: rho,uu <= 0 ;
**********************************************************************************/
static int Utoprim_new_body(FTYPE U[NPR], FTYPE gcov[NDIM][NDIM],
FTYPE gcon[NDIM][NDIM], FTYPE gdet, FTYPE prim[NPR])
{
FTYPE x_1d[1];
FTYPE QdotB,Bcon[NDIM],Bcov[NDIM],Qcov[NDIM],Qcon[NDIM],ncov[NDIM],ncon[NDIM],Qsq,Qtcon[NDIM];
FTYPE rho0,u,p,w,gammasq,gamma,gtmp,W_last,W,utsq,vsq,tmpdiff,aco, bco, cco, pevar, agame, the;
FTYPE alpha, ucovt, utsqp1;
FTYPE dummy;
int i,j, retval, retval2, i_increase ;
// Assume ok initially:
retval = 0 ;
for(i = BCON1; i <= BCON3; i++) prim[i] = U[i] ;
// Calculate various scalars (Q.B, Q^2, etc) from the conserved variables:
Bcon[0] = 0. ;
for(i=1;i<4;i++) Bcon[i] = U[BCON1+i-1] ;
lower_g(Bcon,gcov,Bcov) ;
for(i=0;i<4;i++) Qcov[i] = U[QCOV0+i] ;
raise_g(Qcov,gcon,Qcon) ;
Bsq = 0. ;
for(i=1;i<4;i++) Bsq += Bcon[i]*Bcov[i] ;
QdotB = 0. ;
for(i=0;i<4;i++) QdotB += Qcov[i]*Bcon[i] ;
QdotBsq = QdotB*QdotB ;
ncov_calc(gcon,ncov) ;
raise_g(ncov,gcon,ncon);
Qdotn = Qcon[0]*ncov[0] ;
Qsq = 0. ;
for(i=0;i<4;i++) Qsq += Qcov[i]*Qcon[i] ;
Qtsq = Qsq + Qdotn*Qdotn ;
D = U[RHO] ;
/* calculate W from last timestep and use for guess */
utsq = 0. ;
for(i=1;i<4;i++)
for(j=1;j<4;j++) utsq += gcov[i][j]*prim[UTCON1+i-1]*prim[UTCON1+j-1] ;
if( (utsq < 0.) && (fabs(utsq) < 1.0e-13) ) {
utsq = fabs(utsq);
}
if(utsq < 0. || utsq > UTSQ_TOO_BIG) {
retval = 2;
return(retval) ;
}
gammasq = 1. + utsq ;
gamma = sqrt(gammasq);
// Always calculate rho from D and gamma so that using D in EOS remains consistent
// i.e. you don't get positive values for dP/d(vsq) .
rho0 = D / gamma ;
u = prim[UU] ;
p = pressure_rho0_u(rho0,u) ;
w = rho0 + u + p ;
W_last = w*gammasq ;
// Initialize independent variables for Newton-Raphson:
x_1d[0] = 1. - 1. / gammasq ;
// Find vsq via Newton-Raphson:
retval = general_newton_raphson( x_1d, 1, func_1d_gnr) ;
/* Problem with solver, so return denoting error before doing anything further */
if( retval != 0 ) {
retval = retval*100+1;
return(retval);
}
// Calculate v^2 :
vsq = x_1d[0];
if( (vsq >= 1.) || (vsq < 0.) ) {
retval = 4;
return(retval) ;
}
// Find W from this vsq:
W = W_of_vsq(vsq, &p, &rho0, &u);
// Recover the primitive variables from the scalars and conserved variables:
gtmp = sqrt(1. - vsq);
gamma = 1./gtmp ;
w = W * (1. - vsq) ;
// User may want to handle this case differently, e.g. do NOT return upon
// a negative rho/u, calculate v^i so that rho/u can be floored by other routine:
if( (rho0 <= 0.) || (u <= 0.) ) {
retval = 5;
return(retval) ;
}
prim[RHO] = rho0 ;
prim[UU] = u ;
for(i=1;i<4;i++) Qtcon[i] = Qcon[i] + ncon[i] * Qdotn;
for(i=1;i<4;i++) prim[UTCON1+i-1] = gamma/(W+Bsq) * ( Qtcon[i] + QdotB*Bcon[i]/W ) ;
/* set field components */
for(i = BCON1; i <= BCON3; i++) prim[i] = U[i] ;
/* done! */
return(retval) ;
}
/**********************************************************************/
/********************************************************************
validate_x():
-- makes sure that x[0] is physical, based upon its definition;
-- "corrects" it if it is not physical;
*********************************************************************/
static void validate_x(FTYPE x[1], FTYPE x0[1] )
{
FTYPE small = 1.e-10;
x[0] = (x[0] >= 1.0) ? ( 0.5*(x0[0] + 1.) ) : x[0];
x[0] = (x[0] < -small) ? ( 0.5*x0[0] ) : x[0];
x[0] = fabs(x[0]);
return;
}
/**********************************************************************/
/************************************************************
general_newton_raphson():
-- performs Newton-Rapshon method on an arbitrary system.
-- inspired in part by Num. Rec.'s routine newt();
Arguements:
-- x[] = set of independent variables to solve for;
-- n = number of independent variables and residuals;
-- funcd = name of function that calculates residuals, etc.;
*****************************************************************/
static int general_newton_raphson( FTYPE x[], int n,
void (*funcd) (FTYPE [], FTYPE [], FTYPE [],
FTYPE [][NEWT_DIM], FTYPE *,
FTYPE *, int) )
{
FTYPE f, df, dx[NEWT_DIM], x_old[NEWT_DIM], resid[NEWT_DIM],
jac[NEWT_DIM][NEWT_DIM];
FTYPE errx, x_orig[NEWT_DIM];
int n_iter, id, jd, i_extra, doing_extra;
FTYPE dW,dvsq,vsq_old,vsq,W,W_old, rho,p,u;
int keep_iterating;
// Initialize various parameters and variables:
errx = 1. ;
df = f = 1.;
i_extra = doing_extra = 0;
for( id = 0; id < n ; id++) x_old[id] = x_orig[id] = x[id] ;
vsq_old = vsq = W = W_old = 0.;
n_iter = 0;
/* Start the Newton-Raphson iterations : */
keep_iterating = 1;
while( keep_iterating ) {
(*funcd) (x, dx, resid, jac, &f, &df, n); /* returns with new dx, f, df */
/* Save old values before calculating the new: */
errx = 0.;
for( id = 0; id < n ; id++) {
x_old[id] = x[id] ;
}
for( id = 0; id < n ; id++) {
x[id] += dx[id] ;
}
/****************************************/
/* Make sure that the new x[] is physical : */
/****************************************/
// METHOD specific
validate_x( x, x_old );
/****************************************/
/* Calculate the convergence criterion */
/****************************************/
/* For the new criterion, always look at error in "W" : */
// METHOD specific
W_old = W;
W = W_of_vsq( x[0], &p, &rho, &u);
errx = (W==0.) ? fabs(W-W_old) : fabs((W-W_old)/W);
errx += (x[0]==0.) ? fabs(x[0]-x_old[0]) : fabs((x[0]-x_old[0])/x[0]);
// fprintf(stderr,"NR: %26.20e %26.20e %26.20e %26.20e %26.20e \n", x_old[0], x[0], resid[0], jac[0][0], errx);
// fflush(stderr);
/*****************************************************************************/
/* If we've reached the tolerance level, then just do a few extra iterations */
/* before stopping */
/*****************************************************************************/
if( (fabs(errx) <= NEWT_TOL) && (doing_extra == 0) && (EXTRA_NEWT_ITER > 0) ) {
doing_extra = 1;
}
if( doing_extra == 1 ) i_extra++ ;
// See if we've done the extra iterations, or have done too many iterations:
if( ((fabs(errx) <= NEWT_TOL)&&(doing_extra == 0))
|| (i_extra > EXTRA_NEWT_ITER) || (n_iter >= (MAX_NEWT_ITER-1)) ) {
keep_iterating = 0;
}
n_iter++;
} // END of while(keep_iterating)
/* Check for bad untrapped divergences : */
if( (finite(f)==0) || (finite(df)==0) ) {
return(2);
}
// Return in different ways depending on whether a solution was found:
if( fabs(errx) > MIN_NEWT_TOL){
#if(LTRACE)
fprintf(stderr," totalcount = %d 0 %d %26.20e \n",n_iter,i_extra,errx); fflush(stderr);
#endif
return(1);
}
if( (fabs(errx) <= MIN_NEWT_TOL) && (fabs(errx) > NEWT_TOL) ){
//fprintf(stderr," totalcount = %d 1 %d %26.20e \n",n_iter,i_extra,errx); fflush(stderr);
return(0);
}
if( fabs(errx) <= NEWT_TOL ){
//fprintf(stderr," totalcount = %d 2 %d %26.20e \n",n_iter,i_extra,errx); fflush(stderr);
return(0);
}
return(0);
}
/********************************************************************************/
/**********************************************************************
func_1d_gnr():
-- calculates the residuals, and Newton step for general_newton_raphson();
-- for this method, x=vsq here;
Arguments:
x = current value of independent var's (on input & output);
dx = Newton-Raphson step (on output);
resid = residuals based on x (on output);
jac = Jacobian matrix based on x (on output);
f = resid.resid/2 (on output)
df = -2*f; (on output)
n = dimension of x[];
*********************************************************************************/
static void func_1d_gnr(FTYPE x[], FTYPE dx[], FTYPE resid[],
FTYPE jac[][NEWT_DIM], FTYPE *f, FTYPE *df, int n)
{
FTYPE vsq,W,W0,Wsq,W3,dWdvsq , dpdrho, fact_tmp, rho, p, u ;
int retval, iters;
vsq = x[0];
// Calculate best value for W given current guess for vsq:
W = W_of_vsq(vsq, &p, &rho, &u);
Wsq = W*W;
W3 = W*Wsq;
// Doing this assuming P = (G-1) u :
dWdvsq = dWdvsq_calc(vsq, rho, p);
fact_tmp = (Bsq + W) ;
resid[0] = Qtsq - vsq * fact_tmp * fact_tmp + QdotBsq * ( Bsq + 2.*W ) / Wsq ;
jac[0][0] = -fact_tmp * ( fact_tmp + 2. * dWdvsq * ( vsq + QdotBsq/W3 ) ) ;
dx[0] = -resid[0]/jac[0][0];
*f = 0.5*resid[0]*resid[0];
*df = -2. * (*f);
}
/**********************************************************************
**********************************************************************
The following routines specify the equation of state. All routines
above here should be indpendent of EOS. If the user wishes
to use another equation of state, the below functions must be replaced
by equivalent routines based upon the new EOS.
**********************************************************************
**********************************************************************/
/*
pressure as a function of rho0 and w = rho0 + u + p
this is used by primtoU and Utoprim_1D
*/
static FTYPE pressure_of_rho(FTYPE rho0)
{
return( K_atm * pow( rho0, G_ATM ) );
}
/*
internal energy density as a function of the pressure
*/
static FTYPE u_of_p(FTYPE p)
{
return( p / (GAMMA - 1.) ) ;
}
/*
W as a function of v^2
*/
static FTYPE W_of_vsq(FTYPE vsq, FTYPE *p, FTYPE *rho, FTYPE *u)
{
FTYPE gtmp;
gtmp = (1. - vsq);
*rho = D * sqrt(gtmp);
*p = pressure_of_rho(*rho);
*u = u_of_p(*p);
return( (*rho + *u + *p ) / gtmp );
}
/*
dW/dvsq as a function of v^2, rho, p
*/
static FTYPE dWdvsq_calc(FTYPE vsq, FTYPE rho, FTYPE p)
{
return( ( GAMMA*(2.-G_ATM)*p + (GAMMA-1.)*rho ) / ( 2.*(GAMMA-1.)*(1.-vsq)*(1.-vsq) ) ) ;
}
/******************************************************************************
END OF UTOPRIM_1DVSQ2FIX.C
******************************************************************************/