#include <math.h>
#include "./numerics.h"
Go to the source code of this file.
◆ CBRT()
Definition at line 5 of file cubic.cpp.
10 ret = fabs(pow(fabs(Z),1./3.));
13 ret = - fabs(pow(fabs(Z),1./3.));
◆ cubic()
Definition at line 21 of file cubic.cpp.
40 P = pow((c/a *third - pow(W,2)),3);
41 Q = -.5 *(2.0*pow(W,3)-(c*W-d)/a );
46 phi = acos(
min(1.0,
max(-1.0,Q/sqrt(-P))));
47 P = 2.0*pow((-P),(5.e-1*third));
48 for(
int i=0;i<3;i++) U[i] = P*cos((phi+2*((
IssmDouble)i)*pi)*third)-W;
49 x[0] =
min(U[0],
min(U[1], U[2]));
51 x[2] =
max(U[0],
max(U[1], U[2]));
57 x[0] =
CBRT(Q+delta)+
CBRT(Q-delta)-W;
67 x[0] = -P - sqrt(delta);
68 x[1] = -P + sqrt(delta);
87 for(
int i=0;i<*num;i++){
88 x[i] = x[i] - (d+x[i]*(c+x[i]*(b+x[i]*a)))/(c+x[i]*(2.0*b+x[i]*3.0*a));