Changeset 17009
- Timestamp:
- 12/05/13 08:05:35 (11 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/Analysis.h
r17000 r17009 33 33 34 34 /*Finite element Analysis*/ 35 virtual void Core(FemModel* femmodel)=0; 35 36 virtual ElementVector* CreateDVector(Element* element)=0; 36 37 virtual ElementMatrix* CreateJacobianMatrix(Element* element)=0; -
issm/trunk-jpl/src/c/analyses/StressbalanceAnalysis.cpp
r17005 r17009 4 4 #include "../shared/shared.h" 5 5 #include "../modules/modules.h" 6 #include "../solutionsequences/solutionsequences.h" 6 7 7 8 /*Model processing*/ … … 813 814 /*Finite Element Analysis*/ 814 815 void StressbalanceAnalysis::Core(FemModel* femmodel){/*{{{*/ 815 _error_("not implemented"); 816 817 /*Intermediaries*/ 818 bool isSIA,isSSA,isL1L2,isHO,isFS; 819 bool conserve_loads = true; 820 int meshtype,newton; 821 822 /* recover parameters:*/ 823 femmodel->parameters->FindParam(&isSIA,FlowequationIsSIAEnum); 824 femmodel->parameters->FindParam(&isSSA,FlowequationIsSSAEnum); 825 femmodel->parameters->FindParam(&isL1L2,FlowequationIsL1L2Enum); 826 femmodel->parameters->FindParam(&isHO,FlowequationIsHOEnum); 827 femmodel->parameters->FindParam(&isFS,FlowequationIsFSEnum); 828 femmodel->parameters->FindParam(&newton,StressbalanceIsnewtonEnum); 829 femmodel->parameters->FindParam(&meshtype,MeshTypeEnum); 830 831 if((isSSA || isHO || isL1L2) ^ isFS){ // ^ = xor 832 if(VerboseSolution()) _printf0_(" computing velocities\n"); 833 834 femmodel->SetCurrentConfiguration(StressbalanceAnalysisEnum); 835 if(newton>0) 836 solutionsequence_newton(femmodel); 837 else 838 solutionsequence_nonlinear(femmodel,conserve_loads); 839 } 840 841 if ((isSSA || isL1L2 || isHO) && isFS){ 842 if(VerboseSolution()) _printf0_(" computing coupling between lower order models and FS\n"); 843 solutionsequence_FScoupling_nonlinear(femmodel,conserve_loads); 844 } 845 846 if (meshtype==Mesh3DEnum && (isSIA || isSSA || isL1L2 || isHO)){ 847 if(VerboseSolution()) _printf0_(" computing vertical velocities\n"); 848 femmodel->SetCurrentConfiguration(StressbalanceVerticalAnalysisEnum); 849 solutionsequence_linear(femmodel); 850 } 851 816 852 }/*}}}*/ 817 853 ElementVector* StressbalanceAnalysis::CreateDVector(Element* element){/*{{{*/ -
issm/trunk-jpl/src/c/analyses/StressbalanceSIAAnalysis.cpp
r17005 r17009 4 4 #include "../shared/shared.h" 5 5 #include "../modules/modules.h" 6 #include "../solutionsequences/solutionsequences.h" 6 7 7 8 /*Model processing*/ … … 136 137 /*Finite Element Analysis*/ 137 138 void StressbalanceSIAAnalysis::Core(FemModel* femmodel){/*{{{*/ 138 _error_("not implemented"); 139 140 if(VerboseSolution()) _printf0_(" computing SIA velocities\n"); 141 femmodel->SetCurrentConfiguration(StressbalanceSIAAnalysisEnum); 142 solutionsequence_linear(femmodel); 139 143 }/*}}}*/ 140 144 ElementVector* StressbalanceSIAAnalysis::CreateDVector(Element* element){/*{{{*/ -
issm/trunk-jpl/src/c/cores/stressbalance_core.cpp
r16742 r17009 6 6 #include "../toolkits/toolkits.h" 7 7 #include "../classes/classes.h" 8 #include "../analyses/analyses.h" 8 9 #include "../shared/shared.h" 9 10 #include "../modules/modules.h" … … 13 14 14 15 /*parameters: */ 15 bool dakota_analysis; 16 int meshtype; 17 bool isSIA,isSSA,isL1L2,isHO,isFS; 18 bool conserve_loads = true; 19 bool save_results; 20 int newton; 21 int solution_type; 22 int numoutputs = 0; 23 char** requested_outputs = NULL; 24 int i; 25 16 bool dakota_analysis; 17 int meshtype; 18 bool isSIA,isSSA,isL1L2,isHO,isFS; 19 bool save_results; 20 int solution_type; 21 int numoutputs = 0; 22 char **requested_outputs = NULL; 23 Analysis *analysis = NULL; 26 24 27 25 /* recover parameters:*/ … … 32 30 femmodel->parameters->FindParam(&isHO,FlowequationIsHOEnum); 33 31 femmodel->parameters->FindParam(&isFS,FlowequationIsFSEnum); 34 femmodel->parameters->FindParam(&newton,StressbalanceIsnewtonEnum);35 32 femmodel->parameters->FindParam(&dakota_analysis,QmuIsdakotaEnum); 36 33 femmodel->parameters->FindParam(&save_results,SaveResultsEnum); … … 47 44 } 48 45 49 /*Compute slopes :*/46 /*Compute slopes if necessary */ 50 47 if(isSIA || (isFS && meshtype==Mesh2DverticalEnum)) surfaceslope_core(femmodel); 51 48 if(isFS){ … … 55 52 } 56 53 54 /*Compute SIA velocities*/ 57 55 if(isSIA){ 58 if(VerboseSolution()) _printf0_(" computing SIA velocities\n");59 56 60 57 /*Take the last velocity into account so that the velocity on the SSA domain is not zero*/ 61 58 if(isSSA || isL1L2 || isHO ) ResetBoundaryConditions(femmodel,StressbalanceSIAAnalysisEnum); 62 femmodel->SetCurrentConfiguration(StressbalanceSIAAnalysisEnum); 63 solutionsequence_linear(femmodel); 59 60 analysis = new StressbalanceSIAAnalysis(); 61 analysis->Core(femmodel); 62 delete analysis; 63 64 /*Reset velocities for other ice flow models*/ 64 65 if(isSSA || isL1L2 || isHO) ResetBoundaryConditions(femmodel,StressbalanceAnalysisEnum); 65 66 } 66 67 67 if ((isSSA || isHO || isL1L2) ^ isFS){ // ^ = xor 68 if(VerboseSolution()) _printf0_(" computing velocities\n"); 69 70 femmodel->SetCurrentConfiguration(StressbalanceAnalysisEnum); 71 if(newton>0) 72 solutionsequence_newton(femmodel); 73 else 74 solutionsequence_nonlinear(femmodel,conserve_loads); 75 } 76 77 if ((isSSA || isL1L2 || isHO) && isFS){ 78 if(VerboseSolution()) _printf0_(" computing coupling betweem lower order models and full-FS\n"); 79 solutionsequence_FScoupling_nonlinear(femmodel,conserve_loads); 80 } 81 82 if (meshtype==Mesh3DEnum && (isSIA || isSSA || isL1L2 || isHO)){ 83 if(VerboseSolution()) _printf0_(" computing vertical velocities\n"); 84 femmodel->SetCurrentConfiguration(StressbalanceVerticalAnalysisEnum); 85 solutionsequence_linear(femmodel); 68 /*Compute stressbalance for SSA L1L2 HO and FS*/ 69 if(isSSA || isL1L2 || isHO || isFS){ 70 analysis = new StressbalanceAnalysis(); 71 analysis->Core(femmodel); 72 delete analysis; 86 73 } 87 74
Note:
See TracChangeset
for help on using the changeset viewer.