1 /* 2 Code for timestepping with implicit Theta method 3 */ 4 #include <petsc/private/tsimpl.h> /*I "petscts.h" I*/ 5 #include <petscsnes.h> 6 #include <petscdm.h> 7 #include <petscmat.h> 8 9 typedef struct { 10 /* context for time stepping */ 11 PetscReal stage_time; 12 Vec X0,X,Xdot; /* Storage for stages and time derivative */ 13 Vec affine; /* Affine vector needed for residual at beginning of step in endpoint formulation */ 14 PetscReal Theta; 15 PetscReal ptime; 16 PetscReal time_step; 17 PetscInt order; 18 PetscBool endpoint; 19 PetscBool extrapolate; 20 TSStepStatus status; 21 Vec VecCostIntegral0; /* Backup for roll-backs due to events */ 22 23 /* context for sensitivity analysis */ 24 PetscInt num_tlm; /* Total number of tangent linear equations */ 25 Vec *VecsDeltaLam; /* Increment of the adjoint sensitivity w.r.t IC at stage */ 26 Vec *VecsDeltaMu; /* Increment of the adjoint sensitivity w.r.t P at stage */ 27 Vec *VecsSensiTemp; /* Vector to be multiplied with Jacobian transpose */ 28 Mat MatDeltaFwdSensip; /* Increment of the forward sensitivity at stage */ 29 Vec VecDeltaFwdSensipCol; /* Working vector for holding one column of the sensitivity matrix */ 30 Mat MatFwdSensip0; /* backup for roll-backs due to events */ 31 Vec VecIntegralSensipTemp; /* Working vector for forward integral sensitivity */ 32 Vec *VecsIntegralSensip0; /* backup for roll-backs due to events */ 33 Vec *VecsDeltaLam2; /* Increment of the 2nd-order adjoint sensitivity w.r.t IC at stage */ 34 Vec *VecsDeltaMu2; /* Increment of the 2nd-order adjoint sensitivity w.r.t P at stage */ 35 Vec *VecsSensi2Temp; /* Working vectors that holds the residual for the second-order adjoint */ 36 Vec *VecsAffine; /* Working vectors to store residuals */ 37 /* context for error estimation */ 38 Vec vec_sol_prev; 39 Vec vec_lte_work; 40 } TS_Theta; 41 42 static PetscErrorCode TSThetaGetX0AndXdot(TS ts,DM dm,Vec *X0,Vec *Xdot) 43 { 44 TS_Theta *th = (TS_Theta*)ts->data; 45 PetscErrorCode ierr; 46 47 PetscFunctionBegin; 48 if (X0) { 49 if (dm && dm != ts->dm) { 50 ierr = DMGetNamedGlobalVector(dm,"TSTheta_X0",X0);CHKERRQ(ierr); 51 } else *X0 = ts->vec_sol; 52 } 53 if (Xdot) { 54 if (dm && dm != ts->dm) { 55 ierr = DMGetNamedGlobalVector(dm,"TSTheta_Xdot",Xdot);CHKERRQ(ierr); 56 } else *Xdot = th->Xdot; 57 } 58 PetscFunctionReturn(0); 59 } 60 61 static PetscErrorCode TSThetaRestoreX0AndXdot(TS ts,DM dm,Vec *X0,Vec *Xdot) 62 { 63 PetscErrorCode ierr; 64 65 PetscFunctionBegin; 66 if (X0) { 67 if (dm && dm != ts->dm) { 68 ierr = DMRestoreNamedGlobalVector(dm,"TSTheta_X0",X0);CHKERRQ(ierr); 69 } 70 } 71 if (Xdot) { 72 if (dm && dm != ts->dm) { 73 ierr = DMRestoreNamedGlobalVector(dm,"TSTheta_Xdot",Xdot);CHKERRQ(ierr); 74 } 75 } 76 PetscFunctionReturn(0); 77 } 78 79 static PetscErrorCode DMCoarsenHook_TSTheta(DM fine,DM coarse,void *ctx) 80 { 81 PetscFunctionBegin; 82 PetscFunctionReturn(0); 83 } 84 85 static PetscErrorCode DMRestrictHook_TSTheta(DM fine,Mat restrct,Vec rscale,Mat inject,DM coarse,void *ctx) 86 { 87 TS ts = (TS)ctx; 88 PetscErrorCode ierr; 89 Vec X0,Xdot,X0_c,Xdot_c; 90 91 PetscFunctionBegin; 92 ierr = TSThetaGetX0AndXdot(ts,fine,&X0,&Xdot);CHKERRQ(ierr); 93 ierr = TSThetaGetX0AndXdot(ts,coarse,&X0_c,&Xdot_c);CHKERRQ(ierr); 94 ierr = MatRestrict(restrct,X0,X0_c);CHKERRQ(ierr); 95 ierr = MatRestrict(restrct,Xdot,Xdot_c);CHKERRQ(ierr); 96 ierr = VecPointwiseMult(X0_c,rscale,X0_c);CHKERRQ(ierr); 97 ierr = VecPointwiseMult(Xdot_c,rscale,Xdot_c);CHKERRQ(ierr); 98 ierr = TSThetaRestoreX0AndXdot(ts,fine,&X0,&Xdot);CHKERRQ(ierr); 99 ierr = TSThetaRestoreX0AndXdot(ts,coarse,&X0_c,&Xdot_c);CHKERRQ(ierr); 100 PetscFunctionReturn(0); 101 } 102 103 static PetscErrorCode DMSubDomainHook_TSTheta(DM dm,DM subdm,void *ctx) 104 { 105 PetscFunctionBegin; 106 PetscFunctionReturn(0); 107 } 108 109 static PetscErrorCode DMSubDomainRestrictHook_TSTheta(DM dm,VecScatter gscat,VecScatter lscat,DM subdm,void *ctx) 110 { 111 TS ts = (TS)ctx; 112 PetscErrorCode ierr; 113 Vec X0,Xdot,X0_sub,Xdot_sub; 114 115 PetscFunctionBegin; 116 ierr = TSThetaGetX0AndXdot(ts,dm,&X0,&Xdot);CHKERRQ(ierr); 117 ierr = TSThetaGetX0AndXdot(ts,subdm,&X0_sub,&Xdot_sub);CHKERRQ(ierr); 118 119 ierr = VecScatterBegin(gscat,X0,X0_sub,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr); 120 ierr = VecScatterEnd(gscat,X0,X0_sub,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr); 121 122 ierr = VecScatterBegin(gscat,Xdot,Xdot_sub,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr); 123 ierr = VecScatterEnd(gscat,Xdot,Xdot_sub,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr); 124 125 ierr = TSThetaRestoreX0AndXdot(ts,dm,&X0,&Xdot);CHKERRQ(ierr); 126 ierr = TSThetaRestoreX0AndXdot(ts,subdm,&X0_sub,&Xdot_sub);CHKERRQ(ierr); 127 PetscFunctionReturn(0); 128 } 129 130 static PetscErrorCode TSThetaEvaluateCostIntegral(TS ts) 131 { 132 TS_Theta *th = (TS_Theta*)ts->data; 133 PetscErrorCode ierr; 134 135 PetscFunctionBegin; 136 if (th->endpoint) { 137 /* Evolve ts->vec_costintegral to compute integrals */ 138 if (th->Theta!=1.0) { 139 ierr = TSComputeCostIntegrand(ts,th->ptime,th->X0,ts->vec_costintegrand);CHKERRQ(ierr); 140 ierr = VecAXPY(ts->vec_costintegral,th->time_step*(1.0-th->Theta),ts->vec_costintegrand);CHKERRQ(ierr); 141 } 142 ierr = TSComputeCostIntegrand(ts,ts->ptime,ts->vec_sol,ts->vec_costintegrand);CHKERRQ(ierr); 143 ierr = VecAXPY(ts->vec_costintegral,th->time_step*th->Theta,ts->vec_costintegrand);CHKERRQ(ierr); 144 } else { 145 ierr = TSComputeCostIntegrand(ts,th->stage_time,th->X,ts->vec_costintegrand);CHKERRQ(ierr); 146 ierr = VecAXPY(ts->vec_costintegral,th->time_step,ts->vec_costintegrand);CHKERRQ(ierr); 147 } 148 PetscFunctionReturn(0); 149 } 150 151 static PetscErrorCode TSForwardCostIntegral_Theta(TS ts) 152 { 153 TS_Theta *th = (TS_Theta*)ts->data; 154 PetscErrorCode ierr; 155 156 PetscFunctionBegin; 157 /* backup cost integral */ 158 ierr = VecCopy(ts->vec_costintegral,th->VecCostIntegral0);CHKERRQ(ierr); 159 ierr = TSThetaEvaluateCostIntegral(ts);CHKERRQ(ierr); 160 PetscFunctionReturn(0); 161 } 162 163 static PetscErrorCode TSAdjointCostIntegral_Theta(TS ts) 164 { 165 PetscErrorCode ierr; 166 167 PetscFunctionBegin; 168 ierr = TSThetaEvaluateCostIntegral(ts);CHKERRQ(ierr); 169 PetscFunctionReturn(0); 170 } 171 172 static PetscErrorCode TSTheta_SNESSolve(TS ts,Vec b,Vec x) 173 { 174 PetscInt nits,lits; 175 PetscErrorCode ierr; 176 177 PetscFunctionBegin; 178 ierr = SNESSolve(ts->snes,b,x);CHKERRQ(ierr); 179 ierr = SNESGetIterationNumber(ts->snes,&nits);CHKERRQ(ierr); 180 ierr = SNESGetLinearSolveIterations(ts->snes,&lits);CHKERRQ(ierr); 181 ts->snes_its += nits; ts->ksp_its += lits; 182 PetscFunctionReturn(0); 183 } 184 185 static PetscErrorCode TSStep_Theta(TS ts) 186 { 187 TS_Theta *th = (TS_Theta*)ts->data; 188 PetscInt rejections = 0; 189 PetscBool stageok,accept = PETSC_TRUE; 190 PetscReal next_time_step = ts->time_step; 191 PetscErrorCode ierr; 192 193 PetscFunctionBegin; 194 if (!ts->steprollback) { 195 if (th->vec_sol_prev) { ierr = VecCopy(th->X0,th->vec_sol_prev);CHKERRQ(ierr); } 196 ierr = VecCopy(ts->vec_sol,th->X0);CHKERRQ(ierr); 197 } 198 199 th->status = TS_STEP_INCOMPLETE; 200 while (!ts->reason && th->status != TS_STEP_COMPLETE) { 201 202 PetscReal shift = 1/(th->Theta*ts->time_step); 203 th->stage_time = ts->ptime + (th->endpoint ? (PetscReal)1 : th->Theta)*ts->time_step; 204 205 ierr = VecCopy(th->X0,th->X);CHKERRQ(ierr); 206 if (th->extrapolate && !ts->steprestart) { 207 ierr = VecAXPY(th->X,1/shift,th->Xdot);CHKERRQ(ierr); 208 } 209 if (th->endpoint) { /* This formulation assumes linear time-independent mass matrix */ 210 if (!th->affine) {ierr = VecDuplicate(ts->vec_sol,&th->affine);CHKERRQ(ierr);} 211 ierr = VecZeroEntries(th->Xdot);CHKERRQ(ierr); 212 ierr = TSComputeIFunction(ts,ts->ptime,th->X0,th->Xdot,th->affine,PETSC_FALSE);CHKERRQ(ierr); 213 ierr = VecScale(th->affine,(th->Theta-1)/th->Theta);CHKERRQ(ierr); 214 } else if (th->affine) { /* Just in case th->endpoint is changed between calls to TSStep_Theta() */ 215 ierr = VecZeroEntries(th->affine);CHKERRQ(ierr); 216 } 217 ierr = TSPreStage(ts,th->stage_time);CHKERRQ(ierr); 218 ierr = TSTheta_SNESSolve(ts,th->affine,th->X);CHKERRQ(ierr); 219 ierr = TSPostStage(ts,th->stage_time,0,&th->X);CHKERRQ(ierr); 220 ierr = TSAdaptCheckStage(ts->adapt,ts,th->stage_time,th->X,&stageok);CHKERRQ(ierr); 221 if (!stageok) goto reject_step; 222 223 th->status = TS_STEP_PENDING; 224 if (th->endpoint) { 225 ierr = VecCopy(th->X,ts->vec_sol);CHKERRQ(ierr); 226 } else { 227 ierr = VecAXPBYPCZ(th->Xdot,-shift,shift,0,th->X0,th->X);CHKERRQ(ierr); 228 ierr = VecAXPY(ts->vec_sol,ts->time_step,th->Xdot);CHKERRQ(ierr); 229 } 230 ierr = TSAdaptChoose(ts->adapt,ts,ts->time_step,NULL,&next_time_step,&accept);CHKERRQ(ierr); 231 th->status = accept ? TS_STEP_COMPLETE : TS_STEP_INCOMPLETE; 232 if (!accept) { 233 ierr = VecCopy(th->X0,ts->vec_sol);CHKERRQ(ierr); 234 ts->time_step = next_time_step; 235 goto reject_step; 236 } 237 238 if (ts->forward_solve || ts->costintegralfwd) { /* Save the info for the later use in cost integral evaluation */ 239 th->ptime = ts->ptime; 240 th->time_step = ts->time_step; 241 } 242 243 ts->ptime += ts->time_step; 244 ts->time_step = next_time_step; 245 break; 246 247 reject_step: 248 ts->reject++; accept = PETSC_FALSE; 249 if (!ts->reason && ++rejections > ts->max_reject && ts->max_reject >= 0) { 250 ts->reason = TS_DIVERGED_STEP_REJECTED; 251 ierr = PetscInfo2(ts,"Step=%D, step rejections %D greater than current TS allowed, stopping solve\n",ts->steps,rejections);CHKERRQ(ierr); 252 } 253 } 254 PetscFunctionReturn(0); 255 } 256 257 static PetscErrorCode TSAdjointStep_Theta(TS ts) 258 { 259 TS_Theta *th = (TS_Theta*)ts->data; 260 Vec *VecsDeltaLam = th->VecsDeltaLam,*VecsDeltaMu = th->VecsDeltaMu,*VecsSensiTemp = th->VecsSensiTemp; 261 Vec *VecsDeltaLam2 = th->VecsDeltaLam2,*VecsDeltaMu2 = th->VecsDeltaMu2,*VecsSensi2Temp = th->VecsSensi2Temp; 262 PetscInt nadj; 263 Mat J,Jp; 264 KSP ksp; 265 PetscReal shift; 266 PetscScalar *xarr; 267 PetscErrorCode ierr; 268 269 PetscFunctionBegin; 270 th->status = TS_STEP_INCOMPLETE; 271 ierr = SNESGetKSP(ts->snes,&ksp);CHKERRQ(ierr); 272 ierr = TSGetIJacobian(ts,&J,&Jp,NULL,NULL);CHKERRQ(ierr); 273 274 /* If endpoint=1, th->ptime and th->X0 will be used; if endpoint=0, th->stage_time and th->X will be used. */ 275 th->stage_time = th->endpoint ? ts->ptime : (ts->ptime+(1.-th->Theta)*ts->time_step); /* time_step is negative*/ 276 th->ptime = ts->ptime + ts->time_step; 277 th->time_step = -ts->time_step; 278 279 /* Build RHS for first-order adjoint */ 280 if (ts->vec_costintegral) { /* Cost function has an integral term */ 281 if (th->endpoint) { 282 ierr = TSComputeDRDUFunction(ts,th->stage_time,ts->vec_sol,ts->vecs_drdu);CHKERRQ(ierr); 283 } else { 284 ierr = TSComputeDRDUFunction(ts,th->stage_time,th->X,ts->vecs_drdu);CHKERRQ(ierr); 285 } 286 } 287 for (nadj=0; nadj<ts->numcost; nadj++) { 288 ierr = VecCopy(ts->vecs_sensi[nadj],VecsSensiTemp[nadj]);CHKERRQ(ierr); 289 ierr = VecScale(VecsSensiTemp[nadj],1./(th->Theta*th->time_step));CHKERRQ(ierr); 290 if (ts->vec_costintegral) { 291 ierr = VecAXPY(VecsSensiTemp[nadj],1.,ts->vecs_drdu[nadj]);CHKERRQ(ierr); 292 } 293 } 294 295 /* Build LHS for first-order adjoint */ 296 shift = 1./(th->Theta*th->time_step); 297 if (th->endpoint) { 298 ierr = TSComputeIJacobian(ts,th->stage_time,ts->vec_sol,th->Xdot,shift,J,Jp,PETSC_FALSE);CHKERRQ(ierr); 299 } else { 300 ierr = TSComputeIJacobian(ts,th->stage_time,th->X,th->Xdot,shift,J,Jp,PETSC_FALSE);CHKERRQ(ierr); 301 } 302 ierr = KSPSetOperators(ksp,J,Jp);CHKERRQ(ierr); 303 304 /* Solve stage equation LHS*lambda_s = RHS for first-order adjoint */ 305 for (nadj=0; nadj<ts->numcost; nadj++) { 306 ierr = KSPSolveTranspose(ksp,VecsSensiTemp[nadj],VecsDeltaLam[nadj]);CHKERRQ(ierr); 307 } 308 309 if (ts->vecs_sensi2) { /* U_{n+1} */ 310 if (!th->endpoint) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_SUP,"Operation not implemented in TS_Theta"); 311 /* Get w1 at t_{n+1} from TLM matrix */ 312 ierr = MatDenseGetColumn(ts->mat_sensip,0,&xarr);CHKERRQ(ierr); 313 ierr = VecPlaceArray(ts->vec_sensip_col,xarr);CHKERRQ(ierr); 314 /* lambda_s^T F_UU w_1 */ 315 ierr = TSComputeIHessianProductFunction1(ts,th->stage_time,ts->vec_sol,VecsDeltaLam,ts->vec_sensip_col,ts->vecs_fuu);CHKERRQ(ierr); 316 ierr = VecResetArray(ts->vec_sensip_col);CHKERRQ(ierr); 317 ierr = MatDenseRestoreColumn(ts->mat_sensip,&xarr);CHKERRQ(ierr); 318 if (ts->vecs_fup) { 319 /* lambda_s^T F_UP w_2 */ 320 ierr = TSComputeIHessianProductFunction2(ts,th->stage_time,ts->vec_sol,VecsDeltaLam,ts->vec_dir,ts->vecs_fup);CHKERRQ(ierr); 321 } 322 for (nadj=0; nadj<ts->numcost; nadj++) { /* compute the residual */ 323 ierr = VecCopy(ts->vecs_sensi2[nadj],VecsSensi2Temp[nadj]);CHKERRQ(ierr); 324 ierr = VecScale(VecsSensi2Temp[nadj],1./shift);CHKERRQ(ierr); 325 ierr = VecAXPY(VecsSensi2Temp[nadj],1.,ts->vecs_fuu[nadj]);CHKERRQ(ierr); 326 ierr = VecAXPY(VecsSensi2Temp[nadj],1.,ts->vecs_fuu[nadj]);CHKERRQ(ierr); 327 if (ts->vecs_fup) { 328 ierr = VecAXPY(VecsSensi2Temp[nadj],1.,ts->vecs_fup[nadj]);CHKERRQ(ierr); 329 } 330 if (ts->vec_costintegral) { 331 ierr = VecAXPY(VecsSensi2Temp[nadj],1.,ts->vecs_drdu[nadj]);CHKERRQ(ierr); 332 } 333 } 334 /* Solve stage equation LHS X = RHS for second-order adjoint */ 335 for (nadj=0; nadj<ts->numcost; nadj++) { 336 ierr = KSPSolveTranspose(ksp,VecsSensiTemp[nadj],VecsDeltaLam2[nadj]);CHKERRQ(ierr); 337 } 338 } 339 340 /* Update sensitivities, and evaluate integrals if there is any */ 341 if(th->endpoint) { /* two-stage Theta methods */ 342 if (th->Theta!=1.) { /* general case */ 343 shift = 1./((th->Theta-1.)*th->time_step); 344 ierr = TSComputeIJacobian(ts,th->ptime,th->X0,th->Xdot,shift,J,Jp,PETSC_FALSE);CHKERRQ(ierr); 345 if (ts->vec_costintegral) { /* R_U at t_n */ 346 ierr = TSComputeDRDUFunction(ts,th->ptime,th->X0,ts->vecs_drdu);CHKERRQ(ierr); 347 } 348 for (nadj=0; nadj<ts->numcost; nadj++) { 349 ierr = MatMultTranspose(J,VecsDeltaLam[nadj],ts->vecs_sensi[nadj]);CHKERRQ(ierr); 350 ierr = VecScale(ts->vecs_sensi[nadj],1./shift);CHKERRQ(ierr); 351 if (ts->vec_costintegral) { 352 ierr = VecAXPY(ts->vecs_sensi[nadj],-1./shift,ts->vecs_drdu[nadj]);CHKERRQ(ierr); 353 } 354 } 355 if (ts->vecs_sensi2) { /* second-order */ 356 /* Get w1 at t_n from TLM matrix */ 357 ierr = MatDenseGetColumn(th->MatFwdSensip0,0,&xarr);CHKERRQ(ierr); 358 ierr = VecPlaceArray(ts->vec_sensip_col,xarr);CHKERRQ(ierr); 359 /* lambda_s^T F_UU w_1 */ 360 ierr = TSComputeIHessianProductFunction1(ts,th->ptime,th->X0,VecsDeltaLam,ts->vec_sensip_col,ts->vecs_fuu);CHKERRQ(ierr); 361 ierr = VecResetArray(ts->vec_sensip_col);CHKERRQ(ierr); 362 ierr = MatDenseRestoreColumn(ts->mat_sensip,&xarr);CHKERRQ(ierr); 363 if (ts->vecs_fup) { 364 /* lambda_s^T F_UU w_2 */ 365 ierr = TSComputeIHessianProductFunction2(ts,th->ptime,th->X0,VecsDeltaLam,ts->vec_dir,ts->vecs_fup);CHKERRQ(ierr); 366 } 367 for (nadj=0; nadj<ts->numcost; nadj++) { 368 /* M^T Lambda_s + h(1-theta) F_U^T Lambda_s + h(1-theta) R_U */ 369 ierr = MatMultTranspose(J,VecsDeltaLam2[nadj],ts->vecs_sensi2[nadj]);CHKERRQ(ierr); 370 ierr = VecScale(ts->vecs_sensi2[nadj],1./shift);CHKERRQ(ierr); 371 ierr = VecAXPY(ts->vecs_sensi2[nadj],-1./shift,ts->vecs_fuu[nadj]);CHKERRQ(ierr); 372 ierr = VecAXPY(ts->vecs_sensi2[nadj],-1./shift,ts->vecs_fuu[nadj]);CHKERRQ(ierr); 373 if (ts->vecs_fup) { 374 ierr = VecAXPY(ts->vecs_sensi2[nadj],-1./shift,ts->vecs_fup[nadj]);CHKERRQ(ierr); 375 } 376 if (ts->vec_costintegral) { 377 ierr = VecAXPY(ts->vecs_sensi2[nadj],-1./shift,ts->vecs_drdu[nadj]);CHKERRQ(ierr); 378 } 379 } 380 } 381 } else { /* backward Euler */ 382 shift = 0.0; 383 ierr = TSComputeIJacobian(ts,th->stage_time,ts->vec_sol,th->Xdot,shift,J,Jp,PETSC_FALSE);CHKERRQ(ierr); /* get -f_u */ 384 for (nadj=0; nadj<ts->numcost; nadj++) { 385 ierr = MatMultTranspose(J,VecsDeltaLam[nadj],VecsSensiTemp[nadj]);CHKERRQ(ierr); 386 ierr = VecAXPY(ts->vecs_sensi[nadj],-th->time_step,VecsSensiTemp[nadj]);CHKERRQ(ierr); 387 if (ts->vec_costintegral) { /* wrong? */ 388 ierr = VecAXPY(ts->vecs_sensi[nadj],th->time_step,ts->vecs_drdu[nadj]);CHKERRQ(ierr); 389 } 390 } 391 if (ts->vecs_sensi2) { 392 for (nadj=0; nadj<ts->numcost; nadj++) { 393 ierr = MatMultTranspose(J,VecsDeltaLam[nadj],VecsSensi2Temp[nadj]);CHKERRQ(ierr); 394 ierr = VecAXPY(ts->vecs_sensi2[nadj],-th->time_step,VecsSensi2Temp[nadj]);CHKERRQ(ierr); 395 } 396 } 397 } 398 399 if (ts->vecs_sensip) { /* sensitivities wrt parameters */ 400 /* U_{n+1} */ 401 ierr = TSComputeRHSJacobianP(ts,th->stage_time,ts->vec_sol,ts->Jacp);CHKERRQ(ierr); 402 if (ts->vec_costintegral) { 403 ierr = TSComputeDRDPFunction(ts,th->stage_time,ts->vec_sol,ts->vecs_drdp);CHKERRQ(ierr); 404 } 405 for (nadj=0; nadj<ts->numcost; nadj++) { 406 ierr = MatMultTranspose(ts->Jacp,VecsDeltaLam[nadj],VecsDeltaMu[nadj]);CHKERRQ(ierr); 407 ierr = VecAXPY(ts->vecs_sensip[nadj],th->time_step*th->Theta,VecsDeltaMu[nadj]);CHKERRQ(ierr); 408 } 409 if (ts->vecs_sensip2) { /* second-order */ 410 /* lambda_s^T F_PU w_1 */ 411 ierr = TSComputeIHessianProductFunction3(ts,th->stage_time,ts->vec_sol,VecsDeltaLam,ts->vec_sensip_col,ts->vecs_fpu);CHKERRQ(ierr); 412 /* lambda_s^T F_PP w_2 */ 413 ierr = TSComputeIHessianProductFunction4(ts,th->stage_time,ts->vec_sol,VecsDeltaLam,ts->vec_dir,ts->vecs_fpp);CHKERRQ(ierr); 414 for (nadj=0; nadj<ts->numcost; nadj++) { 415 ierr = MatMultTranspose(ts->Jacp,VecsDeltaLam2[nadj],VecsDeltaMu2[nadj]);CHKERRQ(ierr); 416 ierr = VecAXPY(ts->vecs_sensip2[nadj],th->time_step*th->Theta,VecsDeltaMu2[nadj]);CHKERRQ(ierr); 417 if (ts->vecs_fpu) { 418 ierr = VecAXPY(ts->vecs_sensi2[nadj],th->time_step*th->Theta,ts->vecs_fpu[nadj]);CHKERRQ(ierr); 419 } 420 if (ts->vecs_fpp) { 421 ierr = VecAXPY(ts->vecs_sensi2[nadj],th->time_step*th->Theta,ts->vecs_fpp[nadj]);CHKERRQ(ierr); 422 } 423 if (ts->vec_costintegral) { 424 ierr = VecAXPY(ts->vecs_sensip2[nadj],th->time_step*th->Theta,ts->vecs_drdp[nadj]);CHKERRQ(ierr); 425 } 426 } 427 } 428 429 /* U_s */ 430 if (th->Theta!=1.) { 431 ierr = TSComputeRHSJacobianP(ts,th->ptime,th->X0,ts->Jacp);CHKERRQ(ierr); 432 if (ts->vec_costintegral) { 433 ierr = TSComputeDRDPFunction(ts,th->ptime,th->X0,ts->vecs_drdp);CHKERRQ(ierr); 434 } 435 for (nadj=0; nadj<ts->numcost; nadj++) { 436 ierr = MatMultTranspose(ts->Jacp,VecsDeltaLam[nadj],VecsDeltaMu[nadj]);CHKERRQ(ierr); 437 ierr = VecAXPY(ts->vecs_sensip[nadj],th->time_step*(1.-th->Theta),VecsDeltaMu[nadj]);CHKERRQ(ierr); 438 if (ts->vecs_sensip2) { /* second-order */ 439 /* lambda_s^T F_PU w_1 */ 440 ierr = TSComputeIHessianProductFunction3(ts,th->stage_time,ts->vec_sol,VecsDeltaLam,ts->vec_sensip_col,ts->vecs_fpu);CHKERRQ(ierr); 441 /* lambda_s^T F_PP w_2 */ 442 ierr = TSComputeIHessianProductFunction4(ts,th->stage_time,ts->vec_sol,VecsDeltaLam,ts->vec_dir,ts->vecs_fpp);CHKERRQ(ierr); 443 for (nadj=0; nadj<ts->numcost; nadj++) { 444 ierr = MatMultTranspose(ts->Jacp,VecsDeltaLam2[nadj],VecsDeltaMu2[nadj]);CHKERRQ(ierr); 445 ierr = VecAXPY(ts->vecs_sensip2[nadj],th->time_step*(1.-th->Theta),VecsDeltaMu2[nadj]);CHKERRQ(ierr); 446 if (ts->vecs_fpu) { 447 ierr = VecAXPY(ts->vecs_sensi2[nadj],th->time_step*(1.-th->Theta),ts->vecs_fpu[nadj]);CHKERRQ(ierr); 448 } 449 if (ts->vecs_fpp) { 450 ierr = VecAXPY(ts->vecs_sensi2[nadj],th->time_step*(1.-th->Theta),ts->vecs_fpp[nadj]);CHKERRQ(ierr); 451 } 452 if (ts->vec_costintegral) { 453 ierr = VecAXPY(ts->vecs_sensip2[nadj],th->time_step*(1.-th->Theta),ts->vecs_drdp[nadj]);CHKERRQ(ierr); 454 } 455 } 456 } 457 } 458 } 459 } 460 } else { /* one-stage case */ 461 shift = 0.0; 462 ierr = TSComputeIJacobian(ts,th->stage_time,th->X,th->Xdot,shift,J,Jp,PETSC_FALSE);CHKERRQ(ierr); /* get -f_y */ 463 if (ts->vec_costintegral) { 464 ierr = TSComputeDRDUFunction(ts,th->stage_time,th->X,ts->vecs_drdu);CHKERRQ(ierr); 465 } 466 for (nadj=0; nadj<ts->numcost; nadj++) { 467 ierr = MatMultTranspose(J,VecsDeltaLam[nadj],VecsSensiTemp[nadj]);CHKERRQ(ierr); 468 ierr = VecAXPY(ts->vecs_sensi[nadj],-th->time_step,VecsSensiTemp[nadj]);CHKERRQ(ierr); 469 if (ts->vec_costintegral) { 470 ierr = VecAXPY(ts->vecs_sensi[nadj],th->time_step,ts->vecs_drdu[nadj]);CHKERRQ(ierr); 471 } 472 } 473 if (ts->vecs_sensip) { 474 ierr = TSComputeRHSJacobianP(ts,th->stage_time,th->X,ts->Jacp);CHKERRQ(ierr); 475 for (nadj=0; nadj<ts->numcost; nadj++) { 476 ierr = MatMultTranspose(ts->Jacp,VecsDeltaLam[nadj],VecsDeltaMu[nadj]);CHKERRQ(ierr); 477 ierr = VecAXPY(ts->vecs_sensip[nadj],th->time_step,VecsDeltaMu[nadj]);CHKERRQ(ierr); 478 } 479 if (ts->vec_costintegral) { 480 ierr = TSComputeDRDPFunction(ts,th->stage_time,th->X,ts->vecs_drdp);CHKERRQ(ierr); 481 for (nadj=0; nadj<ts->numcost; nadj++) { 482 ierr = VecAXPY(ts->vecs_sensip[nadj],th->time_step,ts->vecs_drdp[nadj]);CHKERRQ(ierr); 483 } 484 } 485 } 486 } 487 488 th->status = TS_STEP_COMPLETE; 489 PetscFunctionReturn(0); 490 } 491 492 static PetscErrorCode TSInterpolate_Theta(TS ts,PetscReal t,Vec X) 493 { 494 TS_Theta *th = (TS_Theta*)ts->data; 495 PetscReal dt = t - ts->ptime; 496 PetscErrorCode ierr; 497 498 PetscFunctionBegin; 499 ierr = VecCopy(ts->vec_sol,th->X);CHKERRQ(ierr); 500 if (th->endpoint) dt *= th->Theta; 501 ierr = VecWAXPY(X,dt,th->Xdot,th->X);CHKERRQ(ierr); 502 PetscFunctionReturn(0); 503 } 504 505 static PetscErrorCode TSEvaluateWLTE_Theta(TS ts,NormType wnormtype,PetscInt *order,PetscReal *wlte) 506 { 507 TS_Theta *th = (TS_Theta*)ts->data; 508 Vec X = ts->vec_sol; /* X = solution */ 509 Vec Y = th->vec_lte_work; /* Y = X + LTE */ 510 PetscReal wltea,wlter; 511 PetscErrorCode ierr; 512 513 PetscFunctionBegin; 514 if (!th->vec_sol_prev) {*wlte = -1; PetscFunctionReturn(0);} 515 /* Cannot compute LTE in first step or in restart after event */ 516 if (ts->steprestart) {*wlte = -1; PetscFunctionReturn(0);} 517 /* Compute LTE using backward differences with non-constant time step */ 518 { 519 PetscReal h = ts->time_step, h_prev = ts->ptime - ts->ptime_prev; 520 PetscReal a = 1 + h_prev/h; 521 PetscScalar scal[3]; Vec vecs[3]; 522 scal[0] = +1/a; scal[1] = -1/(a-1); scal[2] = +1/(a*(a-1)); 523 vecs[0] = X; vecs[1] = th->X0; vecs[2] = th->vec_sol_prev; 524 ierr = VecCopy(X,Y);CHKERRQ(ierr); 525 ierr = VecMAXPY(Y,3,scal,vecs);CHKERRQ(ierr); 526 ierr = TSErrorWeightedNorm(ts,X,Y,wnormtype,wlte,&wltea,&wlter);CHKERRQ(ierr); 527 } 528 if (order) *order = 2; 529 PetscFunctionReturn(0); 530 } 531 532 static PetscErrorCode TSRollBack_Theta(TS ts) 533 { 534 TS_Theta *th = (TS_Theta*)ts->data; 535 PetscInt ncost; 536 PetscErrorCode ierr; 537 538 PetscFunctionBegin; 539 ierr = VecCopy(th->X0,ts->vec_sol);CHKERRQ(ierr); 540 if (ts->vec_costintegral && ts->costintegralfwd) { 541 ierr = VecCopy(th->VecCostIntegral0,ts->vec_costintegral);CHKERRQ(ierr); 542 } 543 th->status = TS_STEP_INCOMPLETE; 544 if (ts->mat_sensip) { 545 ierr = MatCopy(th->MatFwdSensip0,ts->mat_sensip,SAME_NONZERO_PATTERN);CHKERRQ(ierr); 546 } 547 if (ts->vecs_integral_sensip) { 548 for (ncost=0;ncost<ts->numcost;ncost++) { 549 ierr = VecCopy(th->VecsIntegralSensip0[ncost],ts->vecs_integral_sensip[ncost]);CHKERRQ(ierr); 550 } 551 } 552 PetscFunctionReturn(0); 553 } 554 555 static PetscErrorCode TSForwardStep_Theta(TS ts) 556 { 557 TS_Theta *th = (TS_Theta*)ts->data; 558 Mat MatDeltaFwdSensip = th->MatDeltaFwdSensip; 559 Vec VecDeltaFwdSensipCol = th->VecDeltaFwdSensipCol; 560 PetscInt ncost,ntlm; 561 KSP ksp; 562 Mat J,Jp; 563 PetscReal shift; 564 PetscScalar *barr,*xarr; 565 PetscErrorCode ierr; 566 567 PetscFunctionBegin; 568 ierr = MatCopy(ts->mat_sensip,th->MatFwdSensip0,SAME_NONZERO_PATTERN);CHKERRQ(ierr); 569 570 for (ncost=0; ncost<ts->numcost; ncost++) { 571 if (ts->vecs_integral_sensip) { 572 ierr = VecCopy(ts->vecs_integral_sensip[ncost],th->VecsIntegralSensip0[ncost]);CHKERRQ(ierr); 573 } 574 } 575 576 ierr = SNESGetKSP(ts->snes,&ksp);CHKERRQ(ierr); 577 ierr = TSGetIJacobian(ts,&J,&Jp,NULL,NULL);CHKERRQ(ierr); 578 579 /* Build RHS */ 580 if (th->endpoint) { /* 2-stage method*/ 581 shift = 1./((th->Theta-1.)*th->time_step); 582 ierr = TSComputeIJacobian(ts,th->ptime,th->X0,th->Xdot,shift,J,Jp,PETSC_FALSE);CHKERRQ(ierr); 583 ierr = MatMatMult(J,ts->mat_sensip,MAT_REUSE_MATRIX,PETSC_DEFAULT,&MatDeltaFwdSensip);CHKERRQ(ierr); 584 ierr = MatScale(MatDeltaFwdSensip,(th->Theta-1.)/th->Theta);CHKERRQ(ierr); 585 586 /* Add the f_p forcing terms */ 587 if (ts->Jacp) { 588 ierr = TSComputeRHSJacobianP(ts,th->ptime,th->X0,ts->Jacp);CHKERRQ(ierr); 589 ierr = MatAXPY(MatDeltaFwdSensip,(1.-th->Theta)/th->Theta,ts->Jacp,SUBSET_NONZERO_PATTERN);CHKERRQ(ierr); 590 ierr = TSComputeRHSJacobianP(ts,th->stage_time,ts->vec_sol,ts->Jacp);CHKERRQ(ierr); 591 ierr = MatAXPY(MatDeltaFwdSensip,1.,ts->Jacp,SUBSET_NONZERO_PATTERN);CHKERRQ(ierr); 592 } 593 } else { /* 1-stage method */ 594 shift = 0.0; 595 ierr = TSComputeIJacobian(ts,th->stage_time,th->X,th->Xdot,shift,J,Jp,PETSC_FALSE);CHKERRQ(ierr); 596 ierr = MatMatMult(J,ts->mat_sensip,MAT_REUSE_MATRIX,PETSC_DEFAULT,&MatDeltaFwdSensip);CHKERRQ(ierr); 597 ierr = MatScale(MatDeltaFwdSensip,-1.);CHKERRQ(ierr); 598 599 /* Add the f_p forcing terms */ 600 if (ts->Jacp) { 601 ierr = TSComputeRHSJacobianP(ts,th->stage_time,th->X,ts->Jacp);CHKERRQ(ierr); 602 ierr = MatAXPY(MatDeltaFwdSensip,1.,ts->Jacp,SUBSET_NONZERO_PATTERN);CHKERRQ(ierr); 603 } 604 } 605 606 /* Build LHS */ 607 shift = 1/(th->Theta*th->time_step); 608 if (th->endpoint) { 609 ierr = TSComputeIJacobian(ts,th->stage_time,ts->vec_sol,th->Xdot,shift,J,Jp,PETSC_FALSE);CHKERRQ(ierr); 610 } else { 611 ierr = TSComputeIJacobian(ts,th->stage_time,th->X,th->Xdot,shift,J,Jp,PETSC_FALSE);CHKERRQ(ierr); 612 } 613 ierr = KSPSetOperators(ksp,J,Jp);CHKERRQ(ierr); 614 615 /* 616 Evaluate the first stage of integral gradients with the 2-stage method: 617 drdu|t_n*S(t_n) + drdp|t_n 618 This is done before the linear solve because the sensitivity variable S(t_n) will be propagated to S(t_{n+1}) 619 */ 620 if (th->endpoint) { /* 2-stage method only */ 621 if (ts->vecs_integral_sensip) { 622 ierr = TSComputeDRDUFunction(ts,th->ptime,th->X0,ts->vecs_drdu);CHKERRQ(ierr); 623 if (ts->vecs_drdp) { 624 ierr = TSComputeDRDPFunction(ts,th->ptime,th->X0,ts->vecs_drdp);CHKERRQ(ierr); 625 } 626 for (ncost=0; ncost<ts->numcost; ncost++) { 627 ierr = MatMultTranspose(ts->mat_sensip,ts->vecs_drdu[ncost],th->VecIntegralSensipTemp);CHKERRQ(ierr); 628 if (ts->vecs_drdp) { 629 ierr = VecAXPY(th->VecIntegralSensipTemp,1,ts->vecs_drdp[ncost]);CHKERRQ(ierr); 630 } 631 ierr = VecAXPY(ts->vecs_integral_sensip[ncost],th->time_step*(1.-th->Theta),th->VecIntegralSensipTemp);CHKERRQ(ierr); 632 } 633 } 634 } 635 636 /* Solve the tangent linear equation for forward sensitivities to parameters */ 637 for (ntlm=0; ntlm<th->num_tlm; ntlm++) { 638 KSPConvergedReason kspreason; 639 ierr = MatDenseGetColumn(MatDeltaFwdSensip,ntlm,&barr);CHKERRQ(ierr); 640 ierr = VecPlaceArray(VecDeltaFwdSensipCol,barr);CHKERRQ(ierr); 641 if (th->endpoint) { 642 ierr = MatDenseGetColumn(ts->mat_sensip,ntlm,&xarr);CHKERRQ(ierr); 643 ierr = VecPlaceArray(ts->vec_sensip_col,xarr);CHKERRQ(ierr); 644 ierr = KSPSolve(ksp,VecDeltaFwdSensipCol,ts->vec_sensip_col);CHKERRQ(ierr); 645 ierr = VecResetArray(ts->vec_sensip_col);CHKERRQ(ierr); 646 ierr = MatDenseRestoreColumn(ts->mat_sensip,&xarr);CHKERRQ(ierr); 647 } else { 648 ierr = KSPSolve(ksp,VecDeltaFwdSensipCol,VecDeltaFwdSensipCol);CHKERRQ(ierr); 649 } 650 ierr = KSPGetConvergedReason(ksp,&kspreason);CHKERRQ(ierr); 651 if (kspreason < 0) { 652 ts->reason = TSFORWARD_DIVERGED_LINEAR_SOLVE; 653 ierr = PetscInfo2(ts,"Step=%D, %Dth tangent linear solve, linear solve fails, stopping tangent linear solve\n",ts->steps,ntlm);CHKERRQ(ierr); 654 } 655 ierr = VecResetArray(VecDeltaFwdSensipCol);CHKERRQ(ierr); 656 ierr = MatDenseRestoreColumn(MatDeltaFwdSensip,&barr);CHKERRQ(ierr); 657 } 658 659 660 /* 661 Evaluate the second stage of integral gradients with the 2-stage method: 662 drdu|t_{n+1}*S(t_{n+1}) + drdp|t_{n+1} 663 */ 664 if (ts->vecs_integral_sensip) { 665 if (!th->endpoint) { 666 ierr = MatAXPY(ts->mat_sensip,1,MatDeltaFwdSensip,SAME_NONZERO_PATTERN);CHKERRQ(ierr); 667 ierr = TSComputeDRDUFunction(ts,th->stage_time,th->X,ts->vecs_drdu);CHKERRQ(ierr); 668 if (ts->vecs_drdp) { 669 ierr = TSComputeDRDPFunction(ts,th->stage_time,th->X,ts->vecs_drdp);CHKERRQ(ierr); 670 } 671 for (ncost=0; ncost<ts->numcost; ncost++) { 672 ierr = MatMultTranspose(ts->mat_sensip,ts->vecs_drdu[ncost],th->VecIntegralSensipTemp);CHKERRQ(ierr); 673 if (ts->vecs_drdp) { 674 ierr = VecAXPY(th->VecIntegralSensipTemp,1,ts->vecs_drdp[ncost]);CHKERRQ(ierr); 675 } 676 ierr = VecAXPY(ts->vecs_integral_sensip[ncost],th->time_step,th->VecIntegralSensipTemp);CHKERRQ(ierr); 677 } 678 ierr = MatAXPY(ts->mat_sensip,(1.-th->Theta)/th->Theta,MatDeltaFwdSensip,SAME_NONZERO_PATTERN);CHKERRQ(ierr); 679 } else { 680 ierr = TSComputeDRDUFunction(ts,th->stage_time,ts->vec_sol,ts->vecs_drdu);CHKERRQ(ierr); 681 if (ts->vecs_drdp) { 682 ierr = TSComputeDRDPFunction(ts,th->stage_time,ts->vec_sol,ts->vecs_drdp);CHKERRQ(ierr); 683 } 684 for (ncost=0; ncost<ts->numcost; ncost++) { 685 ierr = MatMultTranspose(ts->mat_sensip,ts->vecs_drdu[ncost],th->VecIntegralSensipTemp);CHKERRQ(ierr); 686 if (ts->vecs_drdp) { 687 ierr = VecAXPY(th->VecIntegralSensipTemp,1,ts->vecs_drdp[ncost]);CHKERRQ(ierr); 688 } 689 ierr = VecAXPY(ts->vecs_integral_sensip[ncost],th->time_step*th->Theta,th->VecIntegralSensipTemp);CHKERRQ(ierr); 690 } 691 } 692 } else { 693 if (!th->endpoint) { 694 ierr = MatAXPY(ts->mat_sensip,1./th->Theta,MatDeltaFwdSensip,SAME_NONZERO_PATTERN);CHKERRQ(ierr); 695 } 696 } 697 PetscFunctionReturn(0); 698 } 699 700 static PetscErrorCode TSForwardGetStages_Theta(TS ts,PetscInt *ns,Mat **stagesensip) 701 { 702 TS_Theta *th = (TS_Theta*)ts->data; 703 704 PetscFunctionBegin; 705 if (ns) *ns = 1; 706 if (stagesensip) *stagesensip = th->endpoint ? &(th->MatFwdSensip0) : &(th->MatDeltaFwdSensip); 707 PetscFunctionReturn(0); 708 } 709 710 /*------------------------------------------------------------*/ 711 static PetscErrorCode TSReset_Theta(TS ts) 712 { 713 TS_Theta *th = (TS_Theta*)ts->data; 714 PetscErrorCode ierr; 715 716 PetscFunctionBegin; 717 ierr = VecDestroy(&th->X);CHKERRQ(ierr); 718 ierr = VecDestroy(&th->Xdot);CHKERRQ(ierr); 719 ierr = VecDestroy(&th->X0);CHKERRQ(ierr); 720 ierr = VecDestroy(&th->affine);CHKERRQ(ierr); 721 722 ierr = VecDestroy(&th->vec_sol_prev);CHKERRQ(ierr); 723 ierr = VecDestroy(&th->vec_lte_work);CHKERRQ(ierr); 724 725 ierr = VecDestroy(&th->VecCostIntegral0);CHKERRQ(ierr); 726 if (ts->forward_solve) { 727 if (ts->vecs_integral_sensip) { 728 ierr = VecDestroy(&th->VecIntegralSensipTemp);CHKERRQ(ierr); 729 ierr = VecDestroyVecs(ts->numcost,&th->VecsIntegralSensip0);CHKERRQ(ierr); 730 } 731 ierr = VecDestroy(&th->VecDeltaFwdSensipCol);CHKERRQ(ierr); 732 ierr = MatDestroy(&th->MatDeltaFwdSensip);CHKERRQ(ierr); 733 ierr = MatDestroy(&th->MatFwdSensip0);CHKERRQ(ierr); 734 } 735 ierr = VecDestroyVecs(ts->numcost,&th->VecsDeltaLam);CHKERRQ(ierr); 736 ierr = VecDestroyVecs(ts->numcost,&th->VecsDeltaMu);CHKERRQ(ierr); 737 ierr = VecDestroyVecs(ts->numcost,&th->VecsDeltaLam2);CHKERRQ(ierr); 738 ierr = VecDestroyVecs(ts->numcost,&th->VecsDeltaMu2);CHKERRQ(ierr); 739 ierr = VecDestroyVecs(ts->numcost,&th->VecsSensiTemp);CHKERRQ(ierr); 740 ierr = VecDestroyVecs(ts->numcost,&th->VecsSensi2Temp);CHKERRQ(ierr); 741 742 PetscFunctionReturn(0); 743 } 744 745 static PetscErrorCode TSAdjointReset_Theta(TS ts) 746 { 747 TS_Theta *th = (TS_Theta*)ts->data; 748 PetscErrorCode ierr; 749 750 PetscFunctionBegin; 751 ierr = VecDestroyVecs(ts->numcost,&th->VecsDeltaLam);CHKERRQ(ierr); 752 ierr = VecDestroyVecs(ts->numcost,&th->VecsDeltaMu);CHKERRQ(ierr); 753 ierr = VecDestroyVecs(ts->numcost,&th->VecsDeltaLam2);CHKERRQ(ierr); 754 ierr = VecDestroyVecs(ts->numcost,&th->VecsDeltaMu2);CHKERRQ(ierr); 755 ierr = VecDestroyVecs(ts->numcost,&th->VecsSensiTemp);CHKERRQ(ierr); 756 ierr = VecDestroyVecs(ts->numcost,&th->VecsSensi2Temp);CHKERRQ(ierr); 757 PetscFunctionReturn(0); 758 } 759 760 static PetscErrorCode TSDestroy_Theta(TS ts) 761 { 762 PetscErrorCode ierr; 763 764 PetscFunctionBegin; 765 ierr = TSReset_Theta(ts);CHKERRQ(ierr); 766 if (ts->dm) { 767 ierr = DMCoarsenHookRemove(ts->dm,DMCoarsenHook_TSTheta,DMRestrictHook_TSTheta,ts);CHKERRQ(ierr); 768 ierr = DMSubDomainHookRemove(ts->dm,DMSubDomainHook_TSTheta,DMSubDomainRestrictHook_TSTheta,ts);CHKERRQ(ierr); 769 } 770 ierr = PetscFree(ts->data);CHKERRQ(ierr); 771 ierr = PetscObjectComposeFunction((PetscObject)ts,"TSThetaGetTheta_C",NULL);CHKERRQ(ierr); 772 ierr = PetscObjectComposeFunction((PetscObject)ts,"TSThetaSetTheta_C",NULL);CHKERRQ(ierr); 773 ierr = PetscObjectComposeFunction((PetscObject)ts,"TSThetaGetEndpoint_C",NULL);CHKERRQ(ierr); 774 ierr = PetscObjectComposeFunction((PetscObject)ts,"TSThetaSetEndpoint_C",NULL);CHKERRQ(ierr); 775 PetscFunctionReturn(0); 776 } 777 778 /* 779 This defines the nonlinear equation that is to be solved with SNES 780 G(U) = F[t0+Theta*dt, U, (U-U0)*shift] = 0 781 */ 782 static PetscErrorCode SNESTSFormFunction_Theta(SNES snes,Vec x,Vec y,TS ts) 783 { 784 TS_Theta *th = (TS_Theta*)ts->data; 785 PetscErrorCode ierr; 786 Vec X0,Xdot; 787 DM dm,dmsave; 788 PetscReal shift = 1/(th->Theta*ts->time_step); 789 790 PetscFunctionBegin; 791 ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr); 792 /* When using the endpoint variant, this is actually 1/Theta * Xdot */ 793 ierr = TSThetaGetX0AndXdot(ts,dm,&X0,&Xdot);CHKERRQ(ierr); 794 ierr = VecAXPBYPCZ(Xdot,-shift,shift,0,X0,x);CHKERRQ(ierr); 795 796 /* DM monkey-business allows user code to call TSGetDM() inside of functions evaluated on levels of FAS */ 797 dmsave = ts->dm; 798 ts->dm = dm; 799 ierr = TSComputeIFunction(ts,th->stage_time,x,Xdot,y,PETSC_FALSE);CHKERRQ(ierr); 800 ts->dm = dmsave; 801 ierr = TSThetaRestoreX0AndXdot(ts,dm,&X0,&Xdot);CHKERRQ(ierr); 802 PetscFunctionReturn(0); 803 } 804 805 static PetscErrorCode SNESTSFormJacobian_Theta(SNES snes,Vec x,Mat A,Mat B,TS ts) 806 { 807 TS_Theta *th = (TS_Theta*)ts->data; 808 PetscErrorCode ierr; 809 Vec Xdot; 810 DM dm,dmsave; 811 PetscReal shift = 1/(th->Theta*ts->time_step); 812 813 PetscFunctionBegin; 814 ierr = SNESGetDM(snes,&dm);CHKERRQ(ierr); 815 /* Xdot has already been computed in SNESTSFormFunction_Theta (SNES guarantees this) */ 816 ierr = TSThetaGetX0AndXdot(ts,dm,NULL,&Xdot);CHKERRQ(ierr); 817 818 dmsave = ts->dm; 819 ts->dm = dm; 820 ierr = TSComputeIJacobian(ts,th->stage_time,x,Xdot,shift,A,B,PETSC_FALSE);CHKERRQ(ierr); 821 ts->dm = dmsave; 822 ierr = TSThetaRestoreX0AndXdot(ts,dm,NULL,&Xdot);CHKERRQ(ierr); 823 PetscFunctionReturn(0); 824 } 825 826 static PetscErrorCode TSForwardSetUp_Theta(TS ts) 827 { 828 TS_Theta *th = (TS_Theta*)ts->data; 829 PetscErrorCode ierr; 830 831 PetscFunctionBegin; 832 /* combine sensitivities to parameters and sensitivities to initial values into one array */ 833 th->num_tlm = ts->num_parameters; 834 ierr = MatDuplicate(ts->mat_sensip,MAT_DO_NOT_COPY_VALUES,&th->MatDeltaFwdSensip);CHKERRQ(ierr); 835 if (ts->vecs_integral_sensip) { 836 ierr = VecDuplicate(ts->vecs_integral_sensip[0],&th->VecIntegralSensipTemp);CHKERRQ(ierr); 837 } 838 /* backup sensitivity results for roll-backs */ 839 ierr = MatDuplicate(ts->mat_sensip,MAT_DO_NOT_COPY_VALUES,&th->MatFwdSensip0);CHKERRQ(ierr); 840 841 if (ts->vecs_integral_sensip) { 842 ierr = VecDuplicateVecs(ts->vecs_integral_sensip[0],ts->numcost,&th->VecsIntegralSensip0);CHKERRQ(ierr); 843 } 844 ierr = VecDuplicate(ts->vec_sol,&th->VecDeltaFwdSensipCol);CHKERRQ(ierr); 845 ierr = VecDuplicate(ts->vec_sol,&ts->vec_sensip_col);CHKERRQ(ierr); 846 PetscFunctionReturn(0); 847 } 848 849 static PetscErrorCode TSSetUp_Theta(TS ts) 850 { 851 TS_Theta *th = (TS_Theta*)ts->data; 852 PetscBool match; 853 PetscErrorCode ierr; 854 855 PetscFunctionBegin; 856 if (!th->VecCostIntegral0 && ts->vec_costintegral && ts->costintegralfwd) { /* back up cost integral */ 857 ierr = VecDuplicate(ts->vec_costintegral,&th->VecCostIntegral0);CHKERRQ(ierr); 858 } 859 if (!th->X) { 860 ierr = VecDuplicate(ts->vec_sol,&th->X);CHKERRQ(ierr); 861 } 862 if (!th->Xdot) { 863 ierr = VecDuplicate(ts->vec_sol,&th->Xdot);CHKERRQ(ierr); 864 } 865 if (!th->X0) { 866 ierr = VecDuplicate(ts->vec_sol,&th->X0);CHKERRQ(ierr); 867 } 868 if (th->endpoint) { 869 ierr = VecDuplicate(ts->vec_sol,&th->affine);CHKERRQ(ierr); 870 } 871 872 th->order = (th->Theta == 0.5) ? 2 : 1; 873 874 ierr = TSGetDM(ts,&ts->dm);CHKERRQ(ierr); 875 ierr = DMCoarsenHookAdd(ts->dm,DMCoarsenHook_TSTheta,DMRestrictHook_TSTheta,ts);CHKERRQ(ierr); 876 ierr = DMSubDomainHookAdd(ts->dm,DMSubDomainHook_TSTheta,DMSubDomainRestrictHook_TSTheta,ts);CHKERRQ(ierr); 877 878 ierr = TSGetAdapt(ts,&ts->adapt);CHKERRQ(ierr); 879 ierr = TSAdaptCandidatesClear(ts->adapt);CHKERRQ(ierr); 880 ierr = PetscObjectTypeCompare((PetscObject)ts->adapt,TSADAPTNONE,&match);CHKERRQ(ierr); 881 if (!match) { 882 ierr = VecDuplicate(ts->vec_sol,&th->vec_sol_prev);CHKERRQ(ierr); 883 ierr = VecDuplicate(ts->vec_sol,&th->vec_lte_work);CHKERRQ(ierr); 884 } 885 ierr = TSGetSNES(ts,&ts->snes);CHKERRQ(ierr); 886 PetscFunctionReturn(0); 887 } 888 889 /*------------------------------------------------------------*/ 890 891 static PetscErrorCode TSAdjointSetUp_Theta(TS ts) 892 { 893 TS_Theta *th = (TS_Theta*)ts->data; 894 PetscErrorCode ierr; 895 896 PetscFunctionBegin; 897 ierr = VecDuplicateVecs(ts->vecs_sensi[0],ts->numcost,&th->VecsDeltaLam);CHKERRQ(ierr); 898 ierr = VecDuplicateVecs(ts->vecs_sensi[0],ts->numcost,&th->VecsSensiTemp);CHKERRQ(ierr); 899 if (ts->vecs_sensip) { 900 ierr = VecDuplicateVecs(ts->vecs_sensip[0],ts->numcost,&th->VecsDeltaMu);CHKERRQ(ierr); 901 } 902 if (ts->vecs_sensi2) { 903 ierr = VecDuplicateVecs(ts->vecs_sensi[0],ts->numcost,&th->VecsDeltaLam2);CHKERRQ(ierr); 904 ierr = VecDuplicateVecs(ts->vecs_sensi2[0],ts->numcost,&th->VecsSensi2Temp);CHKERRQ(ierr); 905 } 906 if (ts->vecs_sensip2) { 907 ierr = VecDuplicateVecs(ts->vecs_sensi2[0],ts->numcost,&th->VecsDeltaMu2);CHKERRQ(ierr); 908 } 909 PetscFunctionReturn(0); 910 } 911 912 static PetscErrorCode TSSetFromOptions_Theta(PetscOptionItems *PetscOptionsObject,TS ts) 913 { 914 TS_Theta *th = (TS_Theta*)ts->data; 915 PetscErrorCode ierr; 916 917 PetscFunctionBegin; 918 ierr = PetscOptionsHead(PetscOptionsObject,"Theta ODE solver options");CHKERRQ(ierr); 919 { 920 ierr = PetscOptionsReal("-ts_theta_theta","Location of stage (0<Theta<=1)","TSThetaSetTheta",th->Theta,&th->Theta,NULL);CHKERRQ(ierr); 921 ierr = PetscOptionsBool("-ts_theta_endpoint","Use the endpoint instead of midpoint form of the Theta method","TSThetaSetEndpoint",th->endpoint,&th->endpoint,NULL);CHKERRQ(ierr); 922 ierr = PetscOptionsBool("-ts_theta_initial_guess_extrapolate","Extrapolate stage initial guess from previous solution (sometimes unstable)","TSThetaSetExtrapolate",th->extrapolate,&th->extrapolate,NULL);CHKERRQ(ierr); 923 } 924 ierr = PetscOptionsTail();CHKERRQ(ierr); 925 PetscFunctionReturn(0); 926 } 927 928 static PetscErrorCode TSView_Theta(TS ts,PetscViewer viewer) 929 { 930 TS_Theta *th = (TS_Theta*)ts->data; 931 PetscBool iascii; 932 PetscErrorCode ierr; 933 934 PetscFunctionBegin; 935 ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERASCII,&iascii);CHKERRQ(ierr); 936 if (iascii) { 937 ierr = PetscViewerASCIIPrintf(viewer," Theta=%g\n",(double)th->Theta);CHKERRQ(ierr); 938 ierr = PetscViewerASCIIPrintf(viewer," Extrapolation=%s\n",th->extrapolate ? "yes" : "no");CHKERRQ(ierr); 939 } 940 PetscFunctionReturn(0); 941 } 942 943 static PetscErrorCode TSThetaGetTheta_Theta(TS ts,PetscReal *theta) 944 { 945 TS_Theta *th = (TS_Theta*)ts->data; 946 947 PetscFunctionBegin; 948 *theta = th->Theta; 949 PetscFunctionReturn(0); 950 } 951 952 static PetscErrorCode TSThetaSetTheta_Theta(TS ts,PetscReal theta) 953 { 954 TS_Theta *th = (TS_Theta*)ts->data; 955 956 PetscFunctionBegin; 957 if (theta <= 0 || 1 < theta) SETERRQ1(PetscObjectComm((PetscObject)ts),PETSC_ERR_ARG_OUTOFRANGE,"Theta %g not in range (0,1]",(double)theta); 958 th->Theta = theta; 959 th->order = (th->Theta == 0.5) ? 2 : 1; 960 PetscFunctionReturn(0); 961 } 962 963 static PetscErrorCode TSThetaGetEndpoint_Theta(TS ts,PetscBool *endpoint) 964 { 965 TS_Theta *th = (TS_Theta*)ts->data; 966 967 PetscFunctionBegin; 968 *endpoint = th->endpoint; 969 PetscFunctionReturn(0); 970 } 971 972 static PetscErrorCode TSThetaSetEndpoint_Theta(TS ts,PetscBool flg) 973 { 974 TS_Theta *th = (TS_Theta*)ts->data; 975 976 PetscFunctionBegin; 977 th->endpoint = flg; 978 PetscFunctionReturn(0); 979 } 980 981 #if defined(PETSC_HAVE_COMPLEX) 982 static PetscErrorCode TSComputeLinearStability_Theta(TS ts,PetscReal xr,PetscReal xi,PetscReal *yr,PetscReal *yi) 983 { 984 PetscComplex z = xr + xi*PETSC_i,f; 985 TS_Theta *th = (TS_Theta*)ts->data; 986 const PetscReal one = 1.0; 987 988 PetscFunctionBegin; 989 f = (one + (one - th->Theta)*z)/(one - th->Theta*z); 990 *yr = PetscRealPartComplex(f); 991 *yi = PetscImaginaryPartComplex(f); 992 PetscFunctionReturn(0); 993 } 994 #endif 995 996 static PetscErrorCode TSGetStages_Theta(TS ts,PetscInt *ns,Vec **Y) 997 { 998 TS_Theta *th = (TS_Theta*)ts->data; 999 1000 PetscFunctionBegin; 1001 if (ns) *ns = 1; 1002 if (Y) *Y = th->endpoint ? &(th->X0) : &(th->X); 1003 PetscFunctionReturn(0); 1004 } 1005 1006 /* ------------------------------------------------------------ */ 1007 /*MC 1008 TSTHETA - DAE solver using the implicit Theta method 1009 1010 Level: beginner 1011 1012 Options Database: 1013 + -ts_theta_theta <Theta> - Location of stage (0<Theta<=1) 1014 . -ts_theta_endpoint <flag> - Use the endpoint (like Crank-Nicholson) instead of midpoint form of the Theta method 1015 - -ts_theta_initial_guess_extrapolate <flg> - Extrapolate stage initial guess from previous solution (sometimes unstable) 1016 1017 Notes: 1018 $ -ts_type theta -ts_theta_theta 1.0 corresponds to backward Euler (TSBEULER) 1019 $ -ts_type theta -ts_theta_theta 0.5 corresponds to the implicit midpoint rule 1020 $ -ts_type theta -ts_theta_theta 0.5 -ts_theta_endpoint corresponds to Crank-Nicholson (TSCN) 1021 1022 This method can be applied to DAE. 1023 1024 This method is cast as a 1-stage implicit Runge-Kutta method. 1025 1026 .vb 1027 Theta | Theta 1028 ------------- 1029 | 1 1030 .ve 1031 1032 For the default Theta=0.5, this is also known as the implicit midpoint rule. 1033 1034 When the endpoint variant is chosen, the method becomes a 2-stage method with first stage explicit: 1035 1036 .vb 1037 0 | 0 0 1038 1 | 1-Theta Theta 1039 ------------------- 1040 | 1-Theta Theta 1041 .ve 1042 1043 For the default Theta=0.5, this is the trapezoid rule (also known as Crank-Nicolson, see TSCN). 1044 1045 To apply a diagonally implicit RK method to DAE, the stage formula 1046 1047 $ Y_i = X + h sum_j a_ij Y'_j 1048 1049 is interpreted as a formula for Y'_i in terms of Y_i and known values (Y'_j, j<i) 1050 1051 .seealso: TSCreate(), TS, TSSetType(), TSCN, TSBEULER, TSThetaSetTheta(), TSThetaSetEndpoint() 1052 1053 M*/ 1054 PETSC_EXTERN PetscErrorCode TSCreate_Theta(TS ts) 1055 { 1056 TS_Theta *th; 1057 PetscErrorCode ierr; 1058 1059 PetscFunctionBegin; 1060 ts->ops->reset = TSReset_Theta; 1061 ts->ops->adjointreset = TSAdjointReset_Theta; 1062 ts->ops->destroy = TSDestroy_Theta; 1063 ts->ops->view = TSView_Theta; 1064 ts->ops->setup = TSSetUp_Theta; 1065 ts->ops->adjointsetup = TSAdjointSetUp_Theta; 1066 ts->ops->adjointreset = TSAdjointReset_Theta; 1067 ts->ops->step = TSStep_Theta; 1068 ts->ops->interpolate = TSInterpolate_Theta; 1069 ts->ops->evaluatewlte = TSEvaluateWLTE_Theta; 1070 ts->ops->rollback = TSRollBack_Theta; 1071 ts->ops->setfromoptions = TSSetFromOptions_Theta; 1072 ts->ops->snesfunction = SNESTSFormFunction_Theta; 1073 ts->ops->snesjacobian = SNESTSFormJacobian_Theta; 1074 #if defined(PETSC_HAVE_COMPLEX) 1075 ts->ops->linearstability = TSComputeLinearStability_Theta; 1076 #endif 1077 ts->ops->getstages = TSGetStages_Theta; 1078 ts->ops->adjointstep = TSAdjointStep_Theta; 1079 ts->ops->adjointintegral = TSAdjointCostIntegral_Theta; 1080 ts->ops->forwardintegral = TSForwardCostIntegral_Theta; 1081 ts->default_adapt_type = TSADAPTNONE; 1082 1083 ts->ops->forwardsetup = TSForwardSetUp_Theta; 1084 ts->ops->forwardstep = TSForwardStep_Theta; 1085 ts->ops->forwardgetstages = TSForwardGetStages_Theta; 1086 1087 ts->usessnes = PETSC_TRUE; 1088 1089 ierr = PetscNewLog(ts,&th);CHKERRQ(ierr); 1090 ts->data = (void*)th; 1091 1092 th->VecsDeltaLam = NULL; 1093 th->VecsDeltaMu = NULL; 1094 th->VecsSensiTemp = NULL; 1095 th->VecsSensi2Temp = NULL; 1096 1097 th->extrapolate = PETSC_FALSE; 1098 th->Theta = 0.5; 1099 th->order = 2; 1100 ierr = PetscObjectComposeFunction((PetscObject)ts,"TSThetaGetTheta_C",TSThetaGetTheta_Theta);CHKERRQ(ierr); 1101 ierr = PetscObjectComposeFunction((PetscObject)ts,"TSThetaSetTheta_C",TSThetaSetTheta_Theta);CHKERRQ(ierr); 1102 ierr = PetscObjectComposeFunction((PetscObject)ts,"TSThetaGetEndpoint_C",TSThetaGetEndpoint_Theta);CHKERRQ(ierr); 1103 ierr = PetscObjectComposeFunction((PetscObject)ts,"TSThetaSetEndpoint_C",TSThetaSetEndpoint_Theta);CHKERRQ(ierr); 1104 PetscFunctionReturn(0); 1105 } 1106 1107 /*@ 1108 TSThetaGetTheta - Get the abscissa of the stage in (0,1]. 1109 1110 Not Collective 1111 1112 Input Parameter: 1113 . ts - timestepping context 1114 1115 Output Parameter: 1116 . theta - stage abscissa 1117 1118 Note: 1119 Use of this function is normally only required to hack TSTHETA to use a modified integration scheme. 1120 1121 Level: Advanced 1122 1123 .seealso: TSThetaSetTheta() 1124 @*/ 1125 PetscErrorCode TSThetaGetTheta(TS ts,PetscReal *theta) 1126 { 1127 PetscErrorCode ierr; 1128 1129 PetscFunctionBegin; 1130 PetscValidHeaderSpecific(ts,TS_CLASSID,1); 1131 PetscValidPointer(theta,2); 1132 ierr = PetscUseMethod(ts,"TSThetaGetTheta_C",(TS,PetscReal*),(ts,theta));CHKERRQ(ierr); 1133 PetscFunctionReturn(0); 1134 } 1135 1136 /*@ 1137 TSThetaSetTheta - Set the abscissa of the stage in (0,1]. 1138 1139 Not Collective 1140 1141 Input Parameter: 1142 + ts - timestepping context 1143 - theta - stage abscissa 1144 1145 Options Database: 1146 . -ts_theta_theta <theta> 1147 1148 Level: Intermediate 1149 1150 .seealso: TSThetaGetTheta() 1151 @*/ 1152 PetscErrorCode TSThetaSetTheta(TS ts,PetscReal theta) 1153 { 1154 PetscErrorCode ierr; 1155 1156 PetscFunctionBegin; 1157 PetscValidHeaderSpecific(ts,TS_CLASSID,1); 1158 ierr = PetscTryMethod(ts,"TSThetaSetTheta_C",(TS,PetscReal),(ts,theta));CHKERRQ(ierr); 1159 PetscFunctionReturn(0); 1160 } 1161 1162 /*@ 1163 TSThetaGetEndpoint - Gets whether to use the endpoint variant of the method (e.g. trapezoid/Crank-Nicolson instead of midpoint rule). 1164 1165 Not Collective 1166 1167 Input Parameter: 1168 . ts - timestepping context 1169 1170 Output Parameter: 1171 . endpoint - PETSC_TRUE when using the endpoint variant 1172 1173 Level: Advanced 1174 1175 .seealso: TSThetaSetEndpoint(), TSTHETA, TSCN 1176 @*/ 1177 PetscErrorCode TSThetaGetEndpoint(TS ts,PetscBool *endpoint) 1178 { 1179 PetscErrorCode ierr; 1180 1181 PetscFunctionBegin; 1182 PetscValidHeaderSpecific(ts,TS_CLASSID,1); 1183 PetscValidPointer(endpoint,2); 1184 ierr = PetscUseMethod(ts,"TSThetaGetEndpoint_C",(TS,PetscBool*),(ts,endpoint));CHKERRQ(ierr); 1185 PetscFunctionReturn(0); 1186 } 1187 1188 /*@ 1189 TSThetaSetEndpoint - Sets whether to use the endpoint variant of the method (e.g. trapezoid/Crank-Nicolson instead of midpoint rule). 1190 1191 Not Collective 1192 1193 Input Parameter: 1194 + ts - timestepping context 1195 - flg - PETSC_TRUE to use the endpoint variant 1196 1197 Options Database: 1198 . -ts_theta_endpoint <flg> 1199 1200 Level: Intermediate 1201 1202 .seealso: TSTHETA, TSCN 1203 @*/ 1204 PetscErrorCode TSThetaSetEndpoint(TS ts,PetscBool flg) 1205 { 1206 PetscErrorCode ierr; 1207 1208 PetscFunctionBegin; 1209 PetscValidHeaderSpecific(ts,TS_CLASSID,1); 1210 ierr = PetscTryMethod(ts,"TSThetaSetEndpoint_C",(TS,PetscBool),(ts,flg));CHKERRQ(ierr); 1211 PetscFunctionReturn(0); 1212 } 1213 1214 /* 1215 * TSBEULER and TSCN are straightforward specializations of TSTHETA. 1216 * The creation functions for these specializations are below. 1217 */ 1218 1219 static PetscErrorCode TSSetUp_BEuler(TS ts) 1220 { 1221 TS_Theta *th = (TS_Theta*)ts->data; 1222 PetscErrorCode ierr; 1223 1224 PetscFunctionBegin; 1225 if (th->Theta != 1.0) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_OPT_OVERWRITE,"Can not change the default value (1) of theta when using backward Euler\n"); 1226 if (th->endpoint) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_OPT_OVERWRITE,"Can not change to the endpoint form of the Theta methods when using backward Euler\n"); 1227 ierr = TSSetUp_Theta(ts);CHKERRQ(ierr); 1228 PetscFunctionReturn(0); 1229 } 1230 1231 static PetscErrorCode TSView_BEuler(TS ts,PetscViewer viewer) 1232 { 1233 PetscFunctionBegin; 1234 PetscFunctionReturn(0); 1235 } 1236 1237 /*MC 1238 TSBEULER - ODE solver using the implicit backward Euler method 1239 1240 Level: beginner 1241 1242 Notes: 1243 TSBEULER is equivalent to TSTHETA with Theta=1.0 1244 1245 $ -ts_type theta -ts_theta_theta 1.0 1246 1247 .seealso: TSCreate(), TS, TSSetType(), TSEULER, TSCN, TSTHETA 1248 1249 M*/ 1250 PETSC_EXTERN PetscErrorCode TSCreate_BEuler(TS ts) 1251 { 1252 PetscErrorCode ierr; 1253 1254 PetscFunctionBegin; 1255 ierr = TSCreate_Theta(ts);CHKERRQ(ierr); 1256 ierr = TSThetaSetTheta(ts,1.0);CHKERRQ(ierr); 1257 ierr = TSThetaSetEndpoint(ts,PETSC_FALSE);CHKERRQ(ierr); 1258 ts->ops->setup = TSSetUp_BEuler; 1259 ts->ops->view = TSView_BEuler; 1260 PetscFunctionReturn(0); 1261 } 1262 1263 static PetscErrorCode TSSetUp_CN(TS ts) 1264 { 1265 TS_Theta *th = (TS_Theta*)ts->data; 1266 PetscErrorCode ierr; 1267 1268 PetscFunctionBegin; 1269 if (th->Theta != 0.5) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_OPT_OVERWRITE,"Can not change the default value (0.5) of theta when using Crank-Nicolson\n"); 1270 if (!th->endpoint) SETERRQ(PetscObjectComm((PetscObject)ts),PETSC_ERR_OPT_OVERWRITE,"Can not change to the midpoint form of the Theta methods when using Crank-Nicolson\n"); 1271 ierr = TSSetUp_Theta(ts);CHKERRQ(ierr); 1272 PetscFunctionReturn(0); 1273 } 1274 1275 static PetscErrorCode TSView_CN(TS ts,PetscViewer viewer) 1276 { 1277 PetscFunctionBegin; 1278 PetscFunctionReturn(0); 1279 } 1280 1281 /*MC 1282 TSCN - ODE solver using the implicit Crank-Nicolson method. 1283 1284 Level: beginner 1285 1286 Notes: 1287 TSCN is equivalent to TSTHETA with Theta=0.5 and the "endpoint" option set. I.e. 1288 1289 $ -ts_type theta -ts_theta_theta 0.5 -ts_theta_endpoint 1290 1291 .seealso: TSCreate(), TS, TSSetType(), TSBEULER, TSTHETA 1292 1293 M*/ 1294 PETSC_EXTERN PetscErrorCode TSCreate_CN(TS ts) 1295 { 1296 PetscErrorCode ierr; 1297 1298 PetscFunctionBegin; 1299 ierr = TSCreate_Theta(ts);CHKERRQ(ierr); 1300 ierr = TSThetaSetTheta(ts,0.5);CHKERRQ(ierr); 1301 ierr = TSThetaSetEndpoint(ts,PETSC_TRUE);CHKERRQ(ierr); 1302 ts->ops->setup = TSSetUp_CN; 1303 ts->ops->view = TSView_CN; 1304 PetscFunctionReturn(0); 1305 } 1306