Droplet Lagrangian Transient One-dimensional Reacting Code Implementation of both liquid and gas phase governing equations.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

492 lines
15KB

  1. /*
  2. _____ ___ ____ ____
  3. |_ _/ _ \| _ \ / ___|
  4. | || | | | |_) | |
  5. | || |_| | _ <| |___
  6. |_| \___/|_| \_\\____|
  7. */
  8. #include "UserData.h"
  9. #include "solution.h"
  10. #include "residue.h"
  11. #include "macros.h"
  12. #include "timing.h"
  13. #include <ida/ida.h>
  14. #include <ida/ida_direct.h>
  15. #include <sunmatrix/sunmatrix_band.h>
  16. #include <sunlinsol/sunlinsol_lapackband.h>
  17. //#include <ida/ida_band.h>
  18. static int check_flag(void *flagvalue,
  19. const char *funcname,
  20. int opt);
  21. void freeAtLast(void* mem, N_Vector *y,
  22. N_Vector *ydot,
  23. N_Vector *res,
  24. N_Vector *id,
  25. N_Vector *atolv,
  26. N_Vector *constraints,UserData data);
  27. int main(){
  28. // Read input file specifying the details of the case and store them
  29. FILE *input;input=fopen("input.dat","r");
  30. UserData data;data=NULL;data=allocateUserData(input);
  31. fclose(input);
  32. data->clockStart=get_wall_time();
  33. // /**************** TEST THE xOld *******************/
  34. // double* ptr1 = data->grid->xOld ;
  35. // printf("After allocateUserData in main.cpp,Start print the first 5 elements of the xOld array : \n");
  36. // printf("1st:%.6f, 2nd:%.6f, 3rd:%.6f, 4th:%.6f, 5th:%.6f.\n",ptr1[0],ptr1[1],ptr1[2],ptr1[3],ptr1[4]);
  37. if(data==NULL){
  38. printf("check input file!\n");
  39. freeUserData(data);
  40. return(-1);
  41. }
  42. // Allocate solution variables
  43. long int ier,mu,ml,count,netf,ncfn,njevals,nrevals;
  44. realtype tNow,*atolvdata,*constraintsdata,finalTime,dtMax,tolsfac;
  45. N_Vector y,ydot,id,res,atolv,constraints;
  46. y=ydot=id=res=atolv=constraints=NULL;
  47. ier=allocateSolution(data->neq,data->nThreads,&y,&ydot,&id,&res,&atolv,&constraints);
  48. ier=setAlgebraicVariables(&id,data);
  49. // /**************** TEST THE xOld *******************/
  50. // double* ptr2 = data->grid->xOld ;
  51. // printf("Before setInitialCondition in main.cpp,Start print the first 5 elements of the xOld array : \n");
  52. // printf("1st:%.6f, 2nd:%.6f, 3rd:%.6f, 4th:%.6f, 5th:%.6f.\n",ptr2[0],ptr2[1],ptr2[2],ptr2[3],ptr2[4]);
  53. ier=setInitialCondition(&y,&ydot,data);
  54. if(ier==-1)return(-1);
  55. tNow=data->tNow;
  56. finalTime=data->finalTime;
  57. //TODO: dtMax should be a user input
  58. dtMax = 1e-4;
  59. double* ydata;
  60. double* ydotdata;
  61. ydata = N_VGetArrayPointer_OpenMP(y);
  62. ydotdata = N_VGetArrayPointer_OpenMP(ydot);
  63. ////////// DEBUG ///////////////////
  64. //double* resdata;
  65. //double* iddata;
  66. //resdata = N_VGetArrayPointer_OpenMP(res);
  67. //iddata = N_VGetArrayPointer_OpenMP(id);
  68. ///////////////////////////////////
  69. void *mem;mem=NULL;mem = IDACreate();
  70. ier = IDASetUserData(mem, data);
  71. ier = IDASetId(mem, id);
  72. ier = IDAInit(mem, residue, tNow, y, ydot);
  73. // Atol array
  74. atolvdata = N_VGetArrayPointer_OpenMP(atolv);
  75. for (size_t i = 1; i <=data->npts; i++) {
  76. atolT(i) = data->temperatureTolerance;
  77. for (size_t k = 1; k <=data->nsp; k++) {
  78. if(k!=data->k_bath){
  79. atolY(i,k) = data->massFractionTolerance;
  80. }
  81. else{
  82. atolY(i,k) = data->bathGasTolerance;
  83. }
  84. }
  85. atolR(i) = data->radiusTolerance;
  86. atolP(i) = data->pressureTolerance;
  87. atolMdot(i) = data->MdotTolerance;
  88. }
  89. ier = IDASVtolerances(mem, data->relativeTolerance, atolv);
  90. mu = 2*data->nvar; ml = mu;
  91. SUNMatrix A; A=NULL;
  92. A=SUNBandMatrix(data->neq,mu,ml,mu+ml);
  93. SUNLinearSolver LS; LS=NULL;
  94. //LS=SUNBandLinearSolver(y,A);
  95. LS=SUNLapackBand(y,A);
  96. ier=IDADlsSetLinearSolver(mem,LS,A);
  97. //ier = IDABand(mem, data->neq, mu, ml);
  98. constraintsdata = N_VGetArrayPointer_OpenMP(constraints);
  99. if(data->setConstraints){
  100. for (size_t i = 1; i <=data->npts; i++) {
  101. for (size_t k = 1; k <=data->nsp; k++) {
  102. constraintsY(i,k) = ONE;
  103. }
  104. }
  105. ier=IDASetConstraints(mem, constraints);
  106. }
  107. if(!data->quasiSteady){
  108. constraintsR(1) = ONE;
  109. ier=IDASetConstraints(mem, constraints);
  110. }
  111. ier = IDASetSuppressAlg(mem, data->suppressAlg);
  112. if(check_flag(&ier, "IDASetSuppressAlg", 1)) return(1);
  113. //ier= IDASetMaxNumStepsIC(mem, 1);
  114. //ier= IDASetMaxNumJacsIC(mem,8);
  115. //ier= IDASetMaxNumItersIC(mem,100);
  116. //ier= IDASetMaxBacksIC(mem,2000);
  117. //ier = IDASetLineSearchOffIC(mem,SUNTRUE);
  118. //////// DEBUG ///////////
  119. //if(data->dryRun){
  120. // ier = residue(tNow,y, ydot, res, data);
  121. // for(size_t k=0; k < data->nvar*data->npts; k++){
  122. // printf("%i: %15.6e\n",k,resdata[k]);
  123. // }
  124. // for(size_t k=0; k < data->nvar*data->npts; k++){
  125. // if(iddata[k] == 1){
  126. // ydotdata[k] = -resdata[k];
  127. // }
  128. // }
  129. // ier = residue(tNow,y, ydot, res, data);
  130. // for(size_t k=0; k < data->nvar*data->npts; k++){
  131. // printf("%i: %15.6e\n",k,resdata[k]);
  132. // }
  133. //}
  134. //for(size_t k=0; k < data->neq; k++){
  135. // if(iddata[k] == 1){
  136. // ydotdata[k] = -resdata[k];
  137. // }
  138. //}
  139. //////////////////////////
  140. if(!data->dryRun){
  141. printf("Calculating Initial Conditions:\n");
  142. printf("Cross your fingers...\n");
  143. ier = IDACalcIC(mem, IDA_YA_YDP_INIT, 1e-5*finalTime);
  144. //If at first IDACalcIC doesn't succeed, try, try, try again:
  145. for (int i = 0; i < 10; i++) {
  146. ier = IDACalcIC(mem, IDA_YA_YDP_INIT, (1e-01+pow(10,i)*finalTime));
  147. /************* Print the #of iterations ************/
  148. //printf("This the %dth try of calculating initial conditions. \n",i);
  149. if(ier==0){
  150. break;
  151. }
  152. }
  153. //...or else cry again :(
  154. if(check_flag(&ier, "IDACalcIC", 1)){
  155. freeAtLast(mem,&y,&ydot,&res,&id,&atolv,&constraints,data);
  156. return(-1);
  157. }else{
  158. printf("Initial (Consistent) Conditions Calculated!\n");
  159. }
  160. ier = IDASetInitStep(mem,1e-12);
  161. }
  162. printSpaceTimeHeader(data);
  163. printGlobalHeader(data);
  164. printTimescaleHeader(data);
  165. printSpaceTimeOutput(tNow, &y, data->output, data);
  166. printSpaceTimeOutput(tNow, &y, data->gridOutput, data);
  167. // getTimescale(data,&y) ;
  168. // printTimescaleOutput(tNow, &y, data->timescaleOutput,data);
  169. if(!data->dryRun){
  170. count=0;
  171. double dt=1e-08;
  172. double t1=0.0e0;
  173. double xOld=0.0e0;
  174. double x=0.0e0;
  175. double dx=0.0e0;
  176. double dxMin=1.0e0;
  177. double dxRatio=dx/dxMin;
  178. int move=0;
  179. int kcur=0;
  180. int RGCOUNT=0;
  181. size_t ii=0;
  182. if(data->adaptiveGrid){
  183. dxMin=data->grid->leastMove;
  184. xOld=maxCurvPosition(ydata, data->nt, data->nvar,
  185. data->grid->x, data->npts);
  186. //xOld=isothermPosition(ydata, data->isotherm, data->nt,
  187. // data->nvar, data->grid->x, data->npts);
  188. }
  189. while (tNow<=finalTime && R(1)>100e-9) {
  190. t1=tNow;
  191. /*Floor small value to zero*/
  192. floorSmallValue(data, &y);
  193. if(data->quasiSteady){
  194. ier = IDASolve(mem, finalTime, &tNow, y, ydot, IDA_ONE_STEP);
  195. }else{
  196. /*This prevents the solver from taking a step so large that
  197. *the droplet radius becomes negative.
  198. *TODO:Try adding the constraint that the droplet radius must
  199. * be a positive number*/
  200. ier = IDASolve(mem, tNow+dtMax, &tNow, y, ydot, IDA_ONE_STEP);
  201. //ier = IDASolve(mem, tNow+dtMax, &tNow, y, ydot, IDA_NORMAL);
  202. }
  203. if(check_flag(&ier, "IDASolve", 1)){
  204. freeAtLast(mem,&y,&ydot,&res,&id,&atolv,&constraints,data);
  205. return(-1);
  206. }
  207. dt=tNow-t1;
  208. ier = IDAGetCurrentOrder(mem, &kcur);
  209. /******** Print the max Temperature *********/
  210. double maxT = 0.00;
  211. maxT = maxTemperature(ydata,data->nt,data->nvar,data->npts);
  212. printf("Maximum temperature is : %.3f[K] \n",maxT);
  213. if(data->adaptiveGrid==1 && data->moveGrid==1){
  214. x=maxCurvPosition(ydata, data->nt, data->nvar,
  215. data->grid->x, data->npts);
  216. //x=isothermPosition(ydata, data->isotherm, data->nt,
  217. // data->nvar, data->grid->x, data->npts);
  218. //x=maxGradPosition(ydata, data->nt, data->nvar,
  219. // data->grid->x, data->npts);
  220. dx=x-xOld;
  221. if(dx*dxMin>0.0e0){
  222. move=1;
  223. }else{
  224. move=-1;
  225. }
  226. //if(fabs(dx)>=dxMin && x+(double)(move)*0.5e0*dxMin<=1.0e0){
  227. dxRatio=fabs(dx/dxMin);
  228. /************ Print xOld, x,dx,dxMin,dxRatio ******************/
  229. printf("xOld = %.6f, x = %.6f,",xOld,x);
  230. printf("dx = %.6f, dxMin = %.6f, dxRatio = %.3f\n",dx,dxMin,dxRatio);
  231. if(dxRatio>=1.0e0 && dxRatio<=2.0e0){
  232. printf("Regridding!\n");
  233. data->regrid=1;
  234. printSpaceTimeOutput(tNow, &y, data->gridOutput, data);
  235. ier=reGrid(data->grid, x+(double)(move)*0.5e0*dxMin);
  236. if(ier==-1){
  237. freeAtLast(mem,&y,&ydot,&res,&id,&atolv,&constraints,data);
  238. return(-1);
  239. }
  240. updateSolution(ydata, ydotdata, data->nvar,
  241. data->grid->xOld,data->grid->x,data->npts);
  242. storeGrid(data->grid->x,data->grid->xOld,data->npts);
  243. xOld=x;
  244. printf("Regrid Complete! Restarting Problem at %15.6e s\n",tNow);
  245. ier = IDAReInit(mem, tNow, y, ydot);
  246. if(check_flag(&ier, "IDAReInit", 1)){
  247. freeAtLast(mem,&y,&ydot,&res,&id,&atolv,&constraints,data);
  248. return(-1);
  249. }
  250. ier = IDASetInitStep(mem,1e-01*dt);
  251. printf("Reinitialized! Calculating Initial Conditions:\n");
  252. printf("Cross your fingers...\n");
  253. ier = IDACalcIC(mem, IDA_YA_YDP_INIT, tNow+1e-01*dt);
  254. if(check_flag(&ier, "IDACalcIC", 1)){
  255. ier = IDACalcIC(mem, IDA_YA_YDP_INIT, tNow+1e+01*dt);
  256. }
  257. //Every once in a while, for reasons
  258. //that befuddle this mathematically
  259. //lesser author, IDACalcIC fails. Here,
  260. //I desperately try to make it converge
  261. //again by sampling increasingly larger
  262. //time-steps:
  263. for (int i = 0; i < 10; i++) {
  264. ier = IDACalcIC(mem, IDA_YA_YDP_INIT, tNow+(1e-01+pow(10,i)*dt));
  265. if(ier==0){
  266. break;
  267. }
  268. }
  269. //Failure :( Back to the drawing board:
  270. if(check_flag(&ier, "IDACalcIC", 1)){
  271. freeAtLast(mem,&y,&ydot,&res,&id,&atolv,&constraints,data);
  272. return(-1);
  273. }
  274. printf("Initial (Consistent) Conditions Calculated!\n");
  275. printf("------------------------------------------\n\n");
  276. if(data->writeEveryRegrid){
  277. printSpaceTimeOutput(tNow, &y, data->output, data);
  278. FILE* fp;
  279. fp=fopen("restart.bin","w");
  280. writeRestart(tNow, &y, &ydot, fp, data);
  281. fclose(fp);
  282. }
  283. }
  284. }
  285. /*reset the tolerance after ignition*/
  286. //resetTolerance(data,&y,&atolv);
  287. /*regrid and update the solution based on R,re-initialize the problem*/
  288. /*For the time being,we only allow TORC to REGRID once for each run*/
  289. if(data->JJRG ==1 && (maxT >= data->initialTemperature+data->deltaT)){
  290. if(RGCOUNT<1){
  291. RGCOUNT = RGCOUNT +1;
  292. REGRID(ydata,ydotdata,data);
  293. initializePsiGrid(ydata,data->uniformGrid,data);
  294. printf("REGRID Complete!Restarting Problem at %15.6e s\n",tNow);
  295. ier = IDAReInit(mem,tNow,y,ydot);
  296. if(check_flag(&ier,"IDAReInit",1)){
  297. freeAtLast(mem,&y,&ydot,&res,&id,&atolv,&constraints,data);
  298. return(-1);
  299. }
  300. ier= IDASetInitStep(mem,1e-01*dt);
  301. //ier= IDASetInitStep(mem,0.0);
  302. printf("Reinitialized!Calculating Initial Conditions:\n");
  303. printf("Cross your fingers...\n");
  304. ier = IDACalcIC(mem, IDA_YA_YDP_INIT, tNow+1e-01*dt);
  305. if(check_flag(&ier, "IDACalcIC", 1)){
  306. ier = IDACalcIC(mem, IDA_YA_YDP_INIT, tNow+1e+01*dt);
  307. }
  308. //Every once in a while, for reasons
  309. //that befuddle this mathematically
  310. //lesser author, IDACalcIC fails. Here,
  311. //I desperately try to make it converge
  312. //again by sampling increasingly larger
  313. //time-steps:
  314. for (int i = 0; i < 10; i++) {
  315. ier = IDACalcIC(mem, IDA_YA_YDP_INIT, tNow+(1e-01+pow(10,i)*dt));
  316. if(ier==0){
  317. break;
  318. }
  319. }
  320. //Failure :( Back to the drawing board:
  321. if(check_flag(&ier, "IDACalcIC", 1)){
  322. freeAtLast(mem,&y,&ydot,&res,&id,&atolv,&constraints,data);
  323. return(-1);
  324. }
  325. printf("Initial (Consistent) Conditions Calculated!\n");
  326. printf("------------------------------------------\n\n");
  327. }
  328. }
  329. /*Floor small value to zero*/
  330. floorSmallValue(data, &y);
  331. if(count%data->nSaves==0 && !data->writeEveryRegrid){
  332. printSpaceTimeOutput(tNow, &y, data->output, data);
  333. //if(data->writeRates){
  334. // printSpaceTimeRates(tNow, ydot, data);
  335. //}
  336. }
  337. /*Get and Print Rxns Rate of Progress and Specie Rate of Production data*/
  338. /*Following code snippet will be executed only once*/
  339. if(ii==0 && maxT >=(data->initialTemperature+data->deltaT)){
  340. getReactions(data,&y,data->rxnROPOutput);
  341. getSpecies(data,&y,data->spROPOutput);
  342. ii++;
  343. }
  344. // getTimescale(data,&y);
  345. // if(count%data->nSaves==0){
  346. // printTimescaleOutput(tNow,&y, data->timescaleOutput,data);
  347. // //printSpaceTimeOutput(tNow, &y, data->output, data);
  348. // //if(data->writeRates){
  349. // // printSpaceTimeRates(tNow, ydot, data);
  350. // //}
  351. // }
  352. /*Print global variables only if time-step is of high order!*/
  353. if(data->nTimeSteps==0){
  354. data->flamePosition[0]=0.0e0;
  355. data->flamePosition[1]=0.0e0;
  356. data->flameTime[0]=tNow;
  357. data->flameTime[1]=tNow;
  358. }
  359. ier = IDAGetNumErrTestFails(mem, &netf);
  360. ier = IDAGetNumNonlinSolvConvFails(mem, &ncfn);
  361. ier = IDADlsGetNumJacEvals(mem, &njevals);
  362. ier = IDADlsGetNumResEvals(mem, &nrevals);
  363. printf("etf = %ld ,"
  364. "nlsf= %ld ,"
  365. "J=%ld ,"
  366. "R=%ld ,"
  367. "o=%d ,",netf, ncfn, njevals, nrevals, kcur);
  368. printf("Time=%15.6e s,",tNow);
  369. printf("dt=%15.6e s,",dt);
  370. printf("frac: %15.6e\n",dxRatio);
  371. count++;
  372. data->nTimeSteps=count;
  373. }
  374. }
  375. SUNLinSolFree(LS);
  376. SUNMatDestroy(A);
  377. freeAtLast(mem,&y,&ydot,&res,&id,&atolv,&constraints,data);
  378. return(0);
  379. }
  380. void freeAtLast(void* mem,
  381. N_Vector *y,
  382. N_Vector *ydot,
  383. N_Vector *res,
  384. N_Vector *id,
  385. N_Vector *atolv,
  386. N_Vector *constraints,UserData data){
  387. IDAFree(&mem);
  388. freeSolution(y,ydot,res,id,atolv,constraints);
  389. freeUserData(data);
  390. }
  391. static int check_flag(void *flagvalue, const char *funcname, int opt)
  392. {
  393. int *errflag;
  394. /* Check if SUNDIALS function returned NULL pointer - no memory allocated */
  395. if (opt == 0 && flagvalue == NULL) {
  396. fprintf(stderr,
  397. "\nSUNDIALS_ERROR: %s() failed - returned NULL pointer\n\n",
  398. funcname);
  399. return(1);
  400. }
  401. /* Check if flag < 0 */
  402. else if (opt == 1) {
  403. errflag = (int *) flagvalue;
  404. if (*errflag < 0) {
  405. fprintf(stderr,
  406. "\nSUNDIALS_ERROR: %s() failed with flag = %d\n\n",
  407. funcname, *errflag);
  408. return(1);
  409. }
  410. }
  411. /* Check if function returned NULL pointer - no memory allocated */
  412. else if (opt == 2 && flagvalue == NULL) {
  413. fprintf(stderr,
  414. "\nMEMORY_ERROR: %s() failed - returned NULL pointer\n\n",
  415. funcname);
  416. return(1);
  417. }
  418. return(0);
  419. }