[14992] | 1 | /*!\file: solutionsequence_nonlinear.cpp
|
---|
[7637] | 2 | * \brief: core of a non-linear solution, using fixed-point method
|
---|
| 3 | */
|
---|
| 4 |
|
---|
[15055] | 5 | #include "./solutionsequences.h"
|
---|
[7637] | 6 | #include "../toolkits/toolkits.h"
|
---|
[15002] | 7 | #include "../classes/classes.h"
|
---|
| 8 | #include "../shared/shared.h"
|
---|
[7637] | 9 | #include "../modules/modules.h"
|
---|
| 10 |
|
---|
[14992] | 11 | void solutionsequence_nonlinear(FemModel* femmodel,bool conserve_loads){
|
---|
[7637] | 12 |
|
---|
| 13 | /*intermediary: */
|
---|
[13216] | 14 | Matrix<IssmDouble>* Kff = NULL;
|
---|
| 15 | Matrix<IssmDouble>* Kfs = NULL;
|
---|
| 16 | Vector<IssmDouble>* ug = NULL;
|
---|
| 17 | Vector<IssmDouble>* uf = NULL;
|
---|
| 18 | Vector<IssmDouble>* old_uf = NULL;
|
---|
| 19 | Vector<IssmDouble>* pf = NULL;
|
---|
| 20 | Vector<IssmDouble>* df = NULL;
|
---|
| 21 | Vector<IssmDouble>* ys = NULL;
|
---|
[13622] | 22 |
|
---|
[13877] | 23 | Loads* savedloads=NULL;
|
---|
[11284] | 24 | bool converged;
|
---|
[7637] | 25 | int constraints_converged;
|
---|
| 26 | int num_unstable_constraints;
|
---|
| 27 | int count;
|
---|
| 28 |
|
---|
| 29 | /*parameters:*/
|
---|
| 30 | int min_mechanical_constraints;
|
---|
| 31 | int max_nonlinear_iterations;
|
---|
[13877] | 32 | int configuration_type;
|
---|
[18619] | 33 | IssmDouble eps_res,eps_rel,eps_abs;
|
---|
[7637] | 34 |
|
---|
| 35 | /*Recover parameters: */
|
---|
[15771] | 36 | femmodel->parameters->FindParam(&min_mechanical_constraints,StressbalanceRiftPenaltyThresholdEnum);
|
---|
| 37 | femmodel->parameters->FindParam(&max_nonlinear_iterations,StressbalanceMaxiterEnum);
|
---|
[18619] | 38 | femmodel->parameters->FindParam(&eps_res,StressbalanceRestolEnum);
|
---|
| 39 | femmodel->parameters->FindParam(&eps_rel,StressbalanceReltolEnum);
|
---|
| 40 | femmodel->parameters->FindParam(&eps_abs,StressbalanceAbstolEnum);
|
---|
[8815] | 41 | femmodel->parameters->FindParam(&configuration_type,ConfigurationTypeEnum);
|
---|
[13693] | 42 | femmodel->UpdateConstraintsx();
|
---|
[8803] | 43 |
|
---|
[7637] | 44 | /*Were loads requested as output? : */
|
---|
[13877] | 45 | if(conserve_loads){
|
---|
| 46 | savedloads = static_cast<Loads*>(femmodel->loads->Copy());
|
---|
| 47 | }
|
---|
[7637] | 48 |
|
---|
[20962] | 49 | count=0;
|
---|
[11284] | 50 | converged=false;
|
---|
[7637] | 51 |
|
---|
| 52 | /*Start non-linear iteration using input velocity: */
|
---|
[15849] | 53 | GetSolutionFromInputsx(&ug,femmodel);
|
---|
[8803] | 54 | Reducevectorgtofx(&uf, ug, femmodel->nodes,femmodel->parameters);
|
---|
[7637] | 55 |
|
---|
[24680] | 56 | /*Update once again the solution to make sure that vx and vxold are similar (for next step in transient or steadystate)*/
|
---|
[15849] | 57 | InputUpdateFromConstantx(femmodel,converged,ConvergedEnum);
|
---|
[19746] | 58 | InputUpdateFromSolutionx(femmodel,ug);
|
---|
[7637] | 59 |
|
---|
[24680] | 60 | /*allocate the matrices once and reuse them per iteration*/
|
---|
| 61 | if(femmodel->loads->numrifts == 0){
|
---|
| 62 | AllocateSystemMatricesx(&Kff,&Kfs,&df,&pf,femmodel);
|
---|
| 63 | }
|
---|
[24679] | 64 |
|
---|
[7637] | 65 | for(;;){
|
---|
| 66 |
|
---|
| 67 | //save pointer to old velocity
|
---|
[14891] | 68 | delete old_uf;old_uf=uf;
|
---|
[15197] | 69 | delete ug;
|
---|
[7637] | 70 |
|
---|
[24680] | 71 | if(femmodel->loads->numrifts){
|
---|
| 72 | AllocateSystemMatricesx(&Kff,&Kfs,&df,&pf,femmodel);
|
---|
| 73 | }
|
---|
[24679] | 74 | SystemMatricesx(&Kff,&Kfs,&pf,&df,NULL,femmodel, true);
|
---|
[23587] | 75 | CreateNodalConstraintsx(&ys,femmodel->nodes);
|
---|
[24679] | 76 | Reduceloadx(pf, Kfs, ys);
|
---|
[22551] | 77 | femmodel->profiler->Start(SOLVER);
|
---|
[7637] | 78 | Solverx(&uf, Kff, pf, old_uf, df, femmodel->parameters);
|
---|
[22551] | 79 | femmodel->profiler->Stop(SOLVER);
|
---|
[23197] | 80 |
|
---|
[14891] | 81 | Mergesolutionfromftogx(&ug, uf,ys,femmodel->nodes,femmodel->parameters);delete ys;
|
---|
[11293] | 82 |
|
---|
[24679] | 83 | convergence(&converged,Kff,pf,uf,old_uf,eps_res,eps_rel,eps_abs);
|
---|
[15849] | 84 | InputUpdateFromConstantx(femmodel,converged,ConvergedEnum);
|
---|
| 85 | InputUpdateFromSolutionx(femmodel,ug);
|
---|
[7637] | 86 |
|
---|
[24681] | 87 | /*Clean up if rifts*/
|
---|
| 88 | if(femmodel->loads->numrifts){
|
---|
| 89 | delete Kfs; delete Kff; delete pf; delete df;
|
---|
| 90 | }
|
---|
| 91 |
|
---|
[15849] | 92 | ConstraintsStatex(&constraints_converged,&num_unstable_constraints,femmodel);
|
---|
[15100] | 93 | if(VerboseConvergence()) _printf0_(" number of unstable constraints: " << num_unstable_constraints << "\n");
|
---|
[7637] | 94 |
|
---|
| 95 | //rift convergence
|
---|
| 96 | if (!constraints_converged) {
|
---|
| 97 | if (converged){
|
---|
[11284] | 98 | if (num_unstable_constraints <= min_mechanical_constraints) converged=true;
|
---|
| 99 | else converged=false;
|
---|
[7637] | 100 | }
|
---|
| 101 | }
|
---|
[23197] | 102 |
|
---|
[7637] | 103 | /*Increase count: */
|
---|
| 104 | count++;
|
---|
[12271] | 105 | if(converged==true){
|
---|
[20576] | 106 | femmodel->results->AddResult(new GenericExternalResult<IssmDouble>(femmodel->results->Size()+1,StressbalanceConvergenceNumStepsEnum,count));
|
---|
[12271] | 107 | break;
|
---|
| 108 | }
|
---|
[7637] | 109 | if(count>=max_nonlinear_iterations){
|
---|
[15104] | 110 | _printf0_(" maximum number of nonlinear iterations (" << max_nonlinear_iterations << ") exceeded\n");
|
---|
[11347] | 111 | converged=true;
|
---|
[20576] | 112 | femmodel->results->AddResult(new GenericExternalResult<IssmDouble>(femmodel->results->Size()+1,StressbalanceConvergenceNumStepsEnum,max_nonlinear_iterations));
|
---|
[15849] | 113 | InputUpdateFromConstantx(femmodel,converged,ConvergedEnum);
|
---|
| 114 | InputUpdateFromSolutionx(femmodel,ug);
|
---|
[7637] | 115 | break;
|
---|
| 116 | }
|
---|
[24679] | 117 |
|
---|
[24681] | 118 | /*Set the matrix entries to zero if we do an other iteration*/
|
---|
| 119 | if(femmodel->loads->numrifts==0){
|
---|
| 120 | Kff->SetZero();
|
---|
| 121 | Kfs->SetZero();
|
---|
| 122 | df->Set(0);
|
---|
| 123 | pf->Set(0);
|
---|
| 124 | }
|
---|
[7637] | 125 | }
|
---|
| 126 |
|
---|
[24681] | 127 | /*delete matrices after the iteration loop*/
|
---|
| 128 | if(femmodel->loads->numrifts==0){
|
---|
| 129 | delete Kff; delete pf; delete df; delete Kfs;
|
---|
| 130 | }
|
---|
[24679] | 131 |
|
---|
[21451] | 132 | if(VerboseConvergence()) _printf0_("\n total number of iterations: " << count << "\n");
|
---|
[11322] | 133 |
|
---|
[7637] | 134 | /*clean-up*/
|
---|
[13877] | 135 | if(conserve_loads){
|
---|
| 136 | delete femmodel->loads;
|
---|
[23488] | 137 | int index=femmodel->AnalysisIndex(configuration_type);
|
---|
| 138 | femmodel->loads_list[index]=savedloads;
|
---|
[13877] | 139 | femmodel->loads=savedloads;
|
---|
| 140 | }
|
---|
[14891] | 141 | delete uf;
|
---|
| 142 | delete ug;
|
---|
| 143 | delete old_uf;
|
---|
[7637] | 144 | }
|
---|