1e4dd521cSBarry Smith /* 22e698f8bSDebojyoti Ghosh Code for time stepping with the Runge-Kutta method 3f68a32c8SEmil Constantinescu 4f68a32c8SEmil Constantinescu Notes: 5f68a32c8SEmil Constantinescu The general system is written as 6f68a32c8SEmil Constantinescu 72e698f8bSDebojyoti Ghosh Udot = F(t,U) 8f68a32c8SEmil Constantinescu 9e4dd521cSBarry Smith */ 10b45d2f2cSJed Brown #include <petsc-private/tsimpl.h> /*I "petscts.h" I*/ 11f68a32c8SEmil Constantinescu #include <petscdm.h> 12f68a32c8SEmil Constantinescu 13484bcdc7SDebojyoti Ghosh static TSRKType TSRKDefault = TSRK3BS; 14f68a32c8SEmil Constantinescu static PetscBool TSRKRegisterAllCalled; 15f68a32c8SEmil Constantinescu static PetscBool TSRKPackageInitialized; 16f68a32c8SEmil Constantinescu static PetscInt explicit_stage_time_id; 17f68a32c8SEmil Constantinescu 18f68a32c8SEmil Constantinescu typedef struct _RKTableau *RKTableau; 19f68a32c8SEmil Constantinescu struct _RKTableau { 20f68a32c8SEmil Constantinescu char *name; 21d760c35bSDebojyoti Ghosh PetscInt order; /* Classical approximation order of the method i */ 22f68a32c8SEmil Constantinescu PetscInt s; /* Number of stages */ 23d760c35bSDebojyoti Ghosh PetscBool FSAL; /* flag to indicate if tableau is FSAL */ 24f68a32c8SEmil Constantinescu PetscInt pinterp; /* Interpolation order */ 25f68a32c8SEmil Constantinescu PetscReal *A,*b,*c; /* Tableau */ 26f68a32c8SEmil Constantinescu PetscReal *bembed; /* Embedded formula of order one less (order-1) */ 27f68a32c8SEmil Constantinescu PetscReal *binterp; /* Dense output formula */ 28f68a32c8SEmil Constantinescu PetscReal ccfl; /* Placeholder for CFL coefficient relative to forward Euler */ 29f68a32c8SEmil Constantinescu }; 30f68a32c8SEmil Constantinescu typedef struct _RKTableauLink *RKTableauLink; 31f68a32c8SEmil Constantinescu struct _RKTableauLink { 32f68a32c8SEmil Constantinescu struct _RKTableau tab; 33f68a32c8SEmil Constantinescu RKTableauLink next; 34f68a32c8SEmil Constantinescu }; 35f68a32c8SEmil Constantinescu static RKTableauLink RKTableauList; 36e4dd521cSBarry Smith 37e4dd521cSBarry Smith typedef struct { 38f68a32c8SEmil Constantinescu RKTableau tableau; 39f68a32c8SEmil Constantinescu Vec *Y; /* States computed during the step */ 40f68a32c8SEmil Constantinescu Vec *YdotRHS; /* Function evaluations for the non-stiff part */ 41ad8e2604SHong Zhang Vec *VecDeltaLam; /* Increment of the adjoint sensitivity w.r.t IC at stage*/ 42ad8e2604SHong Zhang Vec *VecDeltaMu; /* Increment of the adjoint sensitivity w.r.t P at stage*/ 43b18ea86cSHong Zhang Vec *VecSensiTemp; /* Vector to be timed with Jacobian transpose*/ 44f68a32c8SEmil Constantinescu PetscScalar *work; /* Scalar work */ 45f68a32c8SEmil Constantinescu PetscReal stage_time; 46f68a32c8SEmil Constantinescu TSStepStatus status; 475f70b478SJed Brown } TS_RK; 48e4dd521cSBarry Smith 49f68a32c8SEmil Constantinescu /*MC 50f68a32c8SEmil Constantinescu TSRK1 - First order forward Euler scheme. 51262ff7bbSBarry Smith 52f68a32c8SEmil Constantinescu This method has one stage. 53f68a32c8SEmil Constantinescu 54f68a32c8SEmil Constantinescu Level: advanced 55f68a32c8SEmil Constantinescu 56f68a32c8SEmil Constantinescu .seealso: TSRK 57f68a32c8SEmil Constantinescu M*/ 58f68a32c8SEmil Constantinescu /*MC 592109b73fSDebojyoti Ghosh TSRK2A - Second order RK scheme. 60f68a32c8SEmil Constantinescu 61f68a32c8SEmil Constantinescu This method has two stages. 62f68a32c8SEmil Constantinescu 63f68a32c8SEmil Constantinescu Level: advanced 64f68a32c8SEmil Constantinescu 65f68a32c8SEmil Constantinescu .seealso: TSRK 66f68a32c8SEmil Constantinescu M*/ 67f68a32c8SEmil Constantinescu /*MC 68f68a32c8SEmil Constantinescu TSRK3 - Third order RK scheme. 69f68a32c8SEmil Constantinescu 70f68a32c8SEmil Constantinescu This method has three stages. 71f68a32c8SEmil Constantinescu 72f68a32c8SEmil Constantinescu Level: advanced 73f68a32c8SEmil Constantinescu 74f68a32c8SEmil Constantinescu .seealso: TSRK 75f68a32c8SEmil Constantinescu M*/ 76f68a32c8SEmil Constantinescu /*MC 772109b73fSDebojyoti Ghosh TSRK3BS - Third order RK scheme of Bogacki-Shampine with 2nd order embedded method. 782109b73fSDebojyoti Ghosh 792109b73fSDebojyoti Ghosh This method has four stages. 802109b73fSDebojyoti Ghosh 812109b73fSDebojyoti Ghosh Level: advanced 822109b73fSDebojyoti Ghosh 832109b73fSDebojyoti Ghosh .seealso: TSRK 842109b73fSDebojyoti Ghosh M*/ 852109b73fSDebojyoti Ghosh /*MC 86f68a32c8SEmil Constantinescu TSRK4 - Fourth order RK scheme. 87f68a32c8SEmil Constantinescu 882e698f8bSDebojyoti Ghosh This is the classical Runge-Kutta method with four stages. 89f68a32c8SEmil Constantinescu 90f68a32c8SEmil Constantinescu Level: advanced 91f68a32c8SEmil Constantinescu 92f68a32c8SEmil Constantinescu .seealso: TSRK 93f68a32c8SEmil Constantinescu M*/ 94f68a32c8SEmil Constantinescu /*MC 952e698f8bSDebojyoti Ghosh TSRK5F - Fifth order Fehlberg RK scheme with a 4th order embedded method. 96f68a32c8SEmil Constantinescu 97f68a32c8SEmil Constantinescu This method has six stages. 98f68a32c8SEmil Constantinescu 99f68a32c8SEmil Constantinescu Level: advanced 100f68a32c8SEmil Constantinescu 101f68a32c8SEmil Constantinescu .seealso: TSRK 102f68a32c8SEmil Constantinescu M*/ 1032109b73fSDebojyoti Ghosh /*MC 1042e698f8bSDebojyoti Ghosh TSRK5DP - Fifth order Dormand-Prince RK scheme with the 4th order embedded method. 1052109b73fSDebojyoti Ghosh 1062109b73fSDebojyoti Ghosh This method has seven stages. 1072109b73fSDebojyoti Ghosh 1082109b73fSDebojyoti Ghosh Level: advanced 1092109b73fSDebojyoti Ghosh 1102109b73fSDebojyoti Ghosh .seealso: TSRK 1112109b73fSDebojyoti Ghosh M*/ 112262ff7bbSBarry Smith 113262ff7bbSBarry Smith #undef __FUNCT__ 114f68a32c8SEmil Constantinescu #define __FUNCT__ "TSRKRegisterAll" 115f68a32c8SEmil Constantinescu /*@C 116f68a32c8SEmil Constantinescu TSRKRegisterAll - Registers all of the Runge-Kutta explicit methods in TSRK 117262ff7bbSBarry Smith 118f68a32c8SEmil Constantinescu Not Collective, but should be called by all processes which will need the schemes to be registered 119262ff7bbSBarry Smith 120f68a32c8SEmil Constantinescu Level: advanced 121262ff7bbSBarry Smith 122f68a32c8SEmil Constantinescu .keywords: TS, TSRK, register, all 123262ff7bbSBarry Smith 124f68a32c8SEmil Constantinescu .seealso: TSRKRegisterDestroy() 125262ff7bbSBarry Smith @*/ 126f68a32c8SEmil Constantinescu PetscErrorCode TSRKRegisterAll(void) 127262ff7bbSBarry Smith { 1284ac538c5SBarry Smith PetscErrorCode ierr; 129262ff7bbSBarry Smith 130262ff7bbSBarry Smith PetscFunctionBegin; 131f68a32c8SEmil Constantinescu if (TSRKRegisterAllCalled) PetscFunctionReturn(0); 132f68a32c8SEmil Constantinescu TSRKRegisterAllCalled = PETSC_TRUE; 133e4dd521cSBarry Smith 134e4dd521cSBarry Smith { 135f68a32c8SEmil Constantinescu const PetscReal 136f68a32c8SEmil Constantinescu A[1][1] = {{0.0}}, 137f68a32c8SEmil Constantinescu b[1] = {1.0}; 138f68a32c8SEmil Constantinescu ierr = TSRKRegister(TSRK1FE,1,1,&A[0][0],b,NULL,NULL,1,b);CHKERRQ(ierr); 139e4dd521cSBarry Smith } 140db046809SBarry Smith { 141f68a32c8SEmil Constantinescu const PetscReal 142f68a32c8SEmil Constantinescu A[2][2] = {{0.0,0.0}, 143f68a32c8SEmil Constantinescu {1.0,0.0}}, 144f68a32c8SEmil Constantinescu b[2] = {0.5,0.5}, 145f68a32c8SEmil Constantinescu bembed[2] = {1.0,0}; 146fdefd5e5SDebojyoti Ghosh ierr = TSRKRegister(TSRK2A,2,2,&A[0][0],b,NULL,bembed,2,b);CHKERRQ(ierr); 147db046809SBarry Smith } 148f68a32c8SEmil Constantinescu { 149f68a32c8SEmil Constantinescu const PetscReal 150f68a32c8SEmil Constantinescu A[3][3] = {{0,0,0}, 151f68a32c8SEmil Constantinescu {2.0/3.0,0,0}, 152f68a32c8SEmil Constantinescu {-1.0/3.0,1.0,0}}, 153f68a32c8SEmil Constantinescu b[3] = {0.25,0.5,0.25}; 154fdefd5e5SDebojyoti Ghosh ierr = TSRKRegister(TSRK3,3,3,&A[0][0],b,NULL,NULL,3,b);CHKERRQ(ierr); 155fdefd5e5SDebojyoti Ghosh } 156fdefd5e5SDebojyoti Ghosh { 157fdefd5e5SDebojyoti Ghosh const PetscReal 158fdefd5e5SDebojyoti Ghosh A[4][4] = {{0,0,0,0}, 159fdefd5e5SDebojyoti Ghosh {1.0/2.0,0,0,0}, 160fdefd5e5SDebojyoti Ghosh {0,3.0/4.0,0,0}, 161fdefd5e5SDebojyoti Ghosh {2.0/9.0,1.0/3.0,4.0/9.0,0}}, 162fdefd5e5SDebojyoti Ghosh b[4] = {2.0/9.0,1.0/3.0,4.0/9.0,0}, 163fdefd5e5SDebojyoti Ghosh bembed[4] = {7.0/24.0,1.0/4.0,1.0/3.0,1.0/8.0}; 164fdefd5e5SDebojyoti Ghosh ierr = TSRKRegister(TSRK3BS,3,4,&A[0][0],b,NULL,bembed,3,b);CHKERRQ(ierr); 165db046809SBarry Smith } 166f68a32c8SEmil Constantinescu { 167f68a32c8SEmil Constantinescu const PetscReal 168f68a32c8SEmil Constantinescu A[4][4] = {{0,0,0,0}, 169f68a32c8SEmil Constantinescu {0.5,0,0,0}, 170f68a32c8SEmil Constantinescu {0,0.5,0,0}, 171f68a32c8SEmil Constantinescu {0,0,1.0,0}}, 172f68a32c8SEmil Constantinescu b[4] = {1.0/6.0,1.0/3.0,1.0/3.0,1.0/6.0}; 173fdefd5e5SDebojyoti Ghosh ierr = TSRKRegister(TSRK4,4,4,&A[0][0],b,NULL,NULL,4,b);CHKERRQ(ierr); 174db046809SBarry Smith } 175f68a32c8SEmil Constantinescu { 176f68a32c8SEmil Constantinescu const PetscReal 177f68a32c8SEmil Constantinescu A[6][6] = {{0,0,0,0,0,0}, 178f68a32c8SEmil Constantinescu {0.25,0,0,0,0,0}, 179f68a32c8SEmil Constantinescu {3.0/32.0,9.0/32.0,0,0,0,0}, 180f68a32c8SEmil Constantinescu {1932.0/2197.0,-7200.0/2197.0,7296.0/2197.0,0,0,0}, 181f68a32c8SEmil Constantinescu {439.0/216.0,-8.0,3680.0/513.0,-845.0/4104.0,0,0}, 182f68a32c8SEmil Constantinescu {-8.0/27.0,2.0,-3544.0/2565.0,1859.0/4104.0,-11.0/40.0,0}}, 183f68a32c8SEmil Constantinescu b[6] = {16.0/135.0,0,6656.0/12825.0,28561.0/56430.0,-9.0/50.0,2.0/55.0}, 184f68a32c8SEmil Constantinescu bembed[6] = {25.0/216.0,0,1408.0/2565.0,2197.0/4104.0,-1.0/5.0,0}; 185fdefd5e5SDebojyoti Ghosh ierr = TSRKRegister(TSRK5F,5,6,&A[0][0],b,NULL,bembed,5,b);CHKERRQ(ierr); 186fdefd5e5SDebojyoti Ghosh } 187fdefd5e5SDebojyoti Ghosh { 188fdefd5e5SDebojyoti Ghosh const PetscReal 189fdefd5e5SDebojyoti Ghosh A[7][7] = {{0,0,0,0,0,0,0}, 190fdefd5e5SDebojyoti Ghosh {1.0/5.0,0,0,0,0,0,0}, 191fdefd5e5SDebojyoti Ghosh {3.0/40.0,9.0/40.0,0,0,0,0,0}, 192fdefd5e5SDebojyoti Ghosh {44.0/45.0,-56.0/15.0,32.0/9.0,0,0,0,0}, 193fdefd5e5SDebojyoti Ghosh {19372.0/6561.0,-25360.0/2187.0,64448.0/6561.0,-212.0/729.0,0,0,0}, 194fdefd5e5SDebojyoti Ghosh {9017.0/3168.0,-355.0/33.0,46732.0/5247.0,49.0/176.0,-5103.0/18656.0,0,0}, 195fdefd5e5SDebojyoti Ghosh {35.0/384.0,0,500.0/1113.0,125.0/192.0,-2187.0/6784.0,11.0/84.0,0}}, 196fdefd5e5SDebojyoti Ghosh b[7] = {35.0/384.0,0,500.0/1113.0,125.0/192.0,-2187.0/6784.0,11.0/84.0,0}, 197fdefd5e5SDebojyoti Ghosh bembed[7] = {5179.0/57600.0,0,7571.0/16695.0,393.0/640.0,-92097.0/339200.0,187.0/2100.0,1.0/40.0}; 198fdefd5e5SDebojyoti Ghosh ierr = TSRKRegister(TSRK5DP,5,7,&A[0][0],b,NULL,bembed,5,b);CHKERRQ(ierr); 199f68a32c8SEmil Constantinescu } 200db046809SBarry Smith PetscFunctionReturn(0); 201db046809SBarry Smith } 202db046809SBarry Smith 203e4dd521cSBarry Smith #undef __FUNCT__ 204f68a32c8SEmil Constantinescu #define __FUNCT__ "TSRKRegisterDestroy" 205f68a32c8SEmil Constantinescu /*@C 206f68a32c8SEmil Constantinescu TSRKRegisterDestroy - Frees the list of schemes that were registered by TSRKRegister(). 207f68a32c8SEmil Constantinescu 208f68a32c8SEmil Constantinescu Not Collective 209f68a32c8SEmil Constantinescu 210f68a32c8SEmil Constantinescu Level: advanced 211f68a32c8SEmil Constantinescu 212f68a32c8SEmil Constantinescu .keywords: TSRK, register, destroy 213f68a32c8SEmil Constantinescu .seealso: TSRKRegister(), TSRKRegisterAll() 214f68a32c8SEmil Constantinescu @*/ 215f68a32c8SEmil Constantinescu PetscErrorCode TSRKRegisterDestroy(void) 216e4dd521cSBarry Smith { 217f68a32c8SEmil Constantinescu PetscErrorCode ierr; 218f68a32c8SEmil Constantinescu RKTableauLink link; 219f68a32c8SEmil Constantinescu 220f68a32c8SEmil Constantinescu PetscFunctionBegin; 221f68a32c8SEmil Constantinescu while ((link = RKTableauList)) { 222f68a32c8SEmil Constantinescu RKTableau t = &link->tab; 223f68a32c8SEmil Constantinescu RKTableauList = link->next; 224f68a32c8SEmil Constantinescu ierr = PetscFree3(t->A,t->b,t->c); CHKERRQ(ierr); 225f68a32c8SEmil Constantinescu ierr = PetscFree (t->bembed); CHKERRQ(ierr); 226f68a32c8SEmil Constantinescu ierr = PetscFree (t->binterp); CHKERRQ(ierr); 227f68a32c8SEmil Constantinescu ierr = PetscFree (t->name); CHKERRQ(ierr); 228f68a32c8SEmil Constantinescu ierr = PetscFree (link); CHKERRQ(ierr); 229f68a32c8SEmil Constantinescu } 230f68a32c8SEmil Constantinescu TSRKRegisterAllCalled = PETSC_FALSE; 231f68a32c8SEmil Constantinescu PetscFunctionReturn(0); 232f68a32c8SEmil Constantinescu } 233f68a32c8SEmil Constantinescu 234f68a32c8SEmil Constantinescu #undef __FUNCT__ 235f68a32c8SEmil Constantinescu #define __FUNCT__ "TSRKInitializePackage" 236f68a32c8SEmil Constantinescu /*@C 237f68a32c8SEmil Constantinescu TSRKInitializePackage - This function initializes everything in the TSRK package. It is called 238f68a32c8SEmil Constantinescu from PetscDLLibraryRegister() when using dynamic libraries, and on the first call to TSCreate_RK() 239f68a32c8SEmil Constantinescu when using static libraries. 240f68a32c8SEmil Constantinescu 241f68a32c8SEmil Constantinescu Level: developer 242f68a32c8SEmil Constantinescu 243f68a32c8SEmil Constantinescu .keywords: TS, TSRK, initialize, package 244f68a32c8SEmil Constantinescu .seealso: PetscInitialize() 245f68a32c8SEmil Constantinescu @*/ 246f68a32c8SEmil Constantinescu PetscErrorCode TSRKInitializePackage(void) 247f68a32c8SEmil Constantinescu { 248186e87acSLisandro Dalcin PetscErrorCode ierr; 249e4dd521cSBarry Smith 250e4dd521cSBarry Smith PetscFunctionBegin; 251f68a32c8SEmil Constantinescu if (TSRKPackageInitialized) PetscFunctionReturn(0); 252f68a32c8SEmil Constantinescu TSRKPackageInitialized = PETSC_TRUE; 253f68a32c8SEmil Constantinescu ierr = TSRKRegisterAll();CHKERRQ(ierr); 254f68a32c8SEmil Constantinescu ierr = PetscObjectComposedDataRegister(&explicit_stage_time_id);CHKERRQ(ierr); 255f68a32c8SEmil Constantinescu ierr = PetscRegisterFinalize(TSRKFinalizePackage);CHKERRQ(ierr); 256f68a32c8SEmil Constantinescu PetscFunctionReturn(0); 257f68a32c8SEmil Constantinescu } 258186e87acSLisandro Dalcin 259f68a32c8SEmil Constantinescu #undef __FUNCT__ 260f68a32c8SEmil Constantinescu #define __FUNCT__ "TSRKFinalizePackage" 261f68a32c8SEmil Constantinescu /*@C 262f68a32c8SEmil Constantinescu TSRKFinalizePackage - This function destroys everything in the TSRK package. It is 263f68a32c8SEmil Constantinescu called from PetscFinalize(). 264186e87acSLisandro Dalcin 265f68a32c8SEmil Constantinescu Level: developer 266f68a32c8SEmil Constantinescu 267f68a32c8SEmil Constantinescu .keywords: Petsc, destroy, package 268f68a32c8SEmil Constantinescu .seealso: PetscFinalize() 269f68a32c8SEmil Constantinescu @*/ 270f68a32c8SEmil Constantinescu PetscErrorCode TSRKFinalizePackage(void) 271f68a32c8SEmil Constantinescu { 272f68a32c8SEmil Constantinescu PetscErrorCode ierr; 273f68a32c8SEmil Constantinescu 274f68a32c8SEmil Constantinescu PetscFunctionBegin; 275f68a32c8SEmil Constantinescu TSRKPackageInitialized = PETSC_FALSE; 276f68a32c8SEmil Constantinescu ierr = TSRKRegisterDestroy();CHKERRQ(ierr); 277f68a32c8SEmil Constantinescu PetscFunctionReturn(0); 278f68a32c8SEmil Constantinescu } 279f68a32c8SEmil Constantinescu 280f68a32c8SEmil Constantinescu #undef __FUNCT__ 281f68a32c8SEmil Constantinescu #define __FUNCT__ "TSRKRegister" 282f68a32c8SEmil Constantinescu /*@C 283f68a32c8SEmil Constantinescu TSRKRegister - register an RK scheme by providing the entries in the Butcher tableau and optionally embedded approximations and interpolation 284f68a32c8SEmil Constantinescu 285f68a32c8SEmil Constantinescu Not Collective, but the same schemes should be registered on all processes on which they will be used 286f68a32c8SEmil Constantinescu 287f68a32c8SEmil Constantinescu Input Parameters: 288f68a32c8SEmil Constantinescu + name - identifier for method 289f68a32c8SEmil Constantinescu . order - approximation order of method 290f68a32c8SEmil Constantinescu . s - number of stages, this is the dimension of the matrices below 291f68a32c8SEmil Constantinescu . A - stage coefficients (dimension s*s, row-major) 292f68a32c8SEmil Constantinescu . b - step completion table (dimension s; NULL to use last row of A) 293f68a32c8SEmil Constantinescu . c - abscissa (dimension s; NULL to use row sums of A) 294f68a32c8SEmil Constantinescu . bembed - completion table for embedded method (dimension s; NULL if not available) 295f68a32c8SEmil Constantinescu . pinterp - Order of the interpolation scheme, equal to the number of columns of binterp 296f68a32c8SEmil Constantinescu - binterp - Coefficients of the interpolation formula (dimension s*pinterp; NULL to reuse binterpt) 297f68a32c8SEmil Constantinescu 298f68a32c8SEmil Constantinescu Notes: 299f68a32c8SEmil Constantinescu Several RK methods are provided, this function is only needed to create new methods. 300f68a32c8SEmil Constantinescu 301f68a32c8SEmil Constantinescu Level: advanced 302f68a32c8SEmil Constantinescu 303f68a32c8SEmil Constantinescu .keywords: TS, register 304f68a32c8SEmil Constantinescu 305f68a32c8SEmil Constantinescu .seealso: TSRK 306f68a32c8SEmil Constantinescu @*/ 307f68a32c8SEmil Constantinescu PetscErrorCode TSRKRegister(TSRKType name,PetscInt order,PetscInt s, 308f68a32c8SEmil Constantinescu const PetscReal A[],const PetscReal b[],const PetscReal c[], 309f68a32c8SEmil Constantinescu const PetscReal bembed[], 310f68a32c8SEmil Constantinescu PetscInt pinterp,const PetscReal binterp[]) 311f68a32c8SEmil Constantinescu { 312f68a32c8SEmil Constantinescu PetscErrorCode ierr; 313f68a32c8SEmil Constantinescu RKTableauLink link; 314f68a32c8SEmil Constantinescu RKTableau t; 315f68a32c8SEmil Constantinescu PetscInt i,j; 316f68a32c8SEmil Constantinescu 317f68a32c8SEmil Constantinescu PetscFunctionBegin; 318f68a32c8SEmil Constantinescu ierr = PetscMalloc(sizeof(*link),&link);CHKERRQ(ierr); 319f68a32c8SEmil Constantinescu ierr = PetscMemzero(link,sizeof(*link));CHKERRQ(ierr); 320f68a32c8SEmil Constantinescu t = &link->tab; 321f68a32c8SEmil Constantinescu ierr = PetscStrallocpy(name,&t->name);CHKERRQ(ierr); 322f68a32c8SEmil Constantinescu t->order = order; 323f68a32c8SEmil Constantinescu t->s = s; 324dcca6d9dSJed Brown ierr = PetscMalloc3(s*s,&t->A,s,&t->b,s,&t->c);CHKERRQ(ierr); 325f68a32c8SEmil Constantinescu ierr = PetscMemcpy(t->A,A,s*s*sizeof(A[0]));CHKERRQ(ierr); 326f68a32c8SEmil Constantinescu if (b) { ierr = PetscMemcpy(t->b,b,s*sizeof(b[0]));CHKERRQ(ierr); } 327f68a32c8SEmil Constantinescu else for (i=0; i<s; i++) t->b[i] = A[(s-1)*s+i]; 328f68a32c8SEmil Constantinescu if (c) { ierr = PetscMemcpy(t->c,c,s*sizeof(c[0]));CHKERRQ(ierr); } 329f68a32c8SEmil Constantinescu else for (i=0; i<s; i++) for (j=0,t->c[i]=0; j<s; j++) t->c[i] += A[i*s+j]; 330d760c35bSDebojyoti Ghosh t->FSAL = PETSC_TRUE; 331d760c35bSDebojyoti Ghosh for (i=0; i<s; i++) if (t->A[(s-1)*s+i] != t->b[i]) t->FSAL = PETSC_FALSE; 332f68a32c8SEmil Constantinescu if (bembed) { 333785e854fSJed Brown ierr = PetscMalloc1(s,&t->bembed);CHKERRQ(ierr); 334f68a32c8SEmil Constantinescu ierr = PetscMemcpy(t->bembed,bembed,s*sizeof(bembed[0]));CHKERRQ(ierr); 335f68a32c8SEmil Constantinescu } 336f68a32c8SEmil Constantinescu 337f68a32c8SEmil Constantinescu t->pinterp = pinterp; 338785e854fSJed Brown ierr = PetscMalloc1(s*pinterp,&t->binterp);CHKERRQ(ierr); 339f68a32c8SEmil Constantinescu ierr = PetscMemcpy(t->binterp,binterp,s*pinterp*sizeof(binterp[0]));CHKERRQ(ierr); 340f68a32c8SEmil Constantinescu link->next = RKTableauList; 341f68a32c8SEmil Constantinescu RKTableauList = link; 342f68a32c8SEmil Constantinescu PetscFunctionReturn(0); 343f68a32c8SEmil Constantinescu } 344f68a32c8SEmil Constantinescu 345f68a32c8SEmil Constantinescu #undef __FUNCT__ 346f68a32c8SEmil Constantinescu #define __FUNCT__ "TSEvaluateStep_RK" 347e4dd521cSBarry Smith /* 348f68a32c8SEmil Constantinescu The step completion formula is 349e4dd521cSBarry Smith 350f68a32c8SEmil Constantinescu x1 = x0 + h b^T YdotRHS 351f68a32c8SEmil Constantinescu 352f68a32c8SEmil Constantinescu This function can be called before or after ts->vec_sol has been updated. 353f68a32c8SEmil Constantinescu Suppose we have a completion formula (b) and an embedded formula (be) of different order. 354f68a32c8SEmil Constantinescu We can write 355f68a32c8SEmil Constantinescu 356f68a32c8SEmil Constantinescu x1e = x0 + h be^T YdotRHS 357f68a32c8SEmil Constantinescu = x1 - h b^T YdotRHS + h be^T YdotRHS 358f68a32c8SEmil Constantinescu = x1 + h (be - b)^T YdotRHS 359f68a32c8SEmil Constantinescu 360f68a32c8SEmil Constantinescu so we can evaluate the method with different order even after the step has been optimistically completed. 361e4dd521cSBarry Smith */ 362f68a32c8SEmil Constantinescu static PetscErrorCode TSEvaluateStep_RK(TS ts,PetscInt order,Vec X,PetscBool *done) 363f68a32c8SEmil Constantinescu { 364f68a32c8SEmil Constantinescu TS_RK *rk = (TS_RK*)ts->data; 365f68a32c8SEmil Constantinescu RKTableau tab = rk->tableau; 366f68a32c8SEmil Constantinescu PetscScalar *w = rk->work; 367f68a32c8SEmil Constantinescu PetscReal h; 368f68a32c8SEmil Constantinescu PetscInt s = tab->s,j; 369f68a32c8SEmil Constantinescu PetscErrorCode ierr; 370f68a32c8SEmil Constantinescu 371f68a32c8SEmil Constantinescu PetscFunctionBegin; 372f68a32c8SEmil Constantinescu switch (rk->status) { 373f68a32c8SEmil Constantinescu case TS_STEP_INCOMPLETE: 374f68a32c8SEmil Constantinescu case TS_STEP_PENDING: 375f68a32c8SEmil Constantinescu h = ts->time_step; break; 376f68a32c8SEmil Constantinescu case TS_STEP_COMPLETE: 377f68a32c8SEmil Constantinescu h = ts->time_step_prev; break; 378f68a32c8SEmil Constantinescu default: SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_PLIB,"Invalid TSStepStatus"); 379f68a32c8SEmil Constantinescu } 380f68a32c8SEmil Constantinescu if (order == tab->order) { 381f68a32c8SEmil Constantinescu if (rk->status == TS_STEP_INCOMPLETE) { 382f68a32c8SEmil Constantinescu ierr = VecCopy(ts->vec_sol,X);CHKERRQ(ierr); 383f68a32c8SEmil Constantinescu for (j=0; j<s; j++) w[j] = h*tab->b[j]; 384f68a32c8SEmil Constantinescu ierr = VecMAXPY(X,s,w,rk->YdotRHS);CHKERRQ(ierr); 385f68a32c8SEmil Constantinescu } else {ierr = VecCopy(ts->vec_sol,X);CHKERRQ(ierr);} 386f68a32c8SEmil Constantinescu PetscFunctionReturn(0); 387f68a32c8SEmil Constantinescu } else if (order == tab->order-1) { 388f68a32c8SEmil Constantinescu if (!tab->bembed) goto unavailable; 389f68a32c8SEmil Constantinescu if (rk->status == TS_STEP_INCOMPLETE) { /* Complete with the embedded method (be) */ 390f68a32c8SEmil Constantinescu ierr = VecCopy(ts->vec_sol,X);CHKERRQ(ierr); 391f68a32c8SEmil Constantinescu for (j=0; j<s; j++) w[j] = h*tab->bembed[j]; 392f68a32c8SEmil Constantinescu ierr = VecMAXPY(X,s,w,rk->YdotRHS);CHKERRQ(ierr); 393f68a32c8SEmil Constantinescu } else { /* Rollback and re-complete using (be-b) */ 394f68a32c8SEmil Constantinescu ierr = VecCopy(ts->vec_sol,X);CHKERRQ(ierr); 395f68a32c8SEmil Constantinescu for (j=0; j<s; j++) w[j] = h*(tab->bembed[j] - tab->b[j]); 396f68a32c8SEmil Constantinescu ierr = VecMAXPY(X,s,w,rk->YdotRHS);CHKERRQ(ierr); 397f68a32c8SEmil Constantinescu } 398f68a32c8SEmil Constantinescu if (done) *done = PETSC_TRUE; 399f68a32c8SEmil Constantinescu PetscFunctionReturn(0); 400f68a32c8SEmil Constantinescu } 401f68a32c8SEmil Constantinescu unavailable: 402f68a32c8SEmil Constantinescu if (done) *done = PETSC_FALSE; 403f68a32c8SEmil Constantinescu else SETERRQ3(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"RK '%s' of order %D cannot evaluate step at order %D",tab->name,tab->order,order); 404f68a32c8SEmil Constantinescu PetscFunctionReturn(0); 405f68a32c8SEmil Constantinescu } 406f68a32c8SEmil Constantinescu 407f68a32c8SEmil Constantinescu #undef __FUNCT__ 408f68a32c8SEmil Constantinescu #define __FUNCT__ "TSStep_RK" 409f68a32c8SEmil Constantinescu static PetscErrorCode TSStep_RK(TS ts) 410f68a32c8SEmil Constantinescu { 411f68a32c8SEmil Constantinescu TS_RK *rk = (TS_RK*)ts->data; 412f68a32c8SEmil Constantinescu RKTableau tab = rk->tableau; 413f68a32c8SEmil Constantinescu const PetscInt s = tab->s; 414f68a32c8SEmil Constantinescu const PetscReal *A = tab->A,*b = tab->b,*c = tab->c; 415f68a32c8SEmil Constantinescu PetscScalar *w = rk->work; 416f68a32c8SEmil Constantinescu Vec *Y = rk->Y,*YdotRHS = rk->YdotRHS; 417f68a32c8SEmil Constantinescu TSAdapt adapt; 418f68a32c8SEmil Constantinescu PetscInt i,j,reject,next_scheme; 419f68a32c8SEmil Constantinescu PetscReal next_time_step; 420f68a32c8SEmil Constantinescu PetscReal t; 421f68a32c8SEmil Constantinescu PetscBool accept; 422f68a32c8SEmil Constantinescu PetscErrorCode ierr; 423f68a32c8SEmil Constantinescu 424f68a32c8SEmil Constantinescu PetscFunctionBegin; 425f68a32c8SEmil Constantinescu 426f68a32c8SEmil Constantinescu next_time_step = ts->time_step; 427f68a32c8SEmil Constantinescu t = ts->ptime; 428f68a32c8SEmil Constantinescu accept = PETSC_TRUE; 429f68a32c8SEmil Constantinescu rk->status = TS_STEP_INCOMPLETE; 430f68a32c8SEmil Constantinescu 431f68a32c8SEmil Constantinescu 432f68a32c8SEmil Constantinescu for (reject=0; reject<ts->max_reject && !ts->reason; reject++,ts->reject++) { 433f68a32c8SEmil Constantinescu PetscReal h = ts->time_step; 434f68a32c8SEmil Constantinescu ierr = TSPreStep(ts);CHKERRQ(ierr); 435f68a32c8SEmil Constantinescu for (i=0; i<s; i++) { 4369be3e283SDebojyoti Ghosh rk->stage_time = t + h*c[i]; 4379be3e283SDebojyoti Ghosh ierr = TSPreStage(ts,rk->stage_time); CHKERRQ(ierr); 438f68a32c8SEmil Constantinescu ierr = VecCopy(ts->vec_sol,Y[i]);CHKERRQ(ierr); 439f68a32c8SEmil Constantinescu for (j=0; j<i; j++) w[j] = h*A[i*s+j]; 440f68a32c8SEmil Constantinescu ierr = VecMAXPY(Y[i],i,w,YdotRHS);CHKERRQ(ierr); 4419be3e283SDebojyoti Ghosh ierr = TSPostStage(ts,rk->stage_time,i,Y); CHKERRQ(ierr); 442f68a32c8SEmil Constantinescu ierr = TSGetAdapt(ts,&adapt);CHKERRQ(ierr); 443f68a32c8SEmil Constantinescu ierr = TSAdaptCheckStage(adapt,ts,&accept);CHKERRQ(ierr); 444f68a32c8SEmil Constantinescu if (!accept) goto reject_step; 445f68a32c8SEmil Constantinescu ierr = TSComputeRHSFunction(ts,t+h*c[i],Y[i],YdotRHS[i]);CHKERRQ(ierr); 446f68a32c8SEmil Constantinescu } 447f68a32c8SEmil Constantinescu ierr = TSEvaluateStep(ts,tab->order,ts->vec_sol,NULL);CHKERRQ(ierr); 448f68a32c8SEmil Constantinescu rk->status = TS_STEP_PENDING; 449f68a32c8SEmil Constantinescu 450f68a32c8SEmil Constantinescu /* Register only the current method as a candidate because we're not supporting multiple candidates yet. */ 451f68a32c8SEmil Constantinescu ierr = TSGetAdapt(ts,&adapt);CHKERRQ(ierr); 452f68a32c8SEmil Constantinescu ierr = TSAdaptCandidatesClear(adapt);CHKERRQ(ierr); 453f68a32c8SEmil Constantinescu ierr = TSAdaptCandidateAdd(adapt,tab->name,tab->order,1,tab->ccfl,1.*tab->s,PETSC_TRUE);CHKERRQ(ierr); 454f68a32c8SEmil Constantinescu ierr = TSAdaptChoose(adapt,ts,ts->time_step,&next_scheme,&next_time_step,&accept);CHKERRQ(ierr); 455f68a32c8SEmil Constantinescu if (accept) { 456f68a32c8SEmil Constantinescu /* ignore next_scheme for now */ 457f68a32c8SEmil Constantinescu ts->ptime += ts->time_step; 458f68a32c8SEmil Constantinescu ts->time_step = next_time_step; 459e3caeda6SBarry Smith ts->steps++; 460f68a32c8SEmil Constantinescu rk->status = TS_STEP_COMPLETE; 461f68a32c8SEmil Constantinescu ierr = PetscObjectComposedDataSetReal((PetscObject)ts->vec_sol,explicit_stage_time_id,ts->ptime);CHKERRQ(ierr); 462f68a32c8SEmil Constantinescu break; 463f68a32c8SEmil Constantinescu } else { /* Roll back the current step */ 464f68a32c8SEmil Constantinescu for (j=0; j<s; j++) w[j] = -h*b[j]; 465f68a32c8SEmil Constantinescu ierr = VecMAXPY(ts->vec_sol,s,w,rk->YdotRHS);CHKERRQ(ierr); 466f68a32c8SEmil Constantinescu ts->time_step = next_time_step; 467f68a32c8SEmil Constantinescu rk->status = TS_STEP_INCOMPLETE; 468f68a32c8SEmil Constantinescu } 469f68a32c8SEmil Constantinescu reject_step: continue; 470f68a32c8SEmil Constantinescu } 471f68a32c8SEmil Constantinescu if (rk->status != TS_STEP_COMPLETE && !ts->reason) ts->reason = TS_DIVERGED_STEP_REJECTED; 472f68a32c8SEmil Constantinescu PetscFunctionReturn(0); 473e4dd521cSBarry Smith } 474e4dd521cSBarry Smith 475f68a32c8SEmil Constantinescu #undef __FUNCT__ 476*f6a906c0SBarry Smith #define __FUNCT__ "TSAdjointSetUp_RK" 477*f6a906c0SBarry Smith static PetscErrorCode TSAdjointSetUp_RK(TS ts) 478*f6a906c0SBarry Smith { 479*f6a906c0SBarry Smith TS_RK *rk = (TS_RK*)ts->data; 480*f6a906c0SBarry Smith RKTableau tab; 481*f6a906c0SBarry Smith PetscInt s; 482*f6a906c0SBarry Smith PetscErrorCode ierr; 483*f6a906c0SBarry Smith 484*f6a906c0SBarry Smith PetscFunctionBegin; 485*f6a906c0SBarry Smith if (ts->adjointsetupcalled++) PetscFunctionReturn(0); 486*f6a906c0SBarry Smith tab = rk->tableau; 487*f6a906c0SBarry Smith s = tab->s; 488*f6a906c0SBarry Smith ierr = VecDuplicateVecs(ts->vecs_sensi[0],s*ts->numberadjs,&rk->VecDeltaLam);CHKERRQ(ierr); 489*f6a906c0SBarry Smith if(ts->vecs_sensip) { 490*f6a906c0SBarry Smith ierr = VecDuplicateVecs(ts->vecs_sensip[0],s*ts->numberadjs,&rk->VecDeltaMu);CHKERRQ(ierr); 491*f6a906c0SBarry Smith } 492*f6a906c0SBarry Smith ierr = VecDuplicateVecs(ts->vecs_sensi[0],ts->numberadjs,&rk->VecSensiTemp);CHKERRQ(ierr); 493*f6a906c0SBarry Smith PetscFunctionReturn(0); 494*f6a906c0SBarry Smith } 495*f6a906c0SBarry Smith 496*f6a906c0SBarry Smith #undef __FUNCT__ 497d2daff3dSHong Zhang #define __FUNCT__ "TSStepAdj_RK" 498c235aa8dSHong Zhang static PetscErrorCode TSStepAdj_RK(TS ts) 499d2daff3dSHong Zhang { 500c235aa8dSHong Zhang TS_RK *rk = (TS_RK*)ts->data; 501c235aa8dSHong Zhang RKTableau tab = rk->tableau; 502c235aa8dSHong Zhang const PetscInt s = tab->s; 503c235aa8dSHong Zhang const PetscReal *A = tab->A,*b = tab->b,*c = tab->c; 504c235aa8dSHong Zhang PetscScalar *w = rk->work; 505ad8e2604SHong Zhang Vec *Y = rk->Y,*VecDeltaLam = rk->VecDeltaLam,*VecDeltaMu = rk->VecDeltaMu,*VecSensiTemp = rk->VecSensiTemp; 506b18ea86cSHong Zhang PetscInt i,j,nadj; 507c235aa8dSHong Zhang PetscReal t; 508d2daff3dSHong Zhang PetscErrorCode ierr; 509c235aa8dSHong Zhang 510d2daff3dSHong Zhang PetscFunctionBegin; 511c235aa8dSHong Zhang t = ts->ptime; 512c235aa8dSHong Zhang rk->status = TS_STEP_INCOMPLETE; 513b18ea86cSHong Zhang PetscReal h = ts->time_step; 514c235aa8dSHong Zhang ierr = TSPreStep(ts);CHKERRQ(ierr); 515c235aa8dSHong Zhang for (i=s-1; i>=0; i--) { 516c235aa8dSHong Zhang Mat J,Jp; 517c235aa8dSHong Zhang rk->stage_time = t + h*(1.0-c[i]); 518b18ea86cSHong Zhang for (nadj=0; nadj<ts->numberadjs; nadj++) { 519b18ea86cSHong Zhang ierr = VecCopy(ts->vecs_sensi[nadj],VecSensiTemp[nadj]);CHKERRQ(ierr); 520b18ea86cSHong Zhang ierr = VecScale(VecSensiTemp[nadj],-h*b[i]); 521c235aa8dSHong Zhang for (j=i+1; j<s; j++) { 522b18ea86cSHong Zhang ierr = VecAXPY(VecSensiTemp[nadj],-h*A[j*s+i],VecDeltaLam[nadj*s+j]); 523b18ea86cSHong Zhang } 524c235aa8dSHong Zhang } 525ad8e2604SHong Zhang /* Stage values of lambda */ 526c235aa8dSHong Zhang ierr = TSGetRHSJacobian(ts,&J,&Jp,NULL,NULL);CHKERRQ(ierr); 527c235aa8dSHong Zhang ierr = TSComputeRHSJacobian(ts,rk->stage_time,Y[i],J,Jp);CHKERRQ(ierr); 528b18ea86cSHong Zhang for (nadj=0; nadj<ts->numberadjs; nadj++) { 529b18ea86cSHong Zhang ierr = MatMultTranspose(J,VecSensiTemp[nadj],VecDeltaLam[nadj*s+i]);CHKERRQ(ierr); 530b18ea86cSHong Zhang } 5316497ce14SHong Zhang 532ad8e2604SHong Zhang /* Stage values of mu */ 5336497ce14SHong Zhang if(ts->vecs_sensip) { 534d4aa0a58SBarry Smith ierr = TSAdjointComputeRHSJacobianP(ts,rk->stage_time,Y[i],ts->Jacp);CHKERRQ(ierr); 535ad8e2604SHong Zhang for (nadj=0; nadj<ts->numberadjs; nadj++) { 536ad8e2604SHong Zhang ierr = MatMultTranspose(ts->Jacp,VecSensiTemp[nadj],VecDeltaMu[nadj*s+i]);CHKERRQ(ierr); 537ad8e2604SHong Zhang } 538c235aa8dSHong Zhang } 5396497ce14SHong Zhang } 540c235aa8dSHong Zhang 541c235aa8dSHong Zhang for (j=0; j<s; j++) w[j] = 1.0; 542b18ea86cSHong Zhang for (nadj=0; nadj<ts->numberadjs; nadj++) { 543b18ea86cSHong Zhang ierr = VecMAXPY(ts->vecs_sensi[nadj],s,w,&VecDeltaLam[nadj*s]);CHKERRQ(ierr); 5446497ce14SHong Zhang if(ts->vecs_sensip) { 545ad8e2604SHong Zhang ierr = VecMAXPY(ts->vecs_sensip[nadj],s,w,&VecDeltaMu[nadj*s]);CHKERRQ(ierr); 546b18ea86cSHong Zhang } 5476497ce14SHong Zhang } 548c235aa8dSHong Zhang ts->ptime += ts->time_step; 549c235aa8dSHong Zhang ts->steps++; 550c235aa8dSHong Zhang rk->status = TS_STEP_COMPLETE; 551b18ea86cSHong Zhang ierr = PetscObjectComposedDataSetReal((PetscObject)ts->vecs_sensi,explicit_stage_time_id,ts->ptime);CHKERRQ(ierr); 5526497ce14SHong Zhang if(ts->vecs_sensip) { 553ad8e2604SHong Zhang ierr = PetscObjectComposedDataSetReal((PetscObject)ts->vecs_sensip,explicit_stage_time_id,ts->ptime);CHKERRQ(ierr); 5546497ce14SHong Zhang } 555d2daff3dSHong Zhang PetscFunctionReturn(0); 556d2daff3dSHong Zhang } 557d2daff3dSHong Zhang 558d2daff3dSHong Zhang #undef __FUNCT__ 559f68a32c8SEmil Constantinescu #define __FUNCT__ "TSInterpolate_RK" 560f68a32c8SEmil Constantinescu static PetscErrorCode TSInterpolate_RK(TS ts,PetscReal itime,Vec X) 561f68a32c8SEmil Constantinescu { 562f68a32c8SEmil Constantinescu TS_RK *rk = (TS_RK*)ts->data; 563f68a32c8SEmil Constantinescu PetscInt s = rk->tableau->s,pinterp = rk->tableau->pinterp,i,j; 564f68a32c8SEmil Constantinescu PetscReal h; 565f68a32c8SEmil Constantinescu PetscReal tt,t; 566f68a32c8SEmil Constantinescu PetscScalar *b; 567f68a32c8SEmil Constantinescu const PetscReal *B = rk->tableau->binterp; 568f68a32c8SEmil Constantinescu PetscErrorCode ierr; 569e4dd521cSBarry Smith 570f68a32c8SEmil Constantinescu PetscFunctionBegin; 571f68a32c8SEmil Constantinescu if (!B) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"TSRK %s does not have an interpolation formula",rk->tableau->name); 572f68a32c8SEmil Constantinescu switch (rk->status) { 573f68a32c8SEmil Constantinescu case TS_STEP_INCOMPLETE: 574f68a32c8SEmil Constantinescu case TS_STEP_PENDING: 575f68a32c8SEmil Constantinescu h = ts->time_step; 576f68a32c8SEmil Constantinescu t = (itime - ts->ptime)/h; 577f68a32c8SEmil Constantinescu break; 578f68a32c8SEmil Constantinescu case TS_STEP_COMPLETE: 579f68a32c8SEmil Constantinescu h = ts->time_step_prev; 580f68a32c8SEmil Constantinescu t = (itime - ts->ptime)/h + 1; /* In the interval [0,1] */ 581f68a32c8SEmil Constantinescu break; 582f68a32c8SEmil Constantinescu default: SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_PLIB,"Invalid TSStepStatus"); 583e4dd521cSBarry Smith } 584785e854fSJed Brown ierr = PetscMalloc1(s,&b);CHKERRQ(ierr); 585f68a32c8SEmil Constantinescu for (i=0; i<s; i++) b[i] = 0; 586f68a32c8SEmil Constantinescu for (j=0,tt=t; j<pinterp; j++,tt*=t) { 587f68a32c8SEmil Constantinescu for (i=0; i<s; i++) { 588f68a32c8SEmil Constantinescu b[i] += h * B[i*pinterp+j] * tt; 589e4dd521cSBarry Smith } 590f68a32c8SEmil Constantinescu } 591f68a32c8SEmil Constantinescu ierr = VecCopy(rk->Y[0],X);CHKERRQ(ierr); 592f68a32c8SEmil Constantinescu ierr = VecMAXPY(X,s,b,rk->YdotRHS);CHKERRQ(ierr); 593f68a32c8SEmil Constantinescu ierr = PetscFree(b);CHKERRQ(ierr); 594e4dd521cSBarry Smith PetscFunctionReturn(0); 595e4dd521cSBarry Smith } 596e4dd521cSBarry Smith 597e4dd521cSBarry Smith /*------------------------------------------------------------*/ 598e4dd521cSBarry Smith #undef __FUNCT__ 599277b19d0SLisandro Dalcin #define __FUNCT__ "TSReset_RK" 600277b19d0SLisandro Dalcin static PetscErrorCode TSReset_RK(TS ts) 601e4dd521cSBarry Smith { 6025f70b478SJed Brown TS_RK *rk = (TS_RK*)ts->data; 603f68a32c8SEmil Constantinescu PetscInt s; 6046849ba73SBarry Smith PetscErrorCode ierr; 605e4dd521cSBarry Smith 606e4dd521cSBarry Smith PetscFunctionBegin; 607f68a32c8SEmil Constantinescu if (!rk->tableau) PetscFunctionReturn(0); 608f68a32c8SEmil Constantinescu s = rk->tableau->s; 609f68a32c8SEmil Constantinescu ierr = VecDestroyVecs(s,&rk->Y);CHKERRQ(ierr); 610f68a32c8SEmil Constantinescu ierr = VecDestroyVecs(s,&rk->YdotRHS);CHKERRQ(ierr); 611c235aa8dSHong Zhang if(ts->reverse_mode) { 612b18ea86cSHong Zhang ierr = VecDestroyVecs(s*ts->numberadjs,&rk->VecDeltaLam);CHKERRQ(ierr); 613ad8e2604SHong Zhang if(rk->VecDeltaMu) { 614ad8e2604SHong Zhang ierr = VecDestroyVecs(s*ts->numberadjs,&rk->VecDeltaMu);CHKERRQ(ierr); 615ad8e2604SHong Zhang } 616b18ea86cSHong Zhang ierr = VecDestroyVecs(ts->numberadjs,&rk->VecSensiTemp);CHKERRQ(ierr); 617c235aa8dSHong Zhang } 618f68a32c8SEmil Constantinescu ierr = PetscFree(rk->work);CHKERRQ(ierr); 619277b19d0SLisandro Dalcin PetscFunctionReturn(0); 620e4dd521cSBarry Smith } 621277b19d0SLisandro Dalcin 622277b19d0SLisandro Dalcin #undef __FUNCT__ 623277b19d0SLisandro Dalcin #define __FUNCT__ "TSDestroy_RK" 624277b19d0SLisandro Dalcin static PetscErrorCode TSDestroy_RK(TS ts) 625277b19d0SLisandro Dalcin { 626277b19d0SLisandro Dalcin PetscErrorCode ierr; 627277b19d0SLisandro Dalcin 628277b19d0SLisandro Dalcin PetscFunctionBegin; 629277b19d0SLisandro Dalcin ierr = TSReset_RK(ts);CHKERRQ(ierr); 630277b19d0SLisandro Dalcin ierr = PetscFree(ts->data);CHKERRQ(ierr); 631f68a32c8SEmil Constantinescu ierr = PetscObjectComposeFunction((PetscObject)ts,"TSRKGetType_C",NULL);CHKERRQ(ierr); 632f68a32c8SEmil Constantinescu ierr = PetscObjectComposeFunction((PetscObject)ts,"TSRKSetType_C",NULL);CHKERRQ(ierr); 633f68a32c8SEmil Constantinescu PetscFunctionReturn(0); 634f68a32c8SEmil Constantinescu } 635f68a32c8SEmil Constantinescu 636f68a32c8SEmil Constantinescu 637f68a32c8SEmil Constantinescu #undef __FUNCT__ 638f68a32c8SEmil Constantinescu #define __FUNCT__ "DMCoarsenHook_TSRK" 639f68a32c8SEmil Constantinescu static PetscErrorCode DMCoarsenHook_TSRK(DM fine,DM coarse,void *ctx) 640f68a32c8SEmil Constantinescu { 641f68a32c8SEmil Constantinescu PetscFunctionBegin; 642f68a32c8SEmil Constantinescu PetscFunctionReturn(0); 643f68a32c8SEmil Constantinescu } 644f68a32c8SEmil Constantinescu 645f68a32c8SEmil Constantinescu #undef __FUNCT__ 646f68a32c8SEmil Constantinescu #define __FUNCT__ "DMRestrictHook_TSRK" 647f68a32c8SEmil Constantinescu static PetscErrorCode DMRestrictHook_TSRK(DM fine,Mat restrct,Vec rscale,Mat inject,DM coarse,void *ctx) 648f68a32c8SEmil Constantinescu { 649f68a32c8SEmil Constantinescu PetscFunctionBegin; 650f68a32c8SEmil Constantinescu PetscFunctionReturn(0); 651f68a32c8SEmil Constantinescu } 652f68a32c8SEmil Constantinescu 653f68a32c8SEmil Constantinescu 654f68a32c8SEmil Constantinescu #undef __FUNCT__ 655f68a32c8SEmil Constantinescu #define __FUNCT__ "DMSubDomainHook_TSRK" 656f68a32c8SEmil Constantinescu static PetscErrorCode DMSubDomainHook_TSRK(DM dm,DM subdm,void *ctx) 657f68a32c8SEmil Constantinescu { 658f68a32c8SEmil Constantinescu PetscFunctionBegin; 659f68a32c8SEmil Constantinescu PetscFunctionReturn(0); 660f68a32c8SEmil Constantinescu } 661f68a32c8SEmil Constantinescu 662f68a32c8SEmil Constantinescu #undef __FUNCT__ 663f68a32c8SEmil Constantinescu #define __FUNCT__ "DMSubDomainRestrictHook_TSRK" 664f68a32c8SEmil Constantinescu static PetscErrorCode DMSubDomainRestrictHook_TSRK(DM dm,VecScatter gscat,VecScatter lscat,DM subdm,void *ctx) 665f68a32c8SEmil Constantinescu { 666f68a32c8SEmil Constantinescu 667f68a32c8SEmil Constantinescu PetscFunctionBegin; 668f68a32c8SEmil Constantinescu PetscFunctionReturn(0); 669f68a32c8SEmil Constantinescu } 670c235aa8dSHong Zhang /* 671f68a32c8SEmil Constantinescu #undef __FUNCT__ 672d2daff3dSHong Zhang #define __FUNCT__ "RKSetAdjCoe" 673d2daff3dSHong Zhang static PetscErrorCode RKSetAdjCoe(RKTableau tab) 674d2daff3dSHong Zhang { 675d2daff3dSHong Zhang PetscReal *A,*b; 676d2daff3dSHong Zhang PetscInt s,i,j; 677d2daff3dSHong Zhang PetscErrorCode ierr; 678d2daff3dSHong Zhang 679d2daff3dSHong Zhang PetscFunctionBegin; 680d2daff3dSHong Zhang s = tab->s; 681d2daff3dSHong Zhang ierr = PetscMalloc2(s*s,&A,s,&b);CHKERRQ(ierr); 682d2daff3dSHong Zhang 683d2daff3dSHong Zhang for (i=0; i<s; i++) 684d2daff3dSHong Zhang for (j=0; j<s; j++) { 685d2daff3dSHong Zhang A[i*s+j] = (tab->b[s-1-i]==0) ? 0: -tab->A[s-1-i+(s-1-j)*s] * tab->b[s-1-j] / tab->b[s-1-i]; 686d2daff3dSHong Zhang ierr = PetscPrintf(PETSC_COMM_WORLD,"Coefficients: A[%D][%D]=%.6f\n",i,j,A[i*s+j]);CHKERRQ(ierr); 687d2daff3dSHong Zhang } 688d2daff3dSHong Zhang 689d2daff3dSHong Zhang for (i=0; i<s; i++) b[i] = (tab->b[s-1-i]==0)? 0: -tab->b[s-1-i]; 690d2daff3dSHong Zhang 691d2daff3dSHong Zhang ierr = PetscMemcpy(tab->A,A,s*s*sizeof(A[0]));CHKERRQ(ierr); 692d2daff3dSHong Zhang ierr = PetscMemcpy(tab->b,b,s*sizeof(b[0]));CHKERRQ(ierr); 693d2daff3dSHong Zhang ierr = PetscFree2(A,b);CHKERRQ(ierr); 694d2daff3dSHong Zhang PetscFunctionReturn(0); 695d2daff3dSHong Zhang } 696c235aa8dSHong Zhang */ 697d2daff3dSHong Zhang #undef __FUNCT__ 698f68a32c8SEmil Constantinescu #define __FUNCT__ "TSSetUp_RK" 699f68a32c8SEmil Constantinescu static PetscErrorCode TSSetUp_RK(TS ts) 700f68a32c8SEmil Constantinescu { 701f68a32c8SEmil Constantinescu TS_RK *rk = (TS_RK*)ts->data; 702f68a32c8SEmil Constantinescu RKTableau tab; 703f68a32c8SEmil Constantinescu PetscInt s; 704f68a32c8SEmil Constantinescu PetscErrorCode ierr; 705f68a32c8SEmil Constantinescu DM dm; 706f68a32c8SEmil Constantinescu 707f68a32c8SEmil Constantinescu PetscFunctionBegin; 708f68a32c8SEmil Constantinescu if (!rk->tableau) { 709f68a32c8SEmil Constantinescu ierr = TSRKSetType(ts,TSRKDefault);CHKERRQ(ierr); 710f68a32c8SEmil Constantinescu } 711f68a32c8SEmil Constantinescu tab = rk->tableau; 712f68a32c8SEmil Constantinescu s = tab->s; 713f68a32c8SEmil Constantinescu ierr = VecDuplicateVecs(ts->vec_sol,s,&rk->Y);CHKERRQ(ierr); 714f68a32c8SEmil Constantinescu ierr = VecDuplicateVecs(ts->vec_sol,s,&rk->YdotRHS);CHKERRQ(ierr); 715785e854fSJed Brown ierr = PetscMalloc1(s,&rk->work);CHKERRQ(ierr); 716f68a32c8SEmil Constantinescu ierr = TSGetDM(ts,&dm);CHKERRQ(ierr); 717f68a32c8SEmil Constantinescu if (dm) { 718f68a32c8SEmil Constantinescu ierr = DMCoarsenHookAdd(dm,DMCoarsenHook_TSRK,DMRestrictHook_TSRK,ts);CHKERRQ(ierr); 719f68a32c8SEmil Constantinescu ierr = DMSubDomainHookAdd(dm,DMSubDomainHook_TSRK,DMSubDomainRestrictHook_TSRK,ts);CHKERRQ(ierr); 720f68a32c8SEmil Constantinescu } 721e4dd521cSBarry Smith PetscFunctionReturn(0); 722e4dd521cSBarry Smith } 723d2daff3dSHong Zhang 724*f6a906c0SBarry Smith 725e4dd521cSBarry Smith /*------------------------------------------------------------*/ 726e4dd521cSBarry Smith 727e4dd521cSBarry Smith #undef __FUNCT__ 7285f70b478SJed Brown #define __FUNCT__ "TSSetFromOptions_RK" 7298c34d3f5SBarry Smith static PetscErrorCode TSSetFromOptions_RK(PetscOptions *PetscOptionsObject,TS ts) 730e4dd521cSBarry Smith { 731dfbe8321SBarry Smith PetscErrorCode ierr; 732f68a32c8SEmil Constantinescu char rktype[256]; 733262ff7bbSBarry Smith 734e4dd521cSBarry Smith PetscFunctionBegin; 735e55864a3SBarry Smith ierr = PetscOptionsHead(PetscOptionsObject,"RK ODE solver options");CHKERRQ(ierr); 736f68a32c8SEmil Constantinescu { 737f68a32c8SEmil Constantinescu RKTableauLink link; 738f68a32c8SEmil Constantinescu PetscInt count,choice; 739f68a32c8SEmil Constantinescu PetscBool flg; 740f68a32c8SEmil Constantinescu const char **namelist; 741f68a32c8SEmil Constantinescu ierr = PetscStrncpy(rktype,TSRKDefault,sizeof(rktype));CHKERRQ(ierr); 742f68a32c8SEmil Constantinescu for (link=RKTableauList,count=0; link; link=link->next,count++) ; 743785e854fSJed Brown ierr = PetscMalloc1(count,&namelist);CHKERRQ(ierr); 744f68a32c8SEmil Constantinescu for (link=RKTableauList,count=0; link; link=link->next,count++) namelist[count] = link->tab.name; 745f68a32c8SEmil Constantinescu ierr = PetscOptionsEList("-ts_rk_type","Family of RK method","TSRKSetType",(const char*const*)namelist,count,rktype,&choice,&flg);CHKERRQ(ierr); 746f68a32c8SEmil Constantinescu ierr = TSRKSetType(ts,flg ? namelist[choice] : rktype);CHKERRQ(ierr); 747f68a32c8SEmil Constantinescu ierr = PetscFree(namelist);CHKERRQ(ierr); 748f68a32c8SEmil Constantinescu } 749262ff7bbSBarry Smith ierr = PetscOptionsTail();CHKERRQ(ierr); 750e4dd521cSBarry Smith PetscFunctionReturn(0); 751e4dd521cSBarry Smith } 752e4dd521cSBarry Smith 753e4dd521cSBarry Smith #undef __FUNCT__ 754f68a32c8SEmil Constantinescu #define __FUNCT__ "PetscFormatRealArray" 755f68a32c8SEmil Constantinescu static PetscErrorCode PetscFormatRealArray(char buf[],size_t len,const char *fmt,PetscInt n,const PetscReal x[]) 756f68a32c8SEmil Constantinescu { 757f68a32c8SEmil Constantinescu PetscErrorCode ierr; 758f68a32c8SEmil Constantinescu PetscInt i; 759f68a32c8SEmil Constantinescu size_t left,count; 760f68a32c8SEmil Constantinescu char *p; 761f68a32c8SEmil Constantinescu 762f68a32c8SEmil Constantinescu PetscFunctionBegin; 763f68a32c8SEmil Constantinescu for (i=0,p=buf,left=len; i<n; i++) { 764f68a32c8SEmil Constantinescu ierr = PetscSNPrintfCount(p,left,fmt,&count,x[i]);CHKERRQ(ierr); 765f68a32c8SEmil Constantinescu if (count >= left) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Insufficient space in buffer"); 766f68a32c8SEmil Constantinescu left -= count; 767f68a32c8SEmil Constantinescu p += count; 768f68a32c8SEmil Constantinescu *p++ = ' '; 769f68a32c8SEmil Constantinescu } 770f68a32c8SEmil Constantinescu p[i ? 0 : -1] = 0; 771f68a32c8SEmil Constantinescu PetscFunctionReturn(0); 772f68a32c8SEmil Constantinescu } 773f68a32c8SEmil Constantinescu 774f68a32c8SEmil Constantinescu #undef __FUNCT__ 7755f70b478SJed Brown #define __FUNCT__ "TSView_RK" 7765f70b478SJed Brown static PetscErrorCode TSView_RK(TS ts,PetscViewer viewer) 777e4dd521cSBarry Smith { 7785f70b478SJed Brown TS_RK *rk = (TS_RK*)ts->data; 779f68a32c8SEmil Constantinescu RKTableau tab = rk->tableau; 7808370ee3bSLisandro Dalcin PetscBool iascii; 781dfbe8321SBarry Smith PetscErrorCode ierr; 782f68a32c8SEmil Constantinescu TSAdapt adapt; 7832cdf8120Sasbjorn 784e4dd521cSBarry Smith PetscFunctionBegin; 785251f4c67SDmitry Karpeev ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERASCII,&iascii);CHKERRQ(ierr); 7868370ee3bSLisandro Dalcin if (iascii) { 787f68a32c8SEmil Constantinescu TSRKType rktype; 788f68a32c8SEmil Constantinescu char buf[512]; 789f68a32c8SEmil Constantinescu ierr = TSRKGetType(ts,&rktype);CHKERRQ(ierr); 790f68a32c8SEmil Constantinescu ierr = PetscViewerASCIIPrintf(viewer," RK %s\n",rktype);CHKERRQ(ierr); 791f68a32c8SEmil Constantinescu ierr = PetscFormatRealArray(buf,sizeof(buf),"% 8.6f",tab->s,tab->c);CHKERRQ(ierr); 792f68a32c8SEmil Constantinescu ierr = PetscViewerASCIIPrintf(viewer," Abscissa c = %s\n",buf);CHKERRQ(ierr); 793d760c35bSDebojyoti Ghosh ierr = PetscViewerASCIIPrintf(viewer,"FSAL: %s\n",tab->FSAL ? "yes" : "no");CHKERRQ(ierr); 7948370ee3bSLisandro Dalcin } 795f68a32c8SEmil Constantinescu ierr = TSGetAdapt(ts,&adapt);CHKERRQ(ierr); 796f68a32c8SEmil Constantinescu ierr = TSAdaptView(adapt,viewer);CHKERRQ(ierr); 797f68a32c8SEmil Constantinescu PetscFunctionReturn(0); 798f68a32c8SEmil Constantinescu } 799f68a32c8SEmil Constantinescu 800f68a32c8SEmil Constantinescu #undef __FUNCT__ 801f68a32c8SEmil Constantinescu #define __FUNCT__ "TSLoad_RK" 802f68a32c8SEmil Constantinescu static PetscErrorCode TSLoad_RK(TS ts,PetscViewer viewer) 803f68a32c8SEmil Constantinescu { 804f68a32c8SEmil Constantinescu PetscErrorCode ierr; 805f68a32c8SEmil Constantinescu TSAdapt tsadapt; 806f68a32c8SEmil Constantinescu 807f68a32c8SEmil Constantinescu PetscFunctionBegin; 808f68a32c8SEmil Constantinescu ierr = TSGetAdapt(ts,&tsadapt);CHKERRQ(ierr); 809f68a32c8SEmil Constantinescu ierr = TSAdaptLoad(tsadapt,viewer);CHKERRQ(ierr); 810f68a32c8SEmil Constantinescu PetscFunctionReturn(0); 811f68a32c8SEmil Constantinescu } 812f68a32c8SEmil Constantinescu 813f68a32c8SEmil Constantinescu #undef __FUNCT__ 814f68a32c8SEmil Constantinescu #define __FUNCT__ "TSRKSetType" 815f68a32c8SEmil Constantinescu /*@C 816f68a32c8SEmil Constantinescu TSRKSetType - Set the type of RK scheme 817f68a32c8SEmil Constantinescu 818f68a32c8SEmil Constantinescu Logically collective 819f68a32c8SEmil Constantinescu 820f68a32c8SEmil Constantinescu Input Parameter: 821f68a32c8SEmil Constantinescu + ts - timestepping context 822f68a32c8SEmil Constantinescu - rktype - type of RK-scheme 823f68a32c8SEmil Constantinescu 824f68a32c8SEmil Constantinescu Level: intermediate 825f68a32c8SEmil Constantinescu 826f68a32c8SEmil Constantinescu .seealso: TSRKGetType(), TSRK, TSRK2, TSRK3, TSRKPRSSP2, TSRK4, TSRK5 827f68a32c8SEmil Constantinescu @*/ 828f68a32c8SEmil Constantinescu PetscErrorCode TSRKSetType(TS ts,TSRKType rktype) 829f68a32c8SEmil Constantinescu { 830f68a32c8SEmil Constantinescu PetscErrorCode ierr; 831f68a32c8SEmil Constantinescu 832f68a32c8SEmil Constantinescu PetscFunctionBegin; 833f68a32c8SEmil Constantinescu PetscValidHeaderSpecific(ts,TS_CLASSID,1); 834f68a32c8SEmil Constantinescu ierr = PetscTryMethod(ts,"TSRKSetType_C",(TS,TSRKType),(ts,rktype));CHKERRQ(ierr); 835f68a32c8SEmil Constantinescu PetscFunctionReturn(0); 836f68a32c8SEmil Constantinescu } 837f68a32c8SEmil Constantinescu 838f68a32c8SEmil Constantinescu #undef __FUNCT__ 839f68a32c8SEmil Constantinescu #define __FUNCT__ "TSRKGetType" 840f68a32c8SEmil Constantinescu /*@C 841f68a32c8SEmil Constantinescu TSRKGetType - Get the type of RK scheme 842f68a32c8SEmil Constantinescu 843f68a32c8SEmil Constantinescu Logically collective 844f68a32c8SEmil Constantinescu 845f68a32c8SEmil Constantinescu Input Parameter: 846f68a32c8SEmil Constantinescu . ts - timestepping context 847f68a32c8SEmil Constantinescu 848f68a32c8SEmil Constantinescu Output Parameter: 849f68a32c8SEmil Constantinescu . rktype - type of RK-scheme 850f68a32c8SEmil Constantinescu 851f68a32c8SEmil Constantinescu Level: intermediate 852f68a32c8SEmil Constantinescu 853f68a32c8SEmil Constantinescu .seealso: TSRKGetType() 854f68a32c8SEmil Constantinescu @*/ 855f68a32c8SEmil Constantinescu PetscErrorCode TSRKGetType(TS ts,TSRKType *rktype) 856f68a32c8SEmil Constantinescu { 857f68a32c8SEmil Constantinescu PetscErrorCode ierr; 858f68a32c8SEmil Constantinescu 859f68a32c8SEmil Constantinescu PetscFunctionBegin; 860f68a32c8SEmil Constantinescu PetscValidHeaderSpecific(ts,TS_CLASSID,1); 861f68a32c8SEmil Constantinescu ierr = PetscUseMethod(ts,"TSRKGetType_C",(TS,TSRKType*),(ts,rktype));CHKERRQ(ierr); 862f68a32c8SEmil Constantinescu PetscFunctionReturn(0); 863f68a32c8SEmil Constantinescu } 864f68a32c8SEmil Constantinescu 865f68a32c8SEmil Constantinescu #undef __FUNCT__ 866f68a32c8SEmil Constantinescu #define __FUNCT__ "TSRKGetType_RK" 867f68a32c8SEmil Constantinescu PetscErrorCode TSRKGetType_RK(TS ts,TSRKType *rktype) 868f68a32c8SEmil Constantinescu { 869f68a32c8SEmil Constantinescu TS_RK *rk = (TS_RK*)ts->data; 870f68a32c8SEmil Constantinescu PetscErrorCode ierr; 871f68a32c8SEmil Constantinescu 872f68a32c8SEmil Constantinescu PetscFunctionBegin; 873f68a32c8SEmil Constantinescu if (!rk->tableau) { 874f68a32c8SEmil Constantinescu ierr = TSRKSetType(ts,TSRKDefault);CHKERRQ(ierr); 875f68a32c8SEmil Constantinescu } 876f68a32c8SEmil Constantinescu *rktype = rk->tableau->name; 877f68a32c8SEmil Constantinescu PetscFunctionReturn(0); 878f68a32c8SEmil Constantinescu } 879f68a32c8SEmil Constantinescu #undef __FUNCT__ 880f68a32c8SEmil Constantinescu #define __FUNCT__ "TSRKSetType_RK" 881f68a32c8SEmil Constantinescu PetscErrorCode TSRKSetType_RK(TS ts,TSRKType rktype) 882f68a32c8SEmil Constantinescu { 883f68a32c8SEmil Constantinescu TS_RK *rk = (TS_RK*)ts->data; 884f68a32c8SEmil Constantinescu PetscErrorCode ierr; 885f68a32c8SEmil Constantinescu PetscBool match; 886f68a32c8SEmil Constantinescu RKTableauLink link; 887f68a32c8SEmil Constantinescu 888f68a32c8SEmil Constantinescu PetscFunctionBegin; 889f68a32c8SEmil Constantinescu if (rk->tableau) { 890f68a32c8SEmil Constantinescu ierr = PetscStrcmp(rk->tableau->name,rktype,&match);CHKERRQ(ierr); 891f68a32c8SEmil Constantinescu if (match) PetscFunctionReturn(0); 892f68a32c8SEmil Constantinescu } 893f68a32c8SEmil Constantinescu for (link = RKTableauList; link; link=link->next) { 894f68a32c8SEmil Constantinescu ierr = PetscStrcmp(link->tab.name,rktype,&match);CHKERRQ(ierr); 895f68a32c8SEmil Constantinescu if (match) { 896f68a32c8SEmil Constantinescu ierr = TSReset_RK(ts);CHKERRQ(ierr); 897f68a32c8SEmil Constantinescu rk->tableau = &link->tab; 898f68a32c8SEmil Constantinescu PetscFunctionReturn(0); 899f68a32c8SEmil Constantinescu } 900f68a32c8SEmil Constantinescu } 901f68a32c8SEmil Constantinescu SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_UNKNOWN_TYPE,"Could not find '%s'",rktype); 902e4dd521cSBarry Smith PetscFunctionReturn(0); 903e4dd521cSBarry Smith } 904e4dd521cSBarry Smith 905ff22ae23SHong Zhang #undef __FUNCT__ 906ff22ae23SHong Zhang #define __FUNCT__ "TSGetStages_RK" 907ff22ae23SHong Zhang static PetscErrorCode TSGetStages_RK(TS ts,PetscInt *ns,Vec **Y) 908ff22ae23SHong Zhang { 909ff22ae23SHong Zhang TS_RK *rk = (TS_RK*)ts->data; 910ff22ae23SHong Zhang 911ff22ae23SHong Zhang PetscFunctionBegin; 912ff22ae23SHong Zhang *ns = rk->tableau->s; 913d2daff3dSHong Zhang if(Y) *Y = rk->Y; 914ff22ae23SHong Zhang PetscFunctionReturn(0); 915ff22ae23SHong Zhang } 916ff22ae23SHong Zhang 917ff22ae23SHong Zhang 918e4dd521cSBarry Smith /* ------------------------------------------------------------ */ 919ebe3b25bSBarry Smith /*MC 920f68a32c8SEmil Constantinescu TSRK - ODE and DAE solver using Runge-Kutta schemes 921ebe3b25bSBarry Smith 922f68a32c8SEmil Constantinescu The user should provide the right hand side of the equation 923f68a32c8SEmil Constantinescu using TSSetRHSFunction(). 924ebe3b25bSBarry Smith 925f68a32c8SEmil Constantinescu Notes: 926f68a32c8SEmil Constantinescu The default is TSRK3, it can be changed with TSRKSetType() or -ts_rk_type 927ebe3b25bSBarry Smith 928d41222bbSBarry Smith Level: beginner 929d41222bbSBarry Smith 930f68a32c8SEmil Constantinescu .seealso: TSCreate(), TS, TSSetType(), TSRKSetType(), TSRKGetType(), TSRKSetFullyImplicit(), TSRK2D, TTSRK2E, TSRK3, 931f68a32c8SEmil Constantinescu TSRK4, TSRK5, TSRKPRSSP2, TSRKBPR3, TSRKType, TSRKRegister() 932ebe3b25bSBarry Smith 933ebe3b25bSBarry Smith M*/ 934e4dd521cSBarry Smith #undef __FUNCT__ 9355f70b478SJed Brown #define __FUNCT__ "TSCreate_RK" 9368cc058d9SJed Brown PETSC_EXTERN PetscErrorCode TSCreate_RK(TS ts) 937e4dd521cSBarry Smith { 938f68a32c8SEmil Constantinescu TS_RK *th; 939dfbe8321SBarry Smith PetscErrorCode ierr; 940e4dd521cSBarry Smith 941e4dd521cSBarry Smith PetscFunctionBegin; 942f68a32c8SEmil Constantinescu #if !defined(PETSC_USE_DYNAMIC_LIBRARIES) 943f68a32c8SEmil Constantinescu ierr = TSRKInitializePackage();CHKERRQ(ierr); 944f68a32c8SEmil Constantinescu #endif 945f68a32c8SEmil Constantinescu 946f68a32c8SEmil Constantinescu ts->ops->reset = TSReset_RK; 9475f70b478SJed Brown ts->ops->destroy = TSDestroy_RK; 9485f70b478SJed Brown ts->ops->view = TSView_RK; 949f68a32c8SEmil Constantinescu ts->ops->load = TSLoad_RK; 950f68a32c8SEmil Constantinescu ts->ops->setup = TSSetUp_RK; 951*f6a906c0SBarry Smith ts->ops->setupadj = TSAdjointSetUp_RK; 952f68a32c8SEmil Constantinescu ts->ops->step = TSStep_RK; 953f68a32c8SEmil Constantinescu ts->ops->interpolate = TSInterpolate_RK; 954f68a32c8SEmil Constantinescu ts->ops->evaluatestep = TSEvaluateStep_RK; 955f68a32c8SEmil Constantinescu ts->ops->setfromoptions = TSSetFromOptions_RK; 956ff22ae23SHong Zhang ts->ops->getstages = TSGetStages_RK; 957d2daff3dSHong Zhang ts->ops->stepadj = TSStepAdj_RK; 958e4dd521cSBarry Smith 959b00a9115SJed Brown ierr = PetscNewLog(ts,&th);CHKERRQ(ierr); 960f68a32c8SEmil Constantinescu ts->data = (void*)th; 961e4dd521cSBarry Smith 962f68a32c8SEmil Constantinescu ierr = PetscObjectComposeFunction((PetscObject)ts,"TSRKGetType_C",TSRKGetType_RK);CHKERRQ(ierr); 963f68a32c8SEmil Constantinescu ierr = PetscObjectComposeFunction((PetscObject)ts,"TSRKSetType_C",TSRKSetType_RK);CHKERRQ(ierr); 964e4dd521cSBarry Smith PetscFunctionReturn(0); 965e4dd521cSBarry Smith } 966