From nek5000-users at lists.mcs.anl.gov Mon Jan 1 07:29:30 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 1 Jan 2018 13:29:30 +0000 Subject: [Nek5000-users] Different velocity values in different 'v' inlets In-Reply-To: References: , Message-ID: Usually this is the element number. For example: subroutine userbc(i,j,k,eg) integer e,eg real myux(lxl1,ly1,lz1,lelt) common /mystuff/ myux e = gllel( eg ) ! Convert global element number to element number local to this rank ux = myux(i,j,k,e) etc. return end would assign your own ux() ["myux"] array values to the boundary points wherever a Dirichlet condition ("v ") has been assigned. hth, Paul ________________________________ From: Nek5000-users on behalf of nek5000-users at lists.mcs.anl.gov Sent: Sunday, December 31, 2017 1:18:06 PM To: nek5000-users at lists.mcs.anl.gov Subject: Re: [Nek5000-users] Different velocity values in different 'v' inlets What is the variable e in userbc? On 31 Dec 2017, at 19:35, "nek5000-users at lists.mcs.anl.gov" > wrote: Hi all, I'm trying to simulate a shear-layer which involves two different jets emerging at different velocities. The simulation is 2D for now. The width of the first jet extends from y=0.0 to y=1.0 and the second extends from y=1.0 to y=3.0 I generated a mesh using genbox with 'v' BCs for both inlets. In the .usr file I have the following form for usrbc subroutine userbc (ix,iy,iz,iside,ieg) c NOTE ::: This subroutine MAY NOT be called by every process include 'SIZE' include 'TOTAL' include 'NEKUSE' if (ym1(i,j,k,e).lt.1) then ux=10.0 elseif (ym1(i,j,k,e).gt.1) then ux=1.0 endif ux=1.0 uy=0.0 uz=0.0 temp=0.0 return end As you can see I try assigning ux = 10.0 and 1.0 to the different zones. However the results show a uniform value of 1.0 across both the inlets. What am I missing here? Sincerely, -- Amitvikram Dutta Graduate Research Assistant Fluid Mechanics Research Lab Multi-Physics Interaction Lab University of Waterloo _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Tue Jan 2 03:12:43 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Tue, 2 Jan 2018 10:12:43 +0100 Subject: [Nek5000-users] Different velocity values in different 'v' inlets In-Reply-To: References: Message-ID: You set ux=1.0 after your if-test...? On 12/31/2017 07:34 PM, nek5000-users at lists.mcs.anl.gov wrote: > Hi all, > > I'm trying to simulate a shear-layer which involves two different jets > emerging at different velocities. The simulation is 2D for now. The > width of the first jet extends from y=0.0 to y=1.0 and the second > extends from y=1.0 to y=3.0 > > I generated a mesh using genbox with 'v' BCs for both inlets. > > In the .usr file I have the following form for usrbc > > subroutine userbc (ix,iy,iz,iside,ieg) > c NOTE ::: This subroutine MAY NOT be called by every process > include 'SIZE' > include 'TOTAL' > include 'NEKUSE' > if (ym1(i,j,k,e).lt.1) then > ux=10.0 > elseif (ym1(i,j,k,e).gt.1) then > ux=1.0 > endif > ux=1.0 > uy=0.0 > uz=0.0 > temp=0.0 > return > end > > As you can see I try assigning ux = 10.0 and 1.0 to the different zones. > However the results show a uniform value of 1.0 across both the inlets. > What am I missing here? > > Sincerely, > -- > > *Amitvikram Dutta* > > Graduate Research Assistant > > Fluid Mechanics Research Lab > > Multi-Physics Interaction Lab > > University of Waterloo > > > > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > From nek5000-users at lists.mcs.anl.gov Tue Jan 2 04:16:11 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Tue, 2 Jan 2018 10:16:11 +0000 Subject: [Nek5000-users] Mortar_Spectral_finite_element_Method Message-ID: Hi user I'm interesting to Legendre sepctral finite element method. I have tired to write a matlab code to impose mortar conditions on the boundary for two domains Is there any one to help me to write a matlab code to impose mortar condition Thaknk you From nek5000-users at lists.mcs.anl.gov Tue Jan 2 08:21:26 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Tue, 02 Jan 2018 14:21:26 +0000 Subject: [Nek5000-users] Different velocity values in different 'v' inlets In-Reply-To: References: Message-ID: Hi all, There's an error in the above code with ux = 1.0 having been left after the loop. However, the real issue was, I had to set the loop conditions in both usrbc and usric before starting the sim. That resolved the issue for me. Sincerely, On Tue, Jan 2, 2018 at 4:10 AM wrote: > You set ux=1.0 after your if-test...? > > On 12/31/2017 07:34 PM, nek5000-users at lists.mcs.anl.gov wrote: > > Hi all, > > > > I'm trying to simulate a shear-layer which involves two different jets > > emerging at different velocities. The simulation is 2D for now. The > > width of the first jet extends from y=0.0 to y=1.0 and the second > > extends from y=1.0 to y=3.0 > > > > I generated a mesh using genbox with 'v' BCs for both inlets. > > > > In the .usr file I have the following form for usrbc > > > > subroutine userbc (ix,iy,iz,iside,ieg) > > c NOTE ::: This subroutine MAY NOT be called by every process > > include 'SIZE' > > include 'TOTAL' > > include 'NEKUSE' > > if (ym1(i,j,k,e).lt.1) then > > ux=10.0 > > elseif (ym1(i,j,k,e).gt.1) then > > ux=1.0 > > endif > > ux=1.0 > > uy=0.0 > > uz=0.0 > > temp=0.0 > > return > > end > > > > As you can see I try assigning ux = 10.0 and 1.0 to the different zones. > > However the results show a uniform value of 1.0 across both the inlets. > > What am I missing here? > > > > Sincerely, > > -- > > > > *Amitvikram Dutta* > > > > Graduate Research Assistant > > > > Fluid Mechanics Research Lab > > > > Multi-Physics Interaction Lab > > > > University of Waterloo > > > > > > > > _______________________________________________ > > Nek5000-users mailing list > > Nek5000-users at lists.mcs.anl.gov > > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > > > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > -- *Amitvikram Dutta* Graduate Research Assistant Fluid Mechanics Research Lab Multi-Physics Interaction Lab University of Waterloo -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Tue Jan 2 09:31:58 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Tue, 2 Jan 2018 15:31:58 +0000 Subject: [Nek5000-users] Different velocity values in different 'v' inlets In-Reply-To: References: , Message-ID: Sorry -- I didn't see the code in the first email. What I would do is the following: subroutine userbc (ix,iy,iz,iside,ieg) c NOTE ::: This subroutine MAY NOT be called by every process include 'SIZE' include 'TOTAL' include 'NEKUSE' ux=1.0 uy=0.0 uz=0.0 temp=0.0 if (y.lt.1) ux=10. ! y is passed in through NEKUSE return end ________________________________ From: Nek5000-users on behalf of nek5000-users at lists.mcs.anl.gov Sent: Tuesday, January 2, 2018 8:21:26 AM To: nek5000-users at lists.mcs.anl.gov Subject: Re: [Nek5000-users] Different velocity values in different 'v' inlets Hi all, There's an error in the above code with ux = 1.0 having been left after the loop. However, the real issue was, I had to set the loop conditions in both usrbc and usric before starting the sim. That resolved the issue for me. Sincerely, On Tue, Jan 2, 2018 at 4:10 AM > wrote: You set ux=1.0 after your if-test...? On 12/31/2017 07:34 PM, nek5000-users at lists.mcs.anl.gov wrote: > Hi all, > > I'm trying to simulate a shear-layer which involves two different jets > emerging at different velocities. The simulation is 2D for now. The > width of the first jet extends from y=0.0 to y=1.0 and the second > extends from y=1.0 to y=3.0 > > I generated a mesh using genbox with 'v' BCs for both inlets. > > In the .usr file I have the following form for usrbc > > subroutine userbc (ix,iy,iz,iside,ieg) > c NOTE ::: This subroutine MAY NOT be called by every process > include 'SIZE' > include 'TOTAL' > include 'NEKUSE' > if (ym1(i,j,k,e).lt.1) then > ux=10.0 > elseif (ym1(i,j,k,e).gt.1) then > ux=1.0 > endif > ux=1.0 > uy=0.0 > uz=0.0 > temp=0.0 > return > end > > As you can see I try assigning ux = 10.0 and 1.0 to the different zones. > However the results show a uniform value of 1.0 across both the inlets. > What am I missing here? > > Sincerely, > -- > > *Amitvikram Dutta* > > Graduate Research Assistant > > Fluid Mechanics Research Lab > > Multi-Physics Interaction Lab > > University of Waterloo > > > > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users -- Amitvikram Dutta Graduate Research Assistant Fluid Mechanics Research Lab Multi-Physics Interaction Lab University of Waterloo -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Thu Jan 4 09:16:44 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Thu, 4 Jan 2018 15:16:44 +0000 Subject: [Nek5000-users] Basis functions and smoothness of interpolants Message-ID: Hi, I am trying to understand how the code works, and therefore I opened the theory section at the Nek5000-homepage. Here, you link to the book "High-Order Methods for Incompressible Fluid Flow" by Deville et al. I started to read the book, but I am not sure how to relate what I read to Nek. In chapter 4, a class of 2D basis functions defined on a square is defined. I think this is the kind of basis function that is used in Nek, am I right? I understand that these functions serves as a basis for one element of the domain. But Nek solves PDE:s over several linked elements. What is here the condition at the edge connecting two elements? Is it that the function (velocity component/pressure/scalar) should be continuous at the GLL-nodes at such an edge? Also consinuously differentiable att these nodes? Differentiable to some higher order? What about function values on the edge that are not at the GLL-node? Are they discontinuous or differentiable to some certain order? Best, Johan -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Thu Jan 4 10:10:01 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Thu, 4 Jan 2018 17:10:01 +0100 Subject: [Nek5000-users] Basis functions and smoothness of interpolants In-Reply-To: References: Message-ID: Hi, Indeed, this book is a good resource for learning SEM, and in particular the implementation in Nek5000. There are also other, perhaps shorter, expositions of the material. Two papers that I found particularly useful (there are of course many more) are: - Fischer. An Overlapping Schwarz Method for Spectral Element Solution of the Incompressible Navier?Stokes Equations. J. Comput. Phys. 133, 84?101 (1997) - Fischer et al. Simulation of high-Reynolds number vascular flows. Comput. Methods Appl. Mech. Engrg. 196 (2007) 3049?3060 and also the lecture notes by Paul (given at KTH in 2016): http://www.mcs.anl.gov/~fischer/kth/kth_crs_2016s.pdf Regarding your questions below: The basis functions are the Lagrange interpolants to the Legendre polynomials of a specific order. If using PnPn-2, the velocity is on the Gauss-Lobatto-Legendre mesh (i.e. including the boundary points), and the pressure is on the Gauss-Legendre mesh (without boundary points). These functions are defined within each element, and the continuity between elements is C0, i.e. only the function value is the same. The ansatz functions are polynomials, so you can differentiate them inside each element; however, derivatives are not continuous over element boundaries (even though this difference reduces spectrally fast). Hope this helps to get a start on SEM. Philipp On 2018-01-04 16:16, nek5000-users at lists.mcs.anl.gov wrote: > Hi, > > > I am trying to understand how the code works, and therefore I opened the > theory section at the Nek5000-homepage. > > Here, you link to the book "High-Order Methods for Incompressible Fluid > Flow" by Deville et al. > > I started to read the book, but I am not sure how to relate what I read > to Nek. > > > In chapter 4,?a class of 2D basis functions defined on a square is defined. > > I think this is the kind of basis function that is used in Nek, am I right? > > > I understand that these functions serves as a basis for one element of > the domain. > > But Nek solves PDE:s over several linked elements. > > What is here the condition at the edge connecting two elements? > > > Is it that the function (velocity component/pressure/scalar) should be > continuous at the GLL-nodes at such an edge? > > Also consinuously differentiable att these nodes? Differentiable to some > higher order? > > What about function values on the edge that are not at the GLL-node? > > Are they discontinuous or differentiable to some certain order? > > > Best, > > > Johan > > > > > > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > From nek5000-users at lists.mcs.anl.gov Thu Jan 4 06:13:31 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Thu, 4 Jan 2018 12:13:31 +0000 Subject: [Nek5000-users] How to read NEK data generated on another machine (with different endianness) Message-ID: Dear All, We have generated some data on JUQUEEN (Julich Supercomputing Centre), and want to analyze them on SuperMUC (Leibniz Supercomputing Centre). But NEK (1.0rc1 / SVN r1115) on SuperMUC can't process the data. It is giving some error after reading the file. Original data is in big endian format, and SuperMUC generates data with little endian format. Could this be a problem? If so, how can we tackle this issue? Thanks, With best regards, Ambrish ------------------------------------------------------ Ambrish Pandey Post Doctoral Researcher Institut f?r Thermo- und Fluiddynamik Technische Universit?t Ilmenau Ilmenau 98693 Germany Emails: ambrish.pandey at tu-ilmenau.de ambrishiitk at gmail.com ------------------------------------------------------ -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Thu Jan 4 14:10:58 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Thu, 4 Jan 2018 20:10:58 +0000 Subject: [Nek5000-users] How to read NEK data generated on another machine (with different endianness) In-Reply-To: References: Message-ID: Dear Ambrish, Nek5000 supports either endian conditions and one can in principle go back and forth. What does the error look like? I'm assuming that the issue does not arise when you restart on juqueen? Paul ________________________________ From: Nek5000-users on behalf of nek5000-users at lists.mcs.anl.gov Sent: Thursday, January 4, 2018 6:13:31 AM To: nek5000-users at lists.mcs.anl.gov Subject: [Nek5000-users] How to read NEK data generated on another machine (with different endianness) Dear All, We have generated some data on JUQUEEN (Julich Supercomputing Centre), and want to analyze them on SuperMUC (Leibniz Supercomputing Centre). But NEK (1.0rc1 / SVN r1115) on SuperMUC can't process the data. It is giving some error after reading the file. Original data is in big endian format, and SuperMUC generates data with little endian format. Could this be a problem? If so, how can we tackle this issue? Thanks, With best regards, Ambrish ------------------------------------------------------ Ambrish Pandey Post Doctoral Researcher Institut f?r Thermo- und Fluiddynamik Technische Universit?t Ilmenau Ilmenau 98693 Germany Emails: ambrish.pandey at tu-ilmenau.de ambrishiitk at gmail.com ------------------------------------------------------ -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Thu Jan 4 16:34:13 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Thu, 4 Jan 2018 23:34:13 +0100 Subject: [Nek5000-users] How to read NEK data generated on another machine (with different endianness) In-Reply-To: References: Message-ID: Nek will swap the bytes on input. Note this is only true for .fXXXXX files. On 4 Jan 2018, at 21:07, "nek5000-users at lists.mcs.anl.gov " > wrote: Dear All, We have generated some data on?JUQUEEN (Julich Supercomputing?Centre), and want to analyze them on SuperMUC (Leibniz Supercomputing Centre). But NEK (1.0rc1 / SVN? r1115) on SuperMUC can't process the data. It is giving some error after reading the file. Original data is in big endian format, and SuperMUC generates data with little endian format. Could this be a problem? If so, how can we tackle this issue? Thanks, With best regards, Ambrish ------------------------------------------------------ Ambrish Pandey Post Doctoral Researcher Institut f?r Thermo- und Fluiddynamik Technische Universit?t Ilmenau Ilmenau 98693 Germany Emails: ambrish.pandey at tu-ilmenau.de ambrishiitk at gmail.com ------------------------------------------------------ _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Thu Jan 4 16:43:12 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Thu, 4 Jan 2018 22:43:12 +0000 Subject: [Nek5000-users] How to read NEK data generated on another machine (with different endianness) In-Reply-To: References: , Message-ID: ...and for the fldxx files as well! ________________________________ From: Nek5000-users on behalf of nek5000-users at lists.mcs.anl.gov Sent: Thursday, January 4, 2018 4:34:13 PM To: nek5000-users at lists.mcs.anl.gov Subject: Re: [Nek5000-users] How to read NEK data generated on another machine (with different endianness) Nek will swap the bytes on input. Note this is only true for .fXXXXX files. On 4 Jan 2018, at 21:07, "nek5000-users at lists.mcs.anl.gov" > wrote: Dear All, We have generated some data on JUQUEEN (Julich Supercomputing Centre), and want to analyze them on SuperMUC (Leibniz Supercomputing Centre). But NEK (1.0rc1 / SVN r1115) on SuperMUC can't process the data. It is giving some error after reading the file. Original data is in big endian format, and SuperMUC generates data with little endian format. Could this be a problem? If so, how can we tackle this issue? Thanks, With best regards, Ambrish ------------------------------------------------------ Ambrish Pandey Post Doctoral Researcher Institut f?r Thermo- und Fluiddynamik Technische Universit?t Ilmenau Ilmenau 98693 Germany Emails: ambrish.pandey at tu-ilmenau.de ambrishiitk at gmail.com ------------------------------------------------------ _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Fri Jan 5 09:25:13 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Fri, 5 Jan 2018 15:25:13 +0000 Subject: [Nek5000-users] How to read NEK data generated on another machine (with different endianness) In-Reply-To: References: Message-ID: Dear Paul, Thanks a lot for your prompt response. I am attaching the error and output files for the job, which did not work. Could you please have a look into it, and suggest something? When we restart on Juqueen, everything works fine. Moreover, we are using version 1.0rc1 / SVN r1115 on SuperMUC, whereas 1.0rc1 / SVN r1088 on Juqueen. I don't know, but might this be causing some problem? Thanks and best regards, Ambrish ________________________________ Dear Ambrish, Nek5000 supports either endian conditions and one can in principle go back and forth. What does the error look like? I'm assuming that the issue does not arise when you restart on juqueen? Paul With best regards, Ambrish ------------------------------------------------------ Ambrish Pandey Post Doctoral Researcher Institut f?r Thermo- und Fluiddynamik Technische Universit?t Ilmenau Ilmenau 98693 Germany Emails: ambrish.pandey at tu-ilmenau.de ambrishiitk at gmail.com ------------------------------------------------------ ________________________________ From: Pandey Ambrish TU Ilmenau Sent: Thursday, January 4, 2018 1:13:31 PM To: nek5000-users at lists.mcs.anl.gov Subject: How to read NEK data generated on another machine (with different endianness) Dear All, We have generated some data on JUQUEEN (Julich Supercomputing Centre), and want to analyze them on SuperMUC (Leibniz Supercomputing Centre). But NEK (1.0rc1 / SVN r1115) on SuperMUC can't process the data. It is giving some error after reading the file. Original data is in big endian format, and SuperMUC generates data with little endian format. Could this be a problem? If so, how can we tackle this issue? Thanks, With best regards, Ambrish ------------------------------------------------------ Ambrish Pandey Post Doctoral Researcher Institut f?r Thermo- und Fluiddynamik Technische Universit?t Ilmenau Ilmenau 98693 Germany Emails: ambrish.pandey at tu-ilmenau.de ambrishiitk at gmail.com ------------------------------------------------------ -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: G25_32.err.intp Type: application/octet-stream Size: 1244191 bytes Desc: G25_32.err.intp URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: G25_32.out.intp Type: application/octet-stream Size: 15018 bytes Desc: G25_32.out.intp URL: From nek5000-users at lists.mcs.anl.gov Fri Jan 5 13:33:23 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Fri, 5 Jan 2018 19:33:23 +0000 Subject: [Nek5000-users] How to read NEK data generated on another machine (with different endianness) In-Reply-To: References: , Message-ID: Dear Ambrish, Thank you for the files. I find the logfile (your .out file) a bit confusing. It looks like it starts time stepping prior to loading the restart file ?? (Just some notes. I see you're running on P=1024 ranks. You have nsteps=1. What happens if you have nsteps=5, say?) When I grep uvw from the logfile I see everything is zero. Why does the code timestep prior to loading? Are you doing something in the user file? Finally, I urge you to update to the latest version of the code from the webpage (the v17.0 release). The team has put a lot of effort into having this as the stable and supportable release. Although I have no reason to suspect issues with the version you are using, we won't be able to debug it---we are all working only with the current version at this point. Best, Paul ________________________________ From: Nek5000-users on behalf of nek5000-users at lists.mcs.anl.gov Sent: Friday, January 5, 2018 9:25:13 AM To: nek5000-users at lists.mcs.anl.gov Subject: Re: [Nek5000-users] How to read NEK data generated on another machine (with different endianness) Dear Paul, Thanks a lot for your prompt response. I am attaching the error and output files for the job, which did not work. Could you please have a look into it, and suggest something? When we restart on Juqueen, everything works fine. Moreover, we are using version 1.0rc1 / SVN r1115 on SuperMUC, whereas 1.0rc1 / SVN r1088 on Juqueen. I don't know, but might this be causing some problem? Thanks and best regards, Ambrish ________________________________ Dear Ambrish, Nek5000 supports either endian conditions and one can in principle go back and forth. What does the error look like? I'm assuming that the issue does not arise when you restart on juqueen? Paul With best regards, Ambrish ------------------------------------------------------ Ambrish Pandey Post Doctoral Researcher Institut f?r Thermo- und Fluiddynamik Technische Universit?t Ilmenau Ilmenau 98693 Germany Emails: ambrish.pandey at tu-ilmenau.de ambrishiitk at gmail.com ------------------------------------------------------ ________________________________ From: Pandey Ambrish TU Ilmenau Sent: Thursday, January 4, 2018 1:13:31 PM To: nek5000-users at lists.mcs.anl.gov Subject: How to read NEK data generated on another machine (with different endianness) Dear All, We have generated some data on JUQUEEN (Julich Supercomputing Centre), and want to analyze them on SuperMUC (Leibniz Supercomputing Centre). But NEK (1.0rc1 / SVN r1115) on SuperMUC can't process the data. It is giving some error after reading the file. Original data is in big endian format, and SuperMUC generates data with little endian format. Could this be a problem? If so, how can we tackle this issue? Thanks, With best regards, Ambrish ------------------------------------------------------ Ambrish Pandey Post Doctoral Researcher Institut f?r Thermo- und Fluiddynamik Technische Universit?t Ilmenau Ilmenau 98693 Germany Emails: ambrish.pandey at tu-ilmenau.de ambrishiitk at gmail.com ------------------------------------------------------ -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Fri Jan 5 14:59:19 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Fri, 5 Jan 2018 14:59:19 -0600 Subject: [Nek5000-users] Outputting to 2d VTK using Postnek In-Reply-To: References: Message-ID: Hi, everyone: I am still having problems outputting 2d VTK files. I have tried modifying the function vtk_out_hex() in postnek/trap.f (see attached file) by adding an extra conditional for when mz == 1 (which is true for 2d). In this case, I have simply copied the original code, but omitted the k loop and set k = 1. When I do this, postnek will output the cell information for 2d simulations (CELLS), although it is still outputting the 8 points per cell (3d) since I am not sure which 4 of the 8 points might be correct for the 2d case. I have tried visualizing the 2d VTK file using various combinations of the 4 points: (1,2,3,4), (5,6,7,8), (1,3,5,7), etc., but the results still do not look correct. I have attached the modified version of vtk_out_hex() that I have written. I have also attached the VTK output that it produces: eddy_uv_mod.vtk. I'm afraid I am a bit stuck here without better knowledge of the underlying data structures in Nek. Any help or nudges in the correct direction are appreciated! Thanks, Taiyo On Wed, Dec 6, 2017 at 1:47 PM, wrote: > Hi, all: > > I have run into problems using postnek/postex to convert simulation output > to VTK format for 2d simulations (3d simulations work fine). I have tested > this using the eddy_uv example from the NekExamples directory. When using > postex, I use the option "DUMP vtk ALL", which produces the attached VTK > output. It seems that the grid point position information is incorrect. > > Also, I have looked through the postnek functions in trap.f and it seems > that VTK cell information (CELLS, CELL_TYPES) is omitted for 2d cases. Is > there a way to output this information for 2d results? > > Perhaps there is something I am overlooking? Any help is greatly > appreciated. > > Thanks, > Taiyo > > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > > -- Taiyo J. Wilson Research Engineer Illinois Rocstar LLC 108 Hessel Blvd. Champaign, IL 61820 twilson at illinoisrocstar.com www.illinoisrocstar.com -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: vtk_out_hex_mod.f Type: text/x-fortran Size: 8012 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: eddy_uv_mod.vtk Type: application/octet-stream Size: 208429 bytes Desc: not available URL: From nek5000-users at lists.mcs.anl.gov Sun Jan 7 12:27:10 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Sun, 7 Jan 2018 18:27:10 +0000 Subject: [Nek5000-users] post-processing using f0000 files Message-ID: Hi Nek, I am struggling with a problem in post-processing the files generated by calling avg_all (see https://lists.mcs.anl.gov/mailman/htdig/nek5000-users/ 2017-December/004832.html). I used the attached usr files but obtained one visit file which seems not correct in terms of streamwise velocity number scale. So I got one question. Can you tell me how I can have a velocity profile file or rms file (e.g., txt or dat format) by using the avg*0.f000.. rms*0.f000...and rm2*0.f000, rather than a visit file. Please find attached usr file. Kind regards, ZJ -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: pipe.usr Type: application/octet-stream Size: 9713 bytes Desc: not available URL: From nek5000-users at lists.mcs.anl.gov Mon Jan 8 03:09:48 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 8 Jan 2018 09:09:48 +0000 Subject: [Nek5000-users] Basis functions and smoothness of interpolants In-Reply-To: References: , Message-ID: Thank you for a very good answer. In the slides by Paul he refers to some MATLAB code examples. Are these examples available somewhere? Also: What time discretization is used? /Johan ________________________________ From: Nek5000-users on behalf of nek5000-users at lists.mcs.anl.gov Sent: Thursday, January 4, 2018 5:10:01 PM To: nek5000-users at lists.mcs.anl.gov Subject: Re: [Nek5000-users] Basis functions and smoothness of interpolants Hi, Indeed, this book is a good resource for learning SEM, and in particular the implementation in Nek5000. There are also other, perhaps shorter, expositions of the material. Two papers that I found particularly useful (there are of course many more) are: - Fischer. An Overlapping Schwarz Method for Spectral Element Solution of the Incompressible Navier-Stokes Equations. J. Comput. Phys. 133, 84-101 (1997) - Fischer et al. Simulation of high-Reynolds number vascular flows. Comput. Methods Appl. Mech. Engrg. 196 (2007) 3049-3060 and also the lecture notes by Paul (given at KTH in 2016): http://www.mcs.anl.gov/~fischer/kth/kth_crs_2016s.pdf Regarding your questions below: The basis functions are the Lagrange interpolants to the Legendre polynomials of a specific order. If using PnPn-2, the velocity is on the Gauss-Lobatto-Legendre mesh (i.e. including the boundary points), and the pressure is on the Gauss-Legendre mesh (without boundary points). These functions are defined within each element, and the continuity between elements is C0, i.e. only the function value is the same. The ansatz functions are polynomials, so you can differentiate them inside each element; however, derivatives are not continuous over element boundaries (even though this difference reduces spectrally fast). Hope this helps to get a start on SEM. Philipp On 2018-01-04 16:16, nek5000-users at lists.mcs.anl.gov wrote: > Hi, > > > I am trying to understand how the code works, and therefore I opened the > theory section at the Nek5000-homepage. > > Here, you link to the book "High-Order Methods for Incompressible Fluid > Flow" by Deville et al. > > I started to read the book, but I am not sure how to relate what I read > to Nek. > > > In chapter 4, a class of 2D basis functions defined on a square is defined. > > I think this is the kind of basis function that is used in Nek, am I right? > > > I understand that these functions serves as a basis for one element of > the domain. > > But Nek solves PDE:s over several linked elements. > > What is here the condition at the edge connecting two elements? > > > Is it that the function (velocity component/pressure/scalar) should be > continuous at the GLL-nodes at such an edge? > > Also consinuously differentiable att these nodes? Differentiable to some > higher order? > > What about function values on the edge that are not at the GLL-node? > > Are they discontinuous or differentiable to some certain order? > > > Best, > > > Johan > > > > > > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Mon Jan 8 07:04:34 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 8 Jan 2018 14:04:34 +0100 Subject: [Nek5000-users] post-processing using f0000 files In-Reply-To: References: Message-ID: Not sure what you mean by ?visit files?. They don?t exist. Nek produces so called field files. In fact there are multiple flavors (ASCII, binary, new binary). VisIt and Paraview have both implemented a reader to support these file formats. To read-in Nek field files you have to setup a so called meta-data file (created by the visnek script). You usr file implements z-averaging using gs. Note, this will only work for an extruded mesh. How did you generate your mesh? Please use VisIt or our build-in interpolation tool (see Hemi example) to extract line data (e.g. velocity profile) out of the 3D volume field. -----Original message----- > From:nek5000-users at lists.mcs.anl.gov > Sent: Sunday 7th January 2018 19:27 > To: nek5000-users at lists.mcs.anl.gov > Subject: [Nek5000-users] post-processing using f0000 files > >
Hi Nek,

I am struggling with a problem in post-processing the files generated by
calling avg_all (see
https://lists.mcs.anl.gov/mailman/htdig/nek5000-users/2017-December/004832.html ).
I used the attached usr files but obtained one visit file which seems not correct in terms of streamwise velocity number scale. So I got one question.?

Can you tell me how I can have a velocity profile file or rms file (e.g., txt or dat format) by using
the avg*0.f000.. rms*0.f000...and rm2*0.f000, rather than a visit file. Please find attached usr file. >

Kind regards,

ZJ > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users From nek5000-users at lists.mcs.anl.gov Mon Jan 8 07:50:59 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 8 Jan 2018 13:50:59 +0000 Subject: [Nek5000-users] Re post-processing using f0000 files Message-ID: Hi, Thanks so much for your reply. The visit file obtained after running the usr file attached last email is called pipe0.f00001. Visualization of pipe0.f00001 shows the peak value of streamwise velocity is 0.0003 which should be around 1.3 in non-dimension. So I guess the averaging process is wrong in usr file. Would you please have a look at the averaging calculation in usr file is correct. The 2D mesh was generated firstly using pretex and extruded to 3D via n2to3. If the averaging process is correct, may I know how I can use Paraview or VisIt to get the line data. By the way, is there any way to get profile like channel flow as shown below, if (nid.eq.0 .and. istep.gt.0 .and. & mod(istep,iostep_avg).eq.0) then write(6,*) 'Dumping statistics ....' open(unit=56,file='reystresses.dat') write(56,'(A,1pe14.7)') '#time = ', time write(56,'(A)') & '# y y+ R_uu R_vv R_ww R_uv' open(unit=57,file='means.dat') write(57,'(A,1pe14.7)') '#time = ', time write(57,'(A)') & '# y y+ Umean' Kind regards, ZJ -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Mon Jan 8 07:57:10 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 8 Jan 2018 13:57:10 +0000 Subject: [Nek5000-users] Re post-processing using f0000 files In-Reply-To: References: Message-ID: ZJ, what type of boundary conditions are you using? Inlet/outlet or periodic boundary conditions? Marco > On Jan 8, 2018, at 8:50 AM, nek5000-users at lists.mcs.anl.gov wrote: > > Hi, > > Thanks so much for your reply. > > The visit file obtained after running the usr file attached last email is called pipe0.f00001. Visualization of pipe0.f00001 shows the peak value of streamwise velocity is 0.0003 which should be around 1.3 in non-dimension. So I guess the averaging process is wrong in usr file. Would you please have a look at the averaging calculation in usr file is correct. > > The 2D mesh was generated firstly using pretex and extruded to 3D via n2to3. > > If the averaging process is correct, may I know how I can use Paraview or VisIt to get the line data. By the way, is there any way to get profile like channel flow as shown below, > > if (nid.eq.0 .and. istep.gt.0 .and. > & mod(istep,iostep_avg).eq.0) then > write(6,*) 'Dumping statistics ....' > open(unit=56,file='reystresses.dat') > write(56,'(A,1pe14.7)') '#time = ', time > write(56,'(A)') > & '# y y+ R_uu R_vv R_ww R_uv' > open(unit=57,file='means.dat') > write(57,'(A,1pe14.7)') '#time = ', time > write(57,'(A)') > & '# y y+ Umean' > > > Kind regards, > > ZJ > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users From nek5000-users at lists.mcs.anl.gov Mon Jan 8 08:16:41 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 8 Jan 2018 15:16:41 +0100 Subject: [Nek5000-users] Basis functions and smoothness of interpolants In-Reply-To: References: Message-ID: Hi, The MATLAB codes used to be on the homepage of the Linn? FLOW Centre, but due to some re-structuring the old pages are currently not available. Regarding time integration: - linear terms: implicit backward differencing schemes (BDF) of up to order 3 - nonlinear terms: explicit extraploation scheme (EXT) up to order 3. Best regards, Philipp On 2018-01-08 10:09, nek5000-users at lists.mcs.anl.gov wrote: > Thank you for a very good answer. > > In the slides by Paul he refers to some MATLAB code examples. > Are these examples available somewhere? > > Also: What time discretization is used? > > > /Johan > > ------------------------------------------------------------------------ > *From:* Nek5000-users on > behalf of nek5000-users at lists.mcs.anl.gov > *Sent:* Thursday, January 4, 2018 5:10:01 PM > *To:* nek5000-users at lists.mcs.anl.gov > *Subject:* Re: [Nek5000-users] Basis functions and smoothness of > interpolants > Hi, > > Indeed, this book is a good resource for learning SEM, and in particular > the implementation in Nek5000. There are also other, perhaps shorter, > expositions of the material. Two papers that I found particularly useful > (there are of course many more) are: > > - Fischer. An Overlapping Schwarz Method for Spectral Element Solution > of the Incompressible Navier?Stokes Equations. J. Comput. Phys. 133, > 84?101 (1997) > - Fischer et al. Simulation of high-Reynolds number vascular flows. > Comput. Methods Appl. Mech. Engrg. 196 (2007) 3049?3060 > > and also the lecture notes by Paul (given at KTH in 2016): > http://www.mcs.anl.gov/~fischer/kth/kth_crs_2016s.pdf > > Regarding your questions below: The basis functions are the Lagrange > interpolants to the Legendre polynomials of a specific order. If using > PnPn-2, the velocity is on the Gauss-Lobatto-Legendre mesh (i.e. > including the boundary points), and the pressure is on the > Gauss-Legendre mesh (without boundary points). These functions are > defined within each element, and the continuity between elements is C0, > i.e. only the function value is the same. The ansatz functions are > polynomials, so you can differentiate them inside each element; however, > derivatives are not continuous over element boundaries (even though this > difference reduces spectrally fast). > > Hope this helps to get a start on SEM. > > Philipp > > > > On 2018-01-04 16:16, nek5000-users at lists.mcs.anl.gov wrote: >> Hi, >> >> >> I am trying to understand how the code works, and therefore I opened the >> theory section at the Nek5000-homepage. >> >> Here, you link to the book "High-Order Methods for Incompressible Fluid >> Flow" by Deville et al. >> >> I started to read the book, but I am not sure how to relate what I read >> to Nek. >> >> >> In chapter 4,?a class of 2D basis functions defined on a square is defined. >> >> I think this is the kind of basis function that is used in Nek, am I right? >> >> >> I understand that these functions serves as a basis for one element of >> the domain. >> >> But Nek solves PDE:s over several linked elements. >> >> What is here the condition at the edge connecting two elements? >> >> >> Is it that the function (velocity component/pressure/scalar) should be >> continuous at the GLL-nodes at such an edge? >> >> Also consinuously differentiable att these nodes? Differentiable to some >> higher order? >> >> What about function values on the edge that are not at the GLL-node? >> >> Are they discontinuous or differentiable to some certain order? >> >> >> Best, >> >> >> Johan >> >> >> >> >> >> _______________________________________________ >> Nek5000-users mailing list >> Nek5000-users at lists.mcs.anl.gov >> https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users >> > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > > > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > From nek5000-users at lists.mcs.anl.gov Mon Jan 8 04:05:11 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 8 Jan 2018 18:05:11 +0800 (GMT+08:00) Subject: [Nek5000-users] =?utf-8?q?Reynolds_number_setting_in_the_turbCha?= =?utf-8?q?nnel_example?= Message-ID: Hello Neks Thanks very much for all your kindly replys. And I am really sorry for not following this discussion in time because of the vacation. I will works on the example more deeply in the following days. I still have a problem which might be very stupid, but I have no clue where the proleme is. I set p02 = -2800 and the grid domain is pi * [-1,1] * 2pi in z,y,x direction to reproduce the Re_tau = 180 case. But the simulation results is laminar! which is really strange. And is there any existing post-code for calculate two points correlation and energy spectral? Thanks again Regards Zhenrong JING PhD ?cole centrale de Nantes -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Mon Jan 8 12:37:22 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 8 Jan 2018 18:37:22 +0000 Subject: [Nek5000-users] Reynolds number setting in the turbChannel example In-Reply-To: References: Message-ID: Is this email part of another discussion? Did you start from the Nek5000 example? Can you please send your .rea file? Did you like at the instantaneous velocity field? Marco On Jan 8, 2018, at 5:05 AM, nek5000-users at lists.mcs.anl.gov wrote: Hello Neks Thanks very much for all your kindly replys. And I am really sorry for not following this discussion in time because of the vacation. I will works on the example more deeply in the following days. I still have a problem which might be very stupid, but I have no clue where the proleme is. I set p02 = -2800 and the grid domain is pi * [-1,1] * 2pi in z,y,x direction to reproduce the Re_tau = 180 case. But the simulation results is laminar! which is really strange. And is there any existing post-code for calculate two points correlation and energy spectral? Thanks again Regards Zhenrong JING PhD ?cole centrale de Nantes _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Mon Jan 8 12:38:20 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 8 Jan 2018 18:38:20 +0000 Subject: [Nek5000-users] Reynolds number setting in the turbChannel example In-Reply-To: References: Message-ID: Dear Zhenrong, Did you seed your initial conditions with any perturbation? Did you fix your flow rate with p54/p55 in the .rea file? Best, Paul ________________________________ From: Nek5000-users on behalf of nek5000-users at lists.mcs.anl.gov Sent: Monday, January 8, 2018 4:05:11 AM To: nek5000-users at lists.mcs.anl.gov Subject: Re: [Nek5000-users] Reynolds number setting in the turbChannel example Hello Neks Thanks very much for all your kindly replys. And I am really sorry for not following this discussion in time because of the vacation. I will works on the example more deeply in the following days. I still have a problem which might be very stupid, but I have no clue where the proleme is. I set p02 = -2800 and the grid domain is pi * [-1,1] * 2pi in z,y,x direction to reproduce the Re_tau = 180 case. But the simulation results is laminar! which is really strange. And is there any existing post-code for calculate two points correlation and energy spectral? Thanks again Regards Zhenrong JING PhD ?cole centrale de Nantes -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Mon Jan 8 14:30:49 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 08 Jan 2018 20:30:49 +0000 Subject: [Nek5000-users] Re post-processing using f0000 files Message-ID: Hi Marco, The boundary condition I am using is periodic. Kind regards, ZJ -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Mon Jan 8 14:31:47 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 8 Jan 2018 20:31:47 +0000 Subject: [Nek5000-users] Re post-processing using f0000 files In-Reply-To: References: Message-ID: Can you please send you .rea file? > On Jan 8, 2018, at 3:30 PM, nek5000-users at lists.mcs.anl.gov wrote: > > Hi Marco, > > The boundary condition I am using is periodic. > > Kind regards, > > ZJ > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users From nek5000-users at lists.mcs.anl.gov Tue Jan 9 04:04:26 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Tue, 9 Jan 2018 18:04:26 +0800 (GMT+08:00) Subject: [Nek5000-users] =?utf-8?q?Reynolds_number_setting_in_the_turbCha?= =?utf-8?q?nnel_example?= Message-ID: Dear Marco and Paul I indeed started from the example included in the nek5000. After using .box file generate .re2 file, I just changed the Reynold's number from -10935 to -2800 and lower p26 to 0.5 in my own calculation. However, I found the p54/p55 is indeed zero, I will retry the simulation and hope this time it works. Thanks again for your help! Zhenrong JING PhD Ecole centrale de Nantes -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Tue Jan 9 04:58:16 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Tue, 9 Jan 2018 11:58:16 +0100 Subject: [Nek5000-users] Reynolds number setting in the turbChannel example In-Reply-To: References: Message-ID: I suggest to start from the latest turbChannel example which is included in v17.0 On 9 Jan 2018, at 11:36, "nek5000-users at lists.mcs.anl.gov " > wrote: Dear Marco and Paul I indeed started from the example included in the nek5000. After using .box file generate .re2 file, I just changed the Reynold's number from -10935 to -2800 and lower? p26 to 0.5? in my own calculation. However, I found the? p54/p55 is indeed zero, I will retry the simulation and hope this time it works. Thanks again for your help! Zhenrong JING PhD Ecole centrale de Nantes _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Tue Jan 9 08:08:45 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Tue, 9 Jan 2018 15:08:45 +0100 Subject: [Nek5000-users] Announcing Nek5000 17.0 Message-ID: Dear Nek Users, Please make sure to update to the latest version 17.0 (see below). Have fun! -----Original message----- > From:nek5000-users at lists.mcs.anl.gov > Sent: Monday 18th December 2017 8:57 > To: nek5000-users at lists.mcs.anl.gov > Subject: [Nek5000-users] Announcing Nek5000 17.0 > > We are proud to announce that Nek5000 version 17.0 is now available for download at: > https://nek5000.mcs.anl.gov > > Please read the Release Notes carefully before using the code. > > Note, we strongly recommend to use the latest release tarball in a production environment > instead of the lastest master branch on GitHub. > > None of this incredible work would be possible without the support and contributions > of our wonderful members and community. Thank you all for your hard work! > > > Enjoy, > > The Nek Development Team > > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > From nek5000-users at lists.mcs.anl.gov Tue Jan 9 12:25:36 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Tue, 9 Jan 2018 18:25:36 +0000 Subject: [Nek5000-users] Re post-processing using f0000 files Message-ID: Hi Marco, Please see attached rea file and usr file. Would you please help me do some changes to output the averaged velocity, rms files (means.dat or rms.dat) in the usr file. Kind regards, ZJ? pipe.rea ? -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: pipe.usr Type: application/octet-stream Size: 9713 bytes Desc: not available URL: From nek5000-users at lists.mcs.anl.gov Tue Jan 9 15:42:26 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Tue, 9 Jan 2018 16:42:26 -0500 Subject: [Nek5000-users] Re post-processing using f0000 files Message-ID: Hi ZJ, One thing to keep in mind for the averaging process is that it assumes the element numbering is lexicographic. I.e. elements are numbered sequentially in x, then y and then z. That being said, since your 2D mesh was generated in pretex, the numbering might not what the code was written for. If this is the case, a workaround would be to use the interp_uvw from the hemi case as an example to generate a set of say uniform points in your domain and then average the values at those points by using gslib_findpts_eval amd uniform weights, and writing them out to a dat file. Ketan Sent from my iPhone From nek5000-users at lists.mcs.anl.gov Wed Jan 10 13:25:59 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Wed, 10 Jan 2018 19:25:59 +0000 Subject: [Nek5000-users] Re post-processing using f0000 files In-Reply-To: References: Message-ID: Hi Ketan, Do you mean the hemi.usr in NekExamples which I found is used to demonstrate particle tracking. I didn't find the interp_uvw in the code, the only one similar to that is interp_v which evaluates velocity for list of points xyz. Is that for the particles or domain mesh? ZJ -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Thu Jan 11 09:15:54 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Thu, 11 Jan 2018 15:15:54 +0000 Subject: [Nek5000-users] Question about iside value In-Reply-To: References: Message-ID: Elizabeth, the subroutine usrbc is only called for boundary conditions that require a value specified by the user. In your case, only the inflow boundary condition requires an inlet value. The outflow and wall boundary conditions are coded in the source-code. Marco On Nov 15, 2017, at 12:29 PM, nek5000-users at lists.mcs.anl.gov wrote: Hi, Neks! I am working with a complex geometry witch was built in gambit. I want to know a parameter "iside" for each of faces ( outflow, inflow and all walls) on zero step. If I ask in userbc ( in *.usr file) write "iside", I receive only iside=1, that matches inflow. It means that faces with type "wall" don't have "iside" value,am i right? And how each surface is assigned value "iside"? Best regards, Elizabeth _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Thu Jan 11 09:16:28 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Thu, 11 Jan 2018 15:16:28 +0000 Subject: [Nek5000-users] Question about iside value In-Reply-To: References: Message-ID: Hi Elizabeth, userbc is called only for "v " BCs (for velocity) or for "t " (for temperature), or other similar BCs that require user input. "W " BCs do not get passed to userbc, nor do "O ". "o " BCs do, however. The rule is that lower case characters indicate user-defined values in userbc. There is no lower case Wall BC, however. Note that "W " is effectively the same as: "v " with ux=0, uy=0, uz=0. Paul ________________________________ From: Nek5000-users on behalf of nek5000-users at lists.mcs.anl.gov Sent: Wednesday, November 15, 2017 11:29:17 AM To: nek5000-users Subject: [Nek5000-users] Question about iside value Hi, Neks! I am working with a complex geometry witch was built in gambit. I want to know a parameter "iside" for each of faces ( outflow, inflow and all walls) on zero step. If I ask in userbc ( in *.usr file) write "iside", I receive only iside=1, that matches inflow. It means that faces with type "wall" don't have "iside" value,am i right? And how each surface is assigned value "iside"? Best regards, Elizabeth -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Thu Jan 11 10:54:20 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Thu, 11 Jan 2018 16:54:20 +0000 Subject: [Nek5000-users] =?koi8-r?b?829sbG9jYXRpb24gb2YgaSxqLGsgaW4gZWFj?= =?koi8-r?b?aCBzcGVjdHJhbCBlbGVtZW50?= In-Reply-To: References: Message-ID: Hi Elizabeth, Correct - there is no guarantee that the elements are generated with any particular orientation (except if you use genbox). You have access to all the variables in the code. Typically, usrdat2() or userchk() are good places to query. Use usrdat2() if you want to set things up prior to the start of the computation. Use userchk() if you want to set things up during or just at the very start of the computation. A common usage mode: subroutine userchk() ... if (istep.eq.0) then check whatever... endif The advantage of checking in userchk() on step 0 is that all of the preliminary variables (including initial conditions) are set and ready to go. The advantage of using usrdat2() is that the geometry is ready (i.e., xm1, ym1, zm1), but the geometric factors are recomputed after usrdat2 is called, so that you can _morph_ the geometry (i.e., make a smooth and _continuous_ transformation). You cannot, say, rotate individual elements in usrdat2() because that would result in a topological change in the mesh connectivity and at present Nek5000 does not have a mechanism to discover that change. (Connectivity is established by genmap.) hth, Paul ________________________________ From: Nek5000-users on behalf of nek5000-users at lists.mcs.anl.gov Sent: Tuesday, November 21, 2017 9:11:48 PM To: nek5000-users Subject: [Nek5000-users] ?ollocation of i,j,k in each spectral element Hi, Neks! I am working with a complex geometry witch was built in gambit.And I want to change positions of some points in spectral elements. I've read in documentation that i,j,k,e in xm1(i,j,k,e), for example, are changed from 1 to nx1,ny1,nz1 and nelv respectively. But during my tests it's seemed that in different elements x,y,z axis not always correspond to the global coordinate system. Am I right? And how could I find out the principle of collocation of i,j,k in each spectral element? Best regards, Elizabeth -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Thu Jan 11 15:03:19 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Thu, 11 Jan 2018 21:03:19 +0000 Subject: [Nek5000-users] Re post-processing using f0000 files Message-ID: Hi ZJ, Yes I meant the hemi.usr case. I just looked at the usr file that you attached in earlier message, and I don?t see any discrepancies in it. It should work for your case since it only averages in z direction and since your mesh was extruded using n2to3, the element numbering should be as expected. Can you please make sure the value of nelxy i.e. number of elements in the 2D cross-section is correction. Right now it is set to 288 in the usr file. Ketan From nek5000-users at lists.mcs.anl.gov Thu Jan 11 08:08:28 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Thu, 11 Jan 2018 17:08:28 +0300 Subject: [Nek5000-users] ERROR: e-solver does not exist Message-ID: Im trying to make a turbulance flow 2d rectangular box and getting this error /----------------------------------------------------------\\ |????? _?? __ ______ __ __? ______? ____?? ____?? ____???? | |???? / | / // ____// //_/ / ____/ / __ \\/ __ \\/ __ \\?? | |??? /? |/ // __/? / , use std axhelm for all elem ? 65???????? 1.0000000E+00???? p65 #iofile(eg,0 or 64); <0 --> sep. dirs ? 66????????? 6.000000???????? p66 write fmt:ONLY postx uses rea value ? 67????????? 6.000000???????? p67 read fmt: same modes as p66 ? 68???????? 200000.00E+00???? p68 iastep: freq for avg_all ? 93????????? 20.00000???????? p93 Numbr of prev pressure solns saved ? 94????????? 5.000000???????? p94 start projecting vel. after p94 step ? 95????????? 5.000000???????? p95 start projecting pr after p95 step ? 99????????? 4.000000???????? p99??? dealiasing:if <0 disable ?101???????? 2.0000000E+00???? p101?? No. of additional filter modes ?103???????? 5.0000000E-01???? p103?? weight of stabilizing filter (.01) ?done :: read .rea file?? 0.85864E-02 sec ?nelgt/nelgv/lelt:???????? 730???????? 730????????? 92 ?lx1? /lx2? /lx3 :?????????? 6?????????? 6?????????? 6 ?setup mesh topology ?? Right-handed check complete for???? 730 elements. OK. ?? setvert2d:?? 6??????? 6880?????? 18560??????? 6880??????? 6880 ?call usrsetvert ?done :: usrsetvert gs_setup: 507 unique labels shared ?? pairwise times (avg, min, max): 4.50263e-06 4.3549e-06 4.572e-06 ?? crystal router??????????????? : 7.19253e-06 7.1082e-06 7.2708e-06 ?? all reduce??????????????????? : 9.94137e-05 9.93523e-05 9.9448e-05 ?? used all_to_all method: pairwise ?? handle bytes (avg, min, max): 22683 22012 23620 ?? buffer bytes (avg, min, max): 2084 1648 2720 ?? setupds time 1.0156E-02 seconds?? 0? 6??????? 6880???????? 730 ?????????? 4? max multiplicity ?done :: setup mesh topology ?call usrdat ?done :: usrdat ?generate geometry data ?NOTE: All elements deformed , param(59) ^=0 ?done :: generate geometry data ?call usrdat2 ?done :: usrdat2 ?regenerate geometry data?????????? 1 ?NOTE: All elements deformed , param(59) ^=0 ?done :: regenerate geometry data?????????? 1 ?verify mesh topology ? -2.3561944901923448??????? 3.9269908169872418?????? Xrange ? -1.0000000000000000??????? 1.0000000000000000?????? Yrange ?? 9.9000000000000010E+021? -9.9000000000000010E+021? Zrange ?done :: verify mesh topology ?IFTRAN?? = T ?IFFLOW?? = T ?IFHEAT?? = F ?IFSPLIT? = T ?IFLOMACH = F ?IFUSERVP = F ?IFUSERMV = F ?IFPERT?? = F ?IFADJ??? = F ?IFSTRS?? = F ?IFCHAR?? = T ?IFCYCLIC = F ?IFAXIS?? = F ?IFMVBD?? = F ?IFMELT?? = F ?IFNEKNEK = F ?IFSYNC?? = F ?IFVCOR?? = F ?IFINTQ?? = F ?IFGEOM?? = F ?IFSURT?? = F ?IFWCNO?? = F ?IFTMSH for field?????????? 1??? =? F ?IFADVC for field?????????? 1??? =? T ?IFNONL for field?????????? 1??? =? F ?Dealiasing enabled, lxd=?????????? 9 ?Estimated eigenvalues ?EIGAA =??? 1.3587005501361697 ?EIGGA =??? 1269143.4772368053 ?EIGAE =?? 0.25000000000000000 ?EIGAS =??? 2.2999917087593809E-002 ?EIGGE =??? 1269143.4772368053 ?EIGGS =??? 2.0000000000000000 ?verify mesh topology ? -2.3561944901923448??????? 3.9269908169872418?????? Xrange ? -1.0000000000000000??????? 1.0000000000000000?????? Yrange ?? 9.9000000000000010E+021? -9.9000000000000010E+021? Zrange ?done :: verify mesh topology ? E-solver strategy:? 0 itr ?mg_nx:?????????? 1?????????? 3?????????? 5 ?mg_ny:?????????? 1?????????? 3?????????? 5 ?mg_nz:?????????? 0?????????? 0?????????? 0 ?call usrsetvert ?done :: usrsetvert gs_setup: 103 unique labels shared ?? pairwise times (avg, min, max): 2.35579e-06 2.2701e-06 2.4383e-06 ?? crystal router??????????????? : 4.06828e-06 3.9056e-06 4.3852e-06 ?? all reduce??????????????????? : 4.63608e-06 4.5825e-06 4.698e-06 ?? used all_to_all method: pairwise ?? handle bytes (avg, min, max): 4695 4540 4900 ?? buffer bytes (avg, min, max): 468 368 608 ?? setupds time 9.6015E-04 seconds?? 1? 2???????? 792???????? 730 ?? setvert2d:?? 4??????? 3836??????? 6756??????? 3836??????? 3836 ?call usrsetvert ?done :: usrsetvert gs_setup: 305 unique labels shared ?? pairwise times (avg, min, max): 2.88736e-06 2.7693e-06 2.9417e-06 ?? crystal router??????????????? : 5.67697e-06 5.5738e-06 5.7281e-06 ?? all reduce??????????????????? : 1.5845e-05 7.419e-06 2.43007e-05 ?? used all_to_all method: pairwise ?? handle bytes (avg, min, max): 13689 13276 14260 ?? buffer bytes (avg, min, max): 1276 1008 1664 ?? setupds time 2.7936E-03 seconds?? 2? 4??????? 3836???????? 730 ?? setvert2d:?? 4??????? 3836??????? 6756??????? 3836??????? 3836 ?call usrsetvert ?done :: usrsetvert gs_setup: 305 unique labels shared ?? pairwise times (avg, min, max): 2.74806e-06 2.6386e-06 2.849e-06 ?? crystal router??????????????? : 5.45844e-06 5.3276e-06 5.5491e-06 ?? all reduce??????????????????? : 7.42733e-06 7.3395e-06 7.5135e-06 ?? used all_to_all method: pairwise ?? handle bytes (avg, min, max): 13689 13276 14260 ?? buffer bytes (avg, min, max): 1276 1008 1664 ?? setupds time 1.7463E-03 seconds?? 3? 4??????? 3836???????? 730 ?? setvert2d:?? 6??????? 6880?????? 18560??????? 6880??????? 6880 ?call usrsetvert ?done :: usrsetvert gs_setup: 507 unique labels shared ?? pairwise times (avg, min, max): 2.98656e-06 2.8975e-06 3.0673e-06 ?? crystal router??????????????? : 1.37999e-05 1.36954e-05 1.38856e-05 ?? all reduce??????????????????? : 1.64007e-05 1.62838e-05 1.65981e-05 ?? used all_to_all method: pairwise ?? handle bytes (avg, min, max): 22683 22012 23620 ?? buffer bytes (avg, min, max): 2084 1648 2720 ?? setupds time 2.4769E-03 seconds?? 4? 6??????? 6880???????? 730 ?regenerate geometry data?????????? 1 ?NOTE: All elements deformed , param(59) ^=0 ?done :: regenerate geometry data?????????? 1 ?h1_mg_nx:?????????? 1?????????? 3?????????? 5 ?h1_mg_ny:?????????? 1?????????? 3?????????? 5 ?h1_mg_nz:?????????? 0?????????? 0?????????? 0 ?call usrsetvert ?done :: usrsetvert gs_setup: 103 unique labels shared ?? pairwise times (avg, min, max): 2.37065e-06 2.3153e-06 2.4607e-06 ?? crystal router??????????????? : 3.88401e-06 3.7749e-06 3.9709e-06 ?? all reduce??????????????????? : 4.90976e-06 4.8233e-06 5.0116e-06 ?? used all_to_all method: pairwise ?? handle bytes (avg, min, max): 4695 4540 4900 ?? buffer bytes (avg, min, max): 468 368 608 ?? setupds time 9.4292E-04 seconds?? 5? 2???????? 792???????? 730 ?? setvert2d:?? 4??????? 3836??????? 6756??????? 3836??????? 3836 ?call usrsetvert ?done :: usrsetvert gs_setup: 305 unique labels shared ?? pairwise times (avg, min, max): 2.91439e-06 2.7588e-06 3.0219e-06 ?? crystal router??????????????? : 5.61719e-06 5.5624e-06 5.6535e-06 ?? all reduce??????????????????? : 7.48192e-06 7.4368e-06 7.5201e-06 ?? used all_to_all method: pairwise ?? handle bytes (avg, min, max): 13689 13276 14260 ?? buffer bytes (avg, min, max): 1276 1008 1664 ?? setupds time 2.3787E-03 seconds?? 6? 4??????? 3836???????? 730 ?? setvert2d:?? 4??????? 3836??????? 6756??????? 3836??????? 3836 ?call usrsetvert ?done :: usrsetvert gs_setup: 305 unique labels shared ?? pairwise times (avg, min, max): 2.94944e-06 2.7296e-06 3.1507e-06 ?? crystal router??????????????? : 5.54658e-06 5.4843e-06 5.5919e-06 ?? all reduce??????????????????? : 7.52008e-06 7.3959e-06 7.6057e-06 ?? used all_to_all method: pairwise ?? handle bytes (avg, min, max): 13689 13276 14260 ?? buffer bytes (avg, min, max): 1276 1008 1664 ?? setupds time 1.8404E-03 seconds?? 7? 4??????? 3836???????? 730 ?? setvert2d:?? 6??????? 6880?????? 18560??????? 6880??????? 6880 ?call usrsetvert ?done :: usrsetvert gs_setup: 507 unique labels shared ?? pairwise times (avg, min, max): 3.04339e-06 2.9536e-06 3.1081e-06 ?? crystal router??????????????? : 7.14937e-06 7.0897e-06 7.1979e-06 ?? all reduce??????????????????? : 1.48502e-05 1.47878e-05 1.49567e-05 ?? used all_to_all method: pairwise ?? handle bytes (avg, min, max): 22683 22012 23620 ?? buffer bytes (avg, min, max): 2084 1648 2720 ?? setupds time 2.3173E-03 seconds?? 8? 6??????? 6880???????? 730 ?? setvert2d:?? 6??????? 6880?????? 18560??????? 6880??????? 6880 ?call usrsetvert ?done :: usrsetvert gs_setup: 507 unique labels shared ?? pairwise times (avg, min, max): 2.87688e-06 2.7267e-06 2.9336e-06 ?? crystal router??????????????? : 7.30052e-06 7.2595e-06 7.3437e-06 ?? all reduce??????????????????? : 1.4766e-05 1.46617e-05 1.48032e-05 ?? used all_to_all method: pairwise ?? handle bytes (avg, min, max): 22683 22012 23620 ?? buffer bytes (avg, min, max): 2084 1648 2720 ?? setupds time 2.2158E-03 seconds?? 9? 6??????? 6880???????? 730 ?? setvert2d:?? 8??????? 9924?????? 36204??????? 9924??????? 9924 ?call usrsetvert ?done :: usrsetvert gs_setup: 709 unique labels shared ?? pairwise times (avg, min, max): 3.12636e-06 2.9746e-06 3.2381e-06 ?? crystal router??????????????? : 8.53711e-06 8.4963e-06 8.5871e-06 ?? all reduce??????????????????? : 1.69634e-05 1.68605e-05 1.70839e-05 ?? used all_to_all method: pairwise ?? handle bytes (avg, min, max): 31677 30748 32980 ?? buffer bytes (avg, min, max): 2892 2288 3776 ?? setupds time 3.4194E-03 seconds? 10? 8??????? 9924???????? 730 ?setup h1 coarse grid, nx_crs=?????????? 2 ?call usrsetvert ?done :: usrsetvert gs_setup: 103 unique labels shared ?? pairwise times (avg, min, max): 2.45545e-06 2.3334e-06 2.5351e-06 ?? crystal router??????????????? : 3.81156e-06 3.7179e-06 3.8942e-06 ?? all reduce??????????????????? : 4.5149e-06 4.4852e-06 4.5619e-06 ?? used all_to_all method: pairwise ?? handle bytes (avg, min, max): 4695 4540 4900 ?? buffer bytes (avg, min, max): 468 368 608 ?done :: setup h1 coarse grid??? 3.5807990061584860E-003? sec ?call usrdat3 ?done :: usrdat3 ?set initial conditions ?nekuic (1) for ifld??????????? 1 ?call nekuic for vel ?xyz min??? -2.3562????? -1.0000????? 0.99000E+22 ?uvwpt min? 0.99000E+22? 0.99000E+22? 0.99000E+22?? 0.0000 0.0000 ?PS min????? 0.0000????? 0.99000E+22 ?xyz max???? 3.9270?????? 1.0000???? -0.99000E+22 ?uvwpt max -0.99000E+22 -0.99000E+22 -0.99000E+22?? 0.0000 0.0000 ?PS max????? 0.0000???? -0.99000E+22 ?done :: set initial conditions ?call userchk ?? 0.0000E+00????????? NaN????????? NaN monitor ?Start collecting statistics ... ?done :: userchk gridpoints unique/tot:???????? 18560??????? 26280 ? dofs:??????????????? 18394??????????????? 26280 ?Initialization successfully completed?? 0.76199E-01 sec Starting time loop ... ???? DT/DTCFL/DTFS/DTINIT?? 0.100E-04?? 0.494-323? -0.558-261 0.100E-04 Step????? 1, time= 1.00000E-05, DT=? 1.000E-05 ???????????? Solving for fluid ????????? 1? Helmh3 fluid unconverged!??? 201 NaN????????? NaN?? 1.0000E-08 ?ERROR: E-solver does not exist?????????? 0 ?Stop in ESOLVER ?ERROR: E-solver does not exist?????????? 0 ?Stop in ESOLVER ?ERROR: E-solver does not exist?????????? 0 ?Stop in ESOLVER ?ERROR: E-solver does not exist?????????? 0 ?Stop in ESOLVER ?ERROR: E-solver does not exist?????????? 0 ?Stop in ESOLVER ?ERROR: E-solver does not exist?????????? 0 ?Stop in ESOLVER ?ERROR: E-solver does not exist?????????? 0 ?Stop in ESOLVER ?ERROR: E-solver does not exist?????????? 0 ?Stop in ESOLVER an error occured: dying ... total elapsed time???????????? :?? 1.44827E-01 sec total solver time w/o IO?????? :?? 0.00000E+00 sec time/timestep????????????????? :?? 0.00000E+00 sec avg throughput per timestep??? :?? 0.00000E+00 gridpts/CPUs total max memory usage???????? :?? 1.89690E-01 GB ------------------------------------------------------- Primary job? terminated normally, but 1 process returned a non-zero exit code.. Per user-direction, the job has been aborted. ------------------------------------------------------- -------------------------------------------------------------------------- mpiexec detected that one or more processes exited with non-zero status, thus causing the job to be terminated. The first process to do so was: ? Process name: [[25844,1],0] ? Exit code:??? 1 -------------------------------------------------------------------------- From nek5000-users at lists.mcs.anl.gov Fri Jan 12 06:00:55 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Fri, 12 Jan 2018 13:00:55 +0100 Subject: [Nek5000-users] ERROR: e-solver does not exist In-Reply-To: References: Message-ID: Your mesh seems to be messed up (see zmax below). On 12 Jan 2018, at 00:14, "nek5000-users at lists.mcs.anl.gov " > wrote: Im trying to make a turbulance flow 2d rectangular box and getting this error /----------------------------------------------------------\\ |????? _?? __ ______ __ __? ______? ____?? ____?? ____???? | |???? / | / // ____// //_/ / ____/ / __ \\/ __ \\/ __ \\?? | |??? /? |/ // __/? / , ???????????????????? | |????????????????????????????????????????????????????????? | \\----------------------------------------------------------/ ?Number of processors:?????????? 8 ?REAL??? wdsize????? :?????????? 8 ?INTEGER wdsize????? :?????????? 4 ?Timer accuracy????? : 4.83E-08 ?Reading /home/Nek5000/run/git/NewBarc/NewBarc.rea ?Reading /home/Nek5000/run/git/NewBarc/NewBarc.re2 ?mapping elements to processors ?Reading /home/Nek5000/run/git/NewBarc/NewBarc.ma2 ?????????? 0????????? 91????????? 91???????? 730???????? 730? NELV ?????????? 1????????? 91????????? 91???????? 730???????? 730? NELV ?????????? 2????????? 91????????? 91???????? 730???????? 730? NELV ?????????? 3????????? 92????????? 92???????? 730???????? 730? NELV ?????????? 4????????? 91????????? 91???????? 730???????? 730? NELV ?????????? 5????????? 91????????? 91???????? 730???????? 730? NELV ?????????? 6????????? 91????????? 91???????? 730???????? 730? NELV ?????????? 7????????? 92????????? 92???????? 730???????? 730? NELV ?RANK???? 0 IEG???? 351???? 352???? 353???? 354???? 355 356???? 381???? 382 ??????????????????? 383???? 384???? 385???? 386???? 387 388???? 389???? 391 ??????????????????? 392???? 393???? 394???? 395???? 396 397???? 398???? 399 ??????????????????? 401???? 402???? 403???? 404???? 405 406???? 407???? 408 ??????????????????? 409???? 411???? 412???? 413???? 414 415???? 416???? 417 ??????????????????? 418???? 419???? 421???? 422???? 423 424???? 425???? 426 ??????????????????? 427???? 428???? 429???? 431???? 432 433???? 434???? 435 ??????????????????? 436???? 437???? 438???? 441???? 442 443???? 444???? 445 ??????????????????? 446???? 447???? 448???? 451???? 452 453???? 454???? 455 ??????????????????? 456???? 457???? 458???? 461???? 462 463???? 464???? 465 ??????????????????? 466???? 467???? 468???? 471???? 472 473???? 474???? 475 ??????????????????? 476???? 477???? 478 ?element load imbalance:??????????? 1????????? 91????????? 92 ?done :: mapping?? 0.13924E-02 sec ? preading mesh ? preading bc for ifld?????????? 1 ?done :: read .re2 file?? 0.45E-02 sec ?????????? 0? objects found ?103?? Parameters from file: ?? 1????????? 1.000000???????? p01 DENSITY ?? 2???????? -40000.00???????? p02 VISCOS ? 11???????? 280000.000??????? p11 NSTEPS ? 12??????? -.10000000E-04???? p12 DT ? 15????????? 500.0000???????? p15 IOSTEP ? 21???????? 1.0000000E-05 ? 22???????? 1.0000000E-08???? p22 HELMHOLTZ ? 24???????? 1.0000000E-02???? p24 TOLREL ? 25???????? 1.0000000E-02???? p25 TOLABS ? 26????????? 2.000000???????? p26 COURANT/NTAU ? 27????????? 3.000000???????? p27 TORDER ? 59???????? 0.0000000E+00???? p59 !=0 --> use std axhelm for all elem ? 65???????? 1.0000000E+00???? p65 #iofile(eg,0 or 64); <0 --> sep. dirs ? 66????????? 6.000000???????? p66 write fmt:ONLY postx uses rea value ? 67????????? 6.000000???????? p67 read fmt: same modes as p66 ? 68???????? 200000.00E+00???? p68 iastep: freq for avg_all ? 93????????? 20.00000???????? p93 Numbr of prev pressure solns saved ? 94????????? 5.000000???????? p94 start projecting vel. after p94 step ? 95????????? 5.000000???????? p95 start projecting pr after p95 step ? 99????????? 4.000000???????? p99??? dealiasing:if <0 disable ?101???????? 2.0000000E+00???? p101?? No. of additional filter modes ?103???????? 5.0000000E-01???? p103?? weight of stabilizing filter (.01) ?done :: read .rea file?? 0.85864E-02 sec ?nelgt/nelgv/lelt:???????? 730???????? 730????????? 92 ?lx1? /lx2? /lx3 :?????????? 6?????????? 6?????????? 6 ?setup mesh topology ?? Right-handed check complete for???? 730 elements. OK. ?? setvert2d:?? 6??????? 6880?????? 18560??????? 6880??????? 6880 ?call usrsetvert ?done :: usrsetvert gs_setup: 507 unique labels shared ?? pairwise times (avg, min, max): 4.50263e-06 4.3549e-06 4.572e-06 ?? crystal router??????????????? : 7.19253e-06 7.1082e-06 7.2708e-06 ?? all reduce??????????????????? : 9.94137e-05 9.93523e-05 9.9448e-05 ?? used all_to_all method: pairwise ?? handle bytes (avg, min, max): 22683 22012 23620 ?? buffer bytes (avg, min, max): 2084 1648 2720 ?? setupds time 1.0156E-02 seconds?? 0? 6??????? 6880???????? 730 ?????????? 4? max multiplicity ?done :: setup mesh topology ?call usrdat ?done :: usrdat ?generate geometry data ?NOTE: All elements deformed , param(59) ^=0 ?done :: generate geometry data ?call usrdat2 ?done :: usrdat2 ?regenerate geometry data?????????? 1 ?NOTE: All elements deformed , param(59) ^=0 ?done :: regenerate geometry data?????????? 1 ?verify mesh topology ? -2.3561944901923448??????? 3.9269908169872418?????? Xrange ? -1.0000000000000000??????? 1.0000000000000000?????? Yrange ?? 9.9000000000000010E+021? -9.9000000000000010E+021? Zrange ?done :: verify mesh topology ?IFTRAN?? = T ?IFFLOW?? = T ?IFHEAT?? = F ?IFSPLIT? = T ?IFLOMACH = F ?IFUSERVP = F ?IFUSERMV = F ?IFPERT?? = F ?IFADJ??? = F ?IFSTRS?? = F ?IFCHAR?? = T ?IFCYCLIC = F ?IFAXIS?? = F ?IFMVBD?? = F ?IFMELT?? = F ?IFNEKNEK = F ?IFSYNC?? = F ?IFVCOR?? = F ?IFINTQ?? = F ?IFGEOM?? = F ?IFSURT?? = F ?IFWCNO?? = F ?IFTMSH for field?????????? 1??? =? F ?IFADVC for field?????????? 1??? =? T ?IFNONL for field?????????? 1??? =? F ?Dealiasing enabled, lxd=?????????? 9 ?Estimated eigenvalues ?EIGAA =??? 1.3587005501361697 ?EIGGA =??? 1269143.4772368053 ?EIGAE =?? 0.25000000000000000 ?EIGAS =??? 2.2999917087593809E-002 ?EIGGE =??? 1269143.4772368053 ?EIGGS =??? 2.0000000000000000 ?verify mesh topology ? -2.3561944901923448??????? 3.9269908169872418?????? Xrange ? -1.0000000000000000??????? 1.0000000000000000?????? Yrange ?? 9.9000000000000010E+021? -9.9000000000000010E+021? Zrange ?done :: verify mesh topology ? E-solver strategy:? 0 itr ?mg_nx:?????????? 1?????????? 3?????????? 5 ?mg_ny:?????????? 1?????????? 3?????????? 5 ?mg_nz:?????????? 0?????????? 0?????????? 0 ?call usrsetvert ?done :: usrsetvert gs_setup: 103 unique labels shared ?? pairwise times (avg, min, max): 2.35579e-06 2.2701e-06 2.4383e-06 ?? crystal router??????????????? : 4.06828e-06 3.9056e-06 4.3852e-06 ?? all reduce??????????????????? : 4.63608e-06 4.5825e-06 4.698e-06 ?? used all_to_all method: pairwise ?? handle bytes (avg, min, max): 4695 4540 4900 ?? buffer bytes (avg, min, max): 468 368 608 ?? setupds time 9.6015E-04 seconds?? 1? 2???????? 792???????? 730 ?? setvert2d:?? 4??????? 3836??????? 6756??????? 3836??????? 3836 ?call usrsetvert ?done :: usrsetvert gs_setup: 305 unique labels shared ?? pairwise times (avg, min, max): 2.88736e-06 2.7693e-06 2.9417e-06 ?? crystal router??????????????? : 5.67697e-06 5.5738e-06 5.7281e-06 ?? all reduce??????????????????? : 1.5845e-05 7.419e-06 2.43007e-05 ?? used all_to_all method: pairwise ?? handle bytes (avg, min, max): 13689 13276 14260 ?? buffer bytes (avg, min, max): 1276 1008 1664 ?? setupds time 2.7936E-03 seconds?? 2? 4??????? 3836???????? 730 ?? setvert2d:?? 4??????? 3836??????? 6756??????? 3836??????? 3836 ?call usrsetvert ?done :: usrsetvert gs_setup: 305 unique labels shared ?? pairwise times (avg, min, max): 2.74806e-06 2.6386e-06 2.849e-06 ?? crystal router??????????????? : 5.45844e-06 5.3276e-06 5.5491e-06 ?? all reduce??????????????????? : 7.42733e-06 7.3395e-06 7.5135e-06 ?? used all_to_all method: pairwise ?? handle bytes (avg, min, max): 13689 13276 14260 ?? buffer bytes (avg, min, max): 1276 1008 1664 ?? setupds time 1.7463E-03 seconds?? 3? 4??????? 3836???????? 730 ?? setvert2d:?? 6??????? 6880?????? 18560??????? 6880??????? 6880 ?call usrsetvert ?done :: usrsetvert gs_setup: 507 unique labels shared ?? pairwise times (avg, min, max): 2.98656e-06 2.8975e-06 3.0673e-06 ?? crystal router??????????????? : 1.37999e-05 1.36954e-05 1.38856e-05 ?? all reduce??????????????????? : 1.64007e-05 1.62838e-05 1.65981e-05 ?? used all_to_all method: pairwise ?? handle bytes (avg, min, max): 22683 22012 23620 ?? buffer bytes (avg, min, max): 2084 1648 2720 ?? setupds time 2.4769E-03 seconds?? 4? 6??????? 6880???????? 730 ?regenerate geometry data?????????? 1 ?NOTE: All elements deformed , param(59) ^=0 ?done :: regenerate geometry data?????????? 1 ?h1_mg_nx:?????????? 1?????????? 3?????????? 5 ?h1_mg_ny:?????????? 1?????????? 3?????????? 5 ?h1_mg_nz:?????????? 0?????????? 0?????????? 0 ?call usrsetvert ?done :: usrsetvert gs_setup: 103 unique labels shared ?? pairwise times (avg, min, max): 2.37065e-06 2.3153e-06 2.4607e-06 ?? crystal router??????????????? : 3.88401e-06 3.7749e-06 3.9709e-06 ?? all reduce??????????????????? : 4.90976e-06 4.8233e-06 5.0116e-06 ?? used all_to_all method: pairwise ?? handle bytes (avg, min, max): 4695 4540 4900 ?? buffer bytes (avg, min, max): 468 368 608 ?? setupds time 9.4292E-04 seconds?? 5? 2???????? 792???????? 730 ?? setvert2d:?? 4??????? 3836??????? 6756??????? 3836??????? 3836 ?call usrsetvert ?done :: usrsetvert gs_setup: 305 unique labels shared ?? pairwise times (avg, min, max): 2.91439e-06 2.7588e-06 3.0219e-06 ?? crystal router??????????????? : 5.61719e-06 5.5624e-06 5.6535e-06 ?? all reduce??????????????????? : 7.48192e-06 7.4368e-06 7.5201e-06 ?? used all_to_all method: pairwise ?? handle bytes (avg, min, max): 13689 13276 14260 ?? buffer bytes (avg, min, max): 1276 1008 1664 ?? setupds time 2.3787E-03 seconds?? 6? 4??????? 3836???????? 730 ?? setvert2d:?? 4??????? 3836??????? 6756??????? 3836??????? 3836 ?call usrsetvert ?done :: usrsetvert gs_setup: 305 unique labels shared ?? pairwise times (avg, min, max): 2.94944e-06 2.7296e-06 3.1507e-06 ?? crystal router??????????????? : 5.54658e-06 5.4843e-06 5.5919e-06 ?? all reduce??????????????????? : 7.52008e-06 7.3959e-06 7.6057e-06 ?? used all_to_all method: pairwise ?? handle bytes (avg, min, max): 13689 13276 14260 ?? buffer bytes (avg, min, max): 1276 1008 1664 ?? setupds time 1.8404E-03 seconds?? 7? 4??????? 3836???????? 730 ?? setvert2d:?? 6??????? 6880?????? 18560??????? 6880??????? 6880 ?call usrsetvert ?done :: usrsetvert gs_setup: 507 unique labels shared ?? pairwise times (avg, min, max): 3.04339e-06 2.9536e-06 3.1081e-06 ?? crystal router??????????????? : 7.14937e-06 7.0897e-06 7.1979e-06 ?? all reduce??????????????????? : 1.48502e-05 1.47878e-05 1.49567e-05 ?? used all_to_all method: pairwise ?? handle bytes (avg, min, max): 22683 22012 23620 ?? buffer bytes (avg, min, max): 2084 1648 2720 ?? setupds time 2.3173E-03 seconds?? 8? 6??????? 6880???????? 730 ?? setvert2d:?? 6??????? 6880?????? 18560??????? 6880??????? 6880 ?call usrsetvert ?done :: usrsetvert gs_setup: 507 unique labels shared ?? pairwise times (avg, min, max): 2.87688e-06 2.7267e-06 2.9336e-06 ?? crystal router??????????????? : 7.30052e-06 7.2595e-06 7.3437e-06 ?? all reduce??????????????????? : 1.4766e-05 1.46617e-05 1.48032e-05 ?? used all_to_all method: pairwise ?? handle bytes (avg, min, max): 22683 22012 23620 ?? buffer bytes (avg, min, max): 2084 1648 2720 ?? setupds time 2.2158E-03 seconds?? 9? 6??????? 6880???????? 730 ?? setvert2d:?? 8??????? 9924?????? 36204??????? 9924??????? 9924 ?call usrsetvert ?done :: usrsetvert gs_setup: 709 unique labels shared ?? pairwise times (avg, min, max): 3.12636e-06 2.9746e-06 3.2381e-06 ?? crystal router??????????????? : 8.53711e-06 8.4963e-06 8.5871e-06 ?? all reduce??????????????????? : 1.69634e-05 1.68605e-05 1.70839e-05 ?? used all_to_all method: pairwise ?? handle bytes (avg, min, max): 31677 30748 32980 ?? buffer bytes (avg, min, max): 2892 2288 3776 ?? setupds time 3.4194E-03 seconds? 10? 8??????? 9924???????? 730 ?setup h1 coarse grid, nx_crs=?????????? 2 ?call usrsetvert ?done :: usrsetvert gs_setup: 103 unique labels shared ?? pairwise times (avg, min, max): 2.45545e-06 2.3334e-06 2.5351e-06 ?? crystal router??????????????? : 3.81156e-06 3.7179e-06 3.8942e-06 ?? all reduce??????????????????? : 4.5149e-06 4.4852e-06 4.5619e-06 ?? used all_to_all method: pairwise ?? handle bytes (avg, min, max): 4695 4540 4900 ?? buffer bytes (avg, min, max): 468 368 608 ?done :: setup h1 coarse grid??? 3.5807990061584860E-003? sec ?call usrdat3 ?done :: usrdat3 ?set initial conditions ?nekuic (1) for ifld??????????? 1 ?call nekuic for vel ?xyz min??? -2.3562????? -1.0000????? 0.99000E+22 ?uvwpt min? 0.99000E+22? 0.99000E+22? 0.99000E+22?? 0.0000 0.0000 ?PS min????? 0.0000????? 0.99000E+22 ?xyz max???? 3.9270?????? 1.0000???? -0.99000E+22 ?uvwpt max -0.99000E+22 -0.99000E+22 -0.99000E+22?? 0.0000 0.0000 ?PS max????? 0.0000???? -0.99000E+22 ?done :: set initial conditions ?call userchk ?? 0.0000E+00????????? NaN????????? NaN monitor ?Start collecting statistics ... ?done :: userchk gridpoints unique/tot:???????? 18560??????? 26280 ? dofs:??????????????? 18394??????????????? 26280 ?Initialization successfully completed?? 0.76199E-01 sec Starting time loop ... ???? DT/DTCFL/DTFS/DTINIT?? 0.100E-04?? 0.494-323? -0.558-261 0.100E-04 Step????? 1, time= 1.00000E-05, DT=? 1.000E-05 ???????????? Solving for fluid ????????? 1? Helmh3 fluid unconverged!??? 201 NaN????????? NaN?? 1.0000E-08 ?ERROR: E-solver does not exist?????????? 0 ?Stop in ESOLVER ?ERROR: E-solver does not exist?????????? 0 ?Stop in ESOLVER ?ERROR: E-solver does not exist?????????? 0 ?Stop in ESOLVER ?ERROR: E-solver does not exist?????????? 0 ?Stop in ESOLVER ?ERROR: E-solver does not exist?????????? 0 ?Stop in ESOLVER ?ERROR: E-solver does not exist?????????? 0 ?Stop in ESOLVER ?ERROR: E-solver does not exist?????????? 0 ?Stop in ESOLVER ?ERROR: E-solver does not exist?????????? 0 ?Stop in ESOLVER an error occured: dying ... total elapsed time???????????? :?? 1.44827E-01 sec total solver time w/o IO?????? :?? 0.00000E+00 sec time/timestep????????????????? :?? 0.00000E+00 sec avg throughput per timestep??? :?? 0.00000E+00 gridpts/CPUs total max memory usage???????? :?? 1.89690E-01 GB ------------------------------------------------------- Primary job? terminated normally, but 1 process returned a non-zero exit code.. Per user-direction, the job has been aborted. ------------------------------------------------------- -------------------------------------------------------------------------- mpiexec detected that one or more processes exited with non-zero status, thus causing the job to be terminated. The first process to do so was: ? Process name: [[25844,1],0] ? Exit code:??? 1 -------------------------------------------------------------------------- _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Fri Jan 12 06:42:33 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Fri, 12 Jan 2018 12:42:33 +0000 Subject: [Nek5000-users] Re post-processing using f0000 files Message-ID: Hi Ketan, Yes there are 288 elements indeed. As far as I can see it outpost the rms and TKE in the code. May I know where it output the mean velocity? lt = lx1*ly1*lz1*nelt ifld = 1 ccc avg all the avgp10.f0* files call auto_averager(fname1) ccc copy uk=vx**2, vk=vy**2, wk=vz**2 call col3(uk,vx,vx,lt) call col3(vk,vy,vy,lt) call col3(wk,vz,vz,lt) ccc avg all the rmsp10.f0* files call auto_averager(fname2) ccc u'^2,v'^2,w'^2 = rms - avg**2 call sub2(vx,uk,lt) call sub2(vy,vk,lt) call sub2(vz,wk,lt) ccc Average in the z direction call my_z_avg(uk,vx,gs_avg_hndl,nelxy,ifld) call my_z_avg(vk,vy,gs_avg_hndl,nelxy,ifld) call my_z_avg(wk,vz,gs_avg_hndl,nelxy,ifld) ccc TKE = 0.5*(u'^2+v'^2+w'^2) call add4(pk,uk,vk,wk,lt) call cmult(pk,0.5,lt) ccc sqrt uk,vk,wk to get urms, vrms and wrms call vsqrt(uk,lt) call vsqrt(vk,lt) call vsqrt(wk,lt) ccc output urms**2,vrms**2 and wrms**2 along with the TKE ccc TKE is in pressure field call outpost(uk,vk,wk,pk,t,' ') Kind regards, ZJ -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Fri Jan 12 08:46:57 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Fri, 12 Jan 2018 22:46:57 +0800 (CST) Subject: [Nek5000-users] A postprocessing problem and a query about using LES Message-ID: Dear experts in Nek5000 : Thank you for reading my email. I am a freshman in using Nek5000 and I am willing to simulate unsteady flow phenomenon with LES method through parallel processes. And Nek5000 is the best solver for resolving my problem and I hope to reach my goal with the outstanding SEM-CFD tools. And I have been wondering 2 questions for a certain period of time: First of all, could you please introduce an appropriate sample for me to learn how to run Nek5000 within the LES formulation? And for the 2nd problem, when I dump the final result in .nek5000 format into the PARAVIEW postprocessing software, I could only see some principle fuild variaties fields to be selected in the GUI such as Vx Vy pressure and so on, and could you please give a proper example to show me how to add another paramters like fluctuating velocity in turbulent flow calculating by LES through the list in order to give more details, to illustrate my flow problem better. Thank you all the time for your supporting me and I am waiting for your earlier reply . Best regards Haoran JU -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Fri Jan 12 13:53:59 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Fri, 12 Jan 2018 19:53:59 +0000 Subject: [Nek5000-users] A postprocessing problem and a query about using LES In-Reply-To: References: Message-ID: Haoran, below are the answers to your questions: First of all, could you please introduce an appropriate sample for me to learn how to run Nek5000 within the LES formulation? If by LES formulation you mean the built-in filter, you can look at the turbChannel example in the Github repo. It implements an explicit LES formulation that you can turn on by setting p30 to 1 in the .rea file I believe. Have a look at the README file. And for the 2nd problem, when I dump the final result in .nek5000 format into the PARAVIEW postprocessing software, I could only see some principle fuild variaties fields to be selected in the GUI such as Vx Vy pressure and so on, and could you please give a proper example to show me how to add another paramters like fluctuating velocity in turbulent flow calculating by LES through the list in order to give more details, to illustrate my flow problem better. You can call outpost2 in the usrcheck subroutine to dump fields in output file. I think the turbChannel example illustrates this capability. Note that you can also visualize the solution with Visit. Marco -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Sat Jan 13 05:02:11 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Sat, 13 Jan 2018 16:32:11 +0530 Subject: [Nek5000-users] Error using [PROBLEMTYPE] in .par file Message-ID: Greetings, I have been trying to execute the periodic hill example as described on the Nek Website. But there is a problem with the statement "equation = incompNS" in hillp.par under the [PROBLEMTYPE] category.It doesnt seem to recognise the statement. On the other hand while running the 'low Mach test' problem from the examples which has the statement "lowMachnumber = yes" in the .par file, Im able to get the solution up and running. Can somebody please tell what i'm missing? Nitish -- Nitish Kovalam Aerospace Engineering Indian Institute of Space Science and Technology -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Sat Jan 13 12:13:25 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Sat, 13 Jan 2018 12:13:25 -0600 Subject: [Nek5000-users] Periodicity with curvature Message-ID: Dear Nek Users, I am trying to get periodicity to work in the lastest version of Nek. I've made an extremely simple mesh within prenek (prex) in polar coordinates and cannot seem to run this case. When I run genmap, I get the error below. Did I do something wrong in setting up this mesh? >> genmap reading a.rea Input mesh tolerance (default 0.2): NOTE: smaller is better, but generous is more forgiving for bad meshes. 0.01 reading mesh data ... start locglob_lexico: 4 2 8 1.0000000000000000E-002 locglob: 1 1 8 locglob: 2 5 8 locglob: 1 6 8 locglob: 2 6 8 done locglob_lexico: 6 6 8 2 start periodic vtx: 2 6 1 4 4 Matrix: x0 1 x0 1.0000E+00 1.0000E+00 5.4347-323 4.9407-324 2 x0 -3.5355E-01 3.5355E-01 6.9423-310 6.9423-310 3 x0 3.5355E-01 -3.5355E-01 6.9529-310 6.9529-310 4 x0 6.9423-310 6.9529-310 2.3477-313 3.1632-317 2 4 4 Matrix: x1 1 x1 1.0000E+00 1.0000E+00 6.3240-322 0.0000E+00 2 x1 -3.5355E-01 3.5355E-01 0.0000E+00 6.9423-310 3 x1 -3.5355E-01 3.5355E-01 6.9423-310 6.9529-310 4 x1 6.9423-310 6.9423-310 6.9423-310 6.9529-310 1 4 4 Matrix: z0 1 z0 1.0000E+00 1.0000E+00 5.4347-323 4.9407-324 2 z0 -2.1213E+00 -1.4142E+00 6.9423-310 6.9423-310 3 z0 2.1213E+00 1.4142E+00 6.9529-310 6.9529-310 4 z0 6.9423-310 6.9529-310 2.3477-313 3.1632-317 2 4 4 Matrix: z1 1 z1 1.0000E+00 1.0000E+00 6.3240-322 0.0000E+00 2 z1 1.4142E+00 2.1213E+00 0.0000E+00 6.9423-310 3 z1 1.4142E+00 2.1213E+00 6.9423-310 6.9529-310 4 z1 6.9423-310 6.9423-310 6.9423-310 6.9529-310 1 3 0 1.00000000E-03 2.12132000E+00 abort: FACE MATCH FAIL 2 4 3 2.12132000E-03 1.00000031E+00 abort: FACE MATCH FAIL 0 quit The mesh within my .rea file is as follows: 20.0000 20.0000 -8.00000 -4.00000 XFAC,YFAC,XZERO,YZERO **MESH DATA** 1st line is X of corner 1,2,3,4. 2nd line is Y. 2 2 2 NEL,NDIM,NELV ELEMENT 1 [ 1A] GROUP 0 -2.121320 -1.414213 -0.8742276E-07 -0.1311341E-06 2.121320 1.414213 2.000000 3.000000 ELEMENT 2 [ 1B] GROUP 0 -0.1311341E-06 -0.8742276E-07 1.414213 2.121320 3.000000 2.000000 1.414213 2.121320 ***** CURVED SIDE DATA ***** 4 Curved sides follow IEDGE,IEL,CURVE(I),I=1,5, CCURVE 2 1 -2.00000 0.00000 0.00000 0.00000 0.00000 C 4 1 3.00000 0.00000 0.00000 0.00000 0.00000 C 2 2 -2.00000 0.00000 0.00000 0.00000 0.00000 C 4 2 3.00000 0.00000 0.00000 0.00000 0.00000 C ***** BOUNDARY CONDITIONS ***** ***** FLUID BOUNDARY CONDITIONS ***** P 1 1 2.00000 3.00000 0.00000 0.00000 0.00000 W 1 2 0.00000 0.00000 0.00000 0.00000 0.00000 E 1 3 2.00000 1.00000 0.00000 0.00000 0.00000 W 1 4 0.00000 0.00000 0.00000 0.00000 0.00000 E 2 1 1.00000 3.00000 0.00000 0.00000 0.00000 W 2 2 0.00000 0.00000 0.00000 0.00000 0.00000 P 2 3 1.00000 1.00000 0.00000 0.00000 0.00000 W 2 4 0.00000 0.00000 0.00000 0.00000 0.00000 ***** NO THERMAL BOUNDARY CONDITIONS ***** [image: Inline image 2] -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image.png Type: image/png Size: 7486 bytes Desc: not available URL: From nek5000-users at lists.mcs.anl.gov Sat Jan 13 12:30:45 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Sat, 13 Jan 2018 19:30:45 +0100 Subject: [Nek5000-users] Error using [PROBLEMTYPE] in .par file In-Reply-To: References: Message-ID: Did you download the latest version v17.0 available on our webpage? On 13 Jan 2018, at 19:19, "nek5000-users at lists.mcs.anl.gov " > wrote: Greetings, I have been trying to execute the periodic hill example as described on the Nek Website. But there is a problem with the statement? "equation = incompNS" in hillp.par under the [PROBLEMTYPE] category.It doesnt seem to recognise the statement. On the other hand while running the 'low Mach test' problem from the examples which has the statement "lowMachnumber = yes" in the .par file, Im able to get the solution up and running. Can somebody please tell what i'm missing?? Nitish -- Nitish Kovalam Aerospace Engineering Indian Institute of Space Science and Technology _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Sat Jan 13 12:32:05 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Sat, 13 Jan 2018 19:32:05 +0100 Subject: [Nek5000-users] Periodicity with curvature In-Reply-To: References: Message-ID: You need to have at least three elements in the periodic direction.? On 13 Jan 2018, at 19:19, "nek5000-users at lists.mcs.anl.gov " > wrote: Dear Nek Users, I am trying to get periodicity to work in the lastest version of Nek. I've made an extremely simple mesh within prenek (prex) in polar coordinates and cannot seem to run this case. When I run genmap, I get the error below. Did I do something wrong in setting up this mesh? >> genmap ?reading a.rea Input mesh tolerance (default 0.2): NOTE: smaller is better, but generous is more forgiving for bad meshes. 0.01 ?reading mesh data ... ?start locglob_lexico:? ? ? ? ? ?4? ? ? ? ? ?2? ? ? ? ? ?8? ?1.0000000000000000E-002 ?locglob:? ? ? ? ? ?1? ? ? ? ? ?1? ? ? ? ? ?8 ?locglob:? ? ? ? ? ?2? ? ? ? ? ?5? ? ? ? ? ?8 ?locglob:? ? ? ? ? ?1? ? ? ? ? ?6? ? ? ? ? ?8 ?locglob:? ? ? ? ? ?2? ? ? ? ? ?6? ? ? ? ? ?8 ?done locglob_lexico:? ? ? ? ? ?6? ? ? ? ? ?6? ? ? ? ? ?8? ? ? ? ? ?2 ?start periodic vtx:? ? ? ? ? ?2? ? ? ? ? ?6 ? ? ?1? ? ?4? ? ?4? Matrix:? ? x0 ? 1? ?x0? ? 1.0000E+00? 1.0000E+00? 5.4347-323? 4.9407-324 ? 2? ?x0? ?-3.5355E-01? 3.5355E-01? 6.9423-310? 6.9423-310 ? 3? ?x0? ? 3.5355E-01 -3.5355E-01? 6.9529-310? 6.9529-310 ? 4? ?x0? ? 6.9423-310? 6.9529-310? 2.3477-313? 3.1632-317 ? ? ?2? ? ?4? ? ?4? Matrix:? ? x1 ? 1? ?x1? ? 1.0000E+00? 1.0000E+00? 6.3240-322? 0.0000E+00 ? 2? ?x1? ?-3.5355E-01? 3.5355E-01? 0.0000E+00? 6.9423-310 ? 3? ?x1? ?-3.5355E-01? 3.5355E-01? 6.9423-310? 6.9529-310 ? 4? ?x1? ? 6.9423-310? 6.9423-310? 6.9423-310? 6.9529-310 ? ? ?1? ? ?4? ? ?4? Matrix:? ? z0 ? 1? ?z0? ? 1.0000E+00? 1.0000E+00? 5.4347-323? 4.9407-324 ? 2? ?z0? ?-2.1213E+00 -1.4142E+00? 6.9423-310? 6.9423-310 ? 3? ?z0? ? 2.1213E+00? 1.4142E+00? 6.9529-310? 6.9529-310 ? 4? ?z0? ? 6.9423-310? 6.9529-310? 2.3477-313? 3.1632-317 ? ? ?2? ? ?4? ? ?4? Matrix:? ? z1 ? 1? ?z1? ? 1.0000E+00? 1.0000E+00? 6.3240-322? 0.0000E+00 ? 2? ?z1? ? 1.4142E+00? 2.1213E+00? 0.0000E+00? 6.9423-310 ? 3? ?z1? ? 1.4142E+00? 2.1213E+00? 6.9423-310? 6.9529-310 ? 4? ?z1? ? 6.9423-310? 6.9423-310? 6.9423-310? 6.9529-310 ? ? ? ? ? ?1 3? 0? 1.00000000E-03? 2.12132000E+00 abort: FACE MATCH FAIL ? ? ? ? ? ?2 4? 3? 2.12132000E-03? 1.00000031E+00 abort: FACE MATCH FAIL ? ? ? ? ? ?0? quit The mesh within my .rea file is as follows: ? ?20.0000? ? ? ?20.0000? ? ? -8.00000? ? ? -4.00000? ? ?XFAC,YFAC,XZERO,YZERO ?**MESH DATA** 1st line is X of corner 1,2,3,4. 2nd line is Y. ? ? ? ? ?2? ? ? ? ?2? ? ? ? ?2 NEL,NDIM,NELV ? ? ? ELEMENT? ? ? ? ? 1 [? ? 1A]? ? GROUP? ? ?0 ? -2.121320? ? ? -1.414213? ? ?-0.8742276E-07 -0.1311341E-06 ? ?2.121320? ? ? ?1.414213? ? ? ?2.000000? ? ? ?3.000000 ? ? ? ELEMENT? ? ? ? ? 2 [? ? 1B]? ? GROUP? ? ?0 ?-0.1311341E-06 -0.8742276E-07? ?1.414213? ? ? ?2.121320 ? ?3.000000? ? ? ?2.000000? ? ? ?1.414213? ? ? ?2.121320 ? ***** CURVED SIDE DATA ***** ? ? ? ? ?4 Curved sides follow IEDGE,IEL,CURVE(I),I=1,5, CCURVE ? 2? 1? -2.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ?C ? 4? 1? ?3.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ?C ? 2? 2? -2.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ?C ? 4? 2? ?3.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ?C ? ***** BOUNDARY CONDITIONS ***** ? ***** FLUID? ?BOUNDARY CONDITIONS ***** ?P? ? 1? 1? ?2.00000? ? ? ?3.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000 ?W? ? 1? 2? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000 ?E? ? 1? 3? ?2.00000? ? ? ?1.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000 ?W? ? 1? 4? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000 ?E? ? 2? 1? ?1.00000? ? ? ?3.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000 ?W? ? 2? 2? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000 ?P? ? 2? 3? ?1.00000? ? ? ?1.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000 ?W? ? 2? 4? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000 ? ***** NO THERMAL BOUNDARY CONDITIONS ***** _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Sat Jan 13 12:41:57 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Sat, 13 Jan 2018 12:41:57 -0600 Subject: [Nek5000-users] Periodicity with curvature In-Reply-To: References: Message-ID: Thanks for the quick response. I made some global refinements but it seems I'm still getting the same error with genmap. Attached is the new .rea file with 4 elements in the periodic direction. On Sat, Jan 13, 2018 at 12:32 PM, wrote: > You need to have at least three elements in the periodic direction. > > On 13 Jan 2018, at 19:19, "nek5000-users at lists.mcs.anl.gov" < > nek5000-users at lists.mcs.anl.gov> wrote: > > Dear Nek Users, > > I am trying to get periodicity to work in the lastest version of Nek. I've > made an extremely simple mesh within prenek (prex) in polar coordinates and > cannot seem to run this case. When I run genmap, I get the error below. Did > I do something wrong in setting up this mesh? > > > > >> genmap > reading a.rea > Input mesh tolerance (default 0.2): > NOTE: smaller is better, but generous is more forgiving for bad meshes. > 0.01 > reading mesh data ... > start locglob_lexico: 4 2 8 > 1.0000000000000000E-002 > locglob: 1 1 8 > locglob: 2 5 8 > locglob: 1 6 8 > locglob: 2 6 8 > done locglob_lexico: 6 6 8 2 > start periodic vtx: 2 6 > 1 4 4 Matrix: x0 > 1 x0 1.0000E+00 1.0000E+00 5.4347-323 4.9407-324 > 2 x0 -3.5355E-01 3.5355E-01 6.9423-310 6.9423-310 > 3 x0 3.5355E-01 -3.5355E-01 6.9529-310 6.9529-310 > 4 x0 6.9423-310 6.9529-310 2.3477-313 3.1632-317 > 2 4 4 Matrix: x1 > 1 x1 1.0000E+00 1.0000E+00 6.3240-322 0.0000E+00 > 2 x1 -3.5355E-01 3.5355E-01 0.0000E+00 6.9423-310 > 3 x1 -3.5355E-01 3.5355E-01 6.9423-310 6.9529-310 > 4 x1 6.9423-310 6.9423-310 6.9423-310 6.9529-310 > 1 4 4 Matrix: z0 > 1 z0 1.0000E+00 1.0000E+00 5.4347-323 4.9407-324 > 2 z0 -2.1213E+00 -1.4142E+00 6.9423-310 6.9423-310 > 3 z0 2.1213E+00 1.4142E+00 6.9529-310 6.9529-310 > 4 z0 6.9423-310 6.9529-310 2.3477-313 3.1632-317 > 2 4 4 Matrix: z1 > 1 z1 1.0000E+00 1.0000E+00 6.3240-322 0.0000E+00 > 2 z1 1.4142E+00 2.1213E+00 0.0000E+00 6.9423-310 > 3 z1 1.4142E+00 2.1213E+00 6.9423-310 6.9529-310 > 4 z1 6.9423-310 6.9423-310 6.9423-310 6.9529-310 > 1 3 0 1.00000000E-03 2.12132000E+00 abort: FACE MATCH FAIL > 2 4 3 2.12132000E-03 1.00000031E+00 abort: FACE MATCH FAIL > > 0 quit > > > > > > The mesh within my .rea file is as follows: > 20.0000 20.0000 -8.00000 -4.00000 > XFAC,YFAC,XZERO,YZERO > **MESH DATA** 1st line is X of corner 1,2,3,4. 2nd line is Y. > 2 2 2 NEL,NDIM,NELV > ELEMENT 1 [ 1A] GROUP 0 > -2.121320 -1.414213 -0.8742276E-07 -0.1311341E-06 > 2.121320 1.414213 2.000000 3.000000 > ELEMENT 2 [ 1B] GROUP 0 > -0.1311341E-06 -0.8742276E-07 1.414213 2.121320 > 3.000000 2.000000 1.414213 2.121320 > ***** CURVED SIDE DATA ***** > 4 Curved sides follow IEDGE,IEL,CURVE(I),I=1,5, CCURVE > 2 1 -2.00000 0.00000 0.00000 0.00000 0.00000 > C > 4 1 3.00000 0.00000 0.00000 0.00000 0.00000 > C > 2 2 -2.00000 0.00000 0.00000 0.00000 0.00000 > C > 4 2 3.00000 0.00000 0.00000 0.00000 0.00000 > C > ***** BOUNDARY CONDITIONS ***** > ***** FLUID BOUNDARY CONDITIONS ***** > P 1 1 2.00000 3.00000 0.00000 0.00000 > 0.00000 > W 1 2 0.00000 0.00000 0.00000 0.00000 > 0.00000 > E 1 3 2.00000 1.00000 0.00000 0.00000 > 0.00000 > W 1 4 0.00000 0.00000 0.00000 0.00000 > 0.00000 > E 2 1 1.00000 3.00000 0.00000 0.00000 > 0.00000 > W 2 2 0.00000 0.00000 0.00000 0.00000 > 0.00000 > P 2 3 1.00000 1.00000 0.00000 0.00000 > 0.00000 > W 2 4 0.00000 0.00000 0.00000 0.00000 > 0.00000 > ***** NO THERMAL BOUNDARY CONDITIONS ***** > > > > _______________________________________________ > > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > > > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: a.rea Type: application/octet-stream Size: 32644 bytes Desc: not available URL: From nek5000-users at lists.mcs.anl.gov Sat Jan 13 12:49:18 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Sat, 13 Jan 2018 19:49:18 +0100 Subject: [Nek5000-users] Periodicity with curvature In-Reply-To: References: Message-ID: can you try again with at least 3 elements in other direction. On 13 Jan 2018, at 19:42, "nek5000-users at lists.mcs.anl.gov " > wrote: Thanks for the quick response. I made some global refinements but it seems I'm still getting the same error with genmap. Attached is the new .rea file with 4 elements in the periodic direction. On Sat, Jan 13, 2018 at 12:32 PM, > wrote: You need to have at least three elements in the periodic direction.? On 13 Jan 2018, at 19:19, "nek5000-users at lists.mcs.anl.gov " > wrote: Dear Nek Users, I am trying to get periodicity to work in the lastest version of Nek. I've made an extremely simple mesh within prenek (prex) in polar coordinates and cannot seem to run this case. When I run genmap, I get the error below. Did I do something wrong in setting up this mesh? >> genmap ?reading a.rea Input mesh tolerance (default 0.2): NOTE: smaller is better, but generous is more forgiving for bad meshes. 0.01 ?reading mesh data ... ?start locglob_lexico:? ? ? ? ? ?4? ? ? ? ? ?2? ? ? ? ? ?8? ?1.0000000000000000E-002 ?locglob:? ? ? ? ? ?1? ? ? ? ? ?1? ? ? ? ? ?8 ?locglob:? ? ? ? ? ?2? ? ? ? ? ?5? ? ? ? ? ?8 ?locglob:? ? ? ? ? ?1? ? ? ? ? ?6? ? ? ? ? ?8 ?locglob:? ? ? ? ? ?2? ? ? ? ? ?6? ? ? ? ? ?8 ?done locglob_lexico:? ? ? ? ? ?6? ? ? ? ? ?6? ? ? ? ? ?8? ? ? ? ? ?2 ?start periodic vtx:? ? ? ? ? ?2? ? ? ? ? ?6 ? ? ?1? ? ?4? ? ?4? Matrix:? ? x0 ? 1? ?x0? ? 1.0000E+00? 1.0000E+00? 5.4347-323? 4.9407-324 ? 2? ?x0? ?-3.5355E-01? 3.5355E-01? 6.9423-310? 6.9423-310 ? 3? ?x0? ? 3.5355E-01 -3.5355E-01? 6.9529-310? 6.9529-310 ? 4? ?x0? ? 6.9423-310? 6.9529-310? 2.3477-313? 3.1632-317 ? ? ?2? ? ?4? ? ?4? Matrix:? ? x1 ? 1? ?x1? ? 1.0000E+00? 1.0000E+00? 6.3240-322? 0.0000E+00 ? 2? ?x1? ?-3.5355E-01? 3.5355E-01? 0.0000E+00? 6.9423-310 ? 3? ?x1? ?-3.5355E-01? 3.5355E-01? 6.9423-310? 6.9529-310 ? 4? ?x1? ? 6.9423-310? 6.9423-310? 6.9423-310? 6.9529-310 ? ? ?1? ? ?4? ? ?4? Matrix:? ? z0 ? 1? ?z0? ? 1.0000E+00? 1.0000E+00? 5.4347-323? 4.9407-324 ? 2? ?z0? ?-2.1213E+00 -1.4142E+00? 6.9423-310? 6.9423-310 ? 3? ?z0? ? 2.1213E+00? 1.4142E+00? 6.9529-310? 6.9529-310 ? 4? ?z0? ? 6.9423-310? 6.9529-310? 2.3477-313? 3.1632-317 ? ? ?2? ? ?4? ? ?4? Matrix:? ? z1 ? 1? ?z1? ? 1.0000E+00? 1.0000E+00? 6.3240-322? 0.0000E+00 ? 2? ?z1? ? 1.4142E+00? 2.1213E+00? 0.0000E+00? 6.9423-310 ? 3? ?z1? ? 1.4142E+00? 2.1213E+00? 6.9423-310? 6.9529-310 ? 4? ?z1? ? 6.9423-310? 6.9423-310? 6.9423-310? 6.9529-310 ? ? ? ? ? ?1 3? 0? 1.00000000E-03? 2.12132000E+00 abort: FACE MATCH FAIL ? ? ? ? ? ?2 4? 3? 2.12132000E-03? 1.00000031E+00 abort: FACE MATCH FAIL ? ? ? ? ? ?0? quit The mesh within my .rea file is as follows: ? ?20.0000? ? ? ?20.0000? ? ? -8.00000? ? ? -4.00000? ? ?XFAC,YFAC,XZERO,YZERO ?**MESH DATA** 1st line is X of corner 1,2,3,4. 2nd line is Y. ? ? ? ? ?2? ? ? ? ?2? ? ? ? ?2 NEL,NDIM,NELV ? ? ? ELEMENT? ? ? ? ? 1 [? ? 1A]? ? GROUP? ? ?0 ? -2.121320? ? ? -1.414213? ? ?-0.8742276E-07 -0.1311341E-06 ? ?2.121320? ? ? ?1.414213? ? ? ?2.000000? ? ? ?3.000000 ? ? ? ELEMENT? ? ? ? ? 2 [? ? 1B]? ? GROUP? ? ?0 ?-0.1311341E-06 -0.8742276E-07? ?1.414213? ? ? ?2.121320 ? ?3.000000? ? ? ?2.000000? ? ? ?1.414213? ? ? ?2.121320 ? ***** CURVED SIDE DATA ***** ? ? ? ? ?4 Curved sides follow IEDGE,IEL,CURVE(I),I=1,5, CCURVE ? 2? 1? -2.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ?C ? 4? 1? ?3.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ?C ? 2? 2? -2.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ?C ? 4? 2? ?3.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ?C ? ***** BOUNDARY CONDITIONS ***** ? ***** FLUID? ?BOUNDARY CONDITIONS ***** ?P? ? 1? 1? ?2.00000? ? ? ?3.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000 ?W? ? 1? 2? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000 ?E? ? 1? 3? ?2.00000? ? ? ?1.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000 ?W? ? 1? 4? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000 ?E? ? 2? 1? ?1.00000? ? ? ?3.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000 ?W? ? 2? 2? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000 ?P? ? 2? 3? ?1.00000? ? ? ?1.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000 ?W? ? 2? 4? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000 ? ***** NO THERMAL BOUNDARY CONDITIONS ***** _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Sat Jan 13 13:16:35 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Sun, 14 Jan 2018 00:46:35 +0530 Subject: [Nek5000-users] Error using [PROBLEMTYPE] in .par file Message-ID: Sir, Yes. Im using the latest version of Nek. The problem still persists. Nitish -- Nitish Kovalam Aerospace Engineering Indian Institute of Space Science and Technology -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Sat Jan 13 13:22:36 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Sat, 13 Jan 2018 20:22:36 +0100 Subject: [Nek5000-users] Error using [PROBLEMTYPE] in .par file In-Reply-To: References: Message-ID: You are using an older version of Nek5000 if you'll find lowMachnumber = yes in short_tests/lowMach_test/lowMach_test.par My short_tests/lowMach_test/lowMach_test.par shows [PROBLEMTYPE] equation = lowMachNS -----Original message----- > From:nek5000-users at lists.mcs.anl.gov > Sent: Saturday 13th January 2018 19:31 > To: nek5000-users at lists.mcs.anl.gov > Subject: Re: [Nek5000-users] Error using [PROBLEMTYPE] in .par file > > Did you download the latest version v17.0 available on our webpage? > > On 13 Jan 2018, at 19:19, "nek5000-users at lists.mcs.anl.gov " > wrote: > > Greetings, > > I have been trying to execute the periodic hill example as described on the Nek Website. But there is a problem with the statement? > "equation = incompNS" in hillp.par under the [PROBLEMTYPE] category.It doesnt seem to recognise the statement. On the other hand while running the 'low Mach test' problem from the examples which has the statement "lowMachnumber = yes" in the .par file, Im able to get the solution up and running. Can somebody please tell what i'm missing?? > > Nitish
> -- > Nitish Kovalam > Aerospace Engineering > Indian Institute of Space Science and Technology > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users From nek5000-users at lists.mcs.anl.gov Sat Jan 13 13:00:48 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Sat, 13 Jan 2018 13:00:48 -0600 Subject: [Nek5000-users] Periodicity with curvature In-Reply-To: References: Message-ID: My apologies, can you clarify what you mean? I made global refinements one more time, and re-assigned the periodic BCs within prex. For this 2D case (attached), I have linked the 8 element sides with the right 8 sides. All other sides are walls. Thank you, Jon On Sat, Jan 13, 2018 at 12:49 PM, wrote: > can you try again with at least 3 elements in other direction. > > On 13 Jan 2018, at 19:42, "nek5000-users at lists.mcs.anl.gov" < > nek5000-users at lists.mcs.anl.gov> wrote: > > Thanks for the quick response. I made some global refinements but it seems > I'm still getting the same error with genmap. > > Attached is the new .rea file with 4 elements in the periodic direction. > > > On Sat, Jan 13, 2018 at 12:32 PM, wrote: > >> You need to have at least three elements in the periodic direction. >> >> On 13 Jan 2018, at 19:19, "nek5000-users at lists.mcs.anl.gov" < >> nek5000-users at lists.mcs.anl.gov> wrote: >> >> Dear Nek Users, >> >> I am trying to get periodicity to work in the lastest version of Nek. >> I've made an extremely simple mesh within prenek (prex) in polar >> coordinates and cannot seem to run this case. When I run genmap, I get the >> error below. Did I do something wrong in setting up this mesh? >> >> >> >> >> genmap >> reading a.rea >> Input mesh tolerance (default 0.2): >> NOTE: smaller is better, but generous is more forgiving for bad meshes. >> 0.01 >> reading mesh data ... >> start locglob_lexico: 4 2 8 >> 1.0000000000000000E-002 >> locglob: 1 1 8 >> locglob: 2 5 8 >> locglob: 1 6 8 >> locglob: 2 6 8 >> done locglob_lexico: 6 6 8 2 >> start periodic vtx: 2 6 >> 1 4 4 Matrix: x0 >> 1 x0 1.0000E+00 1.0000E+00 5.4347-323 4.9407-324 >> 2 x0 -3.5355E-01 3.5355E-01 6.9423-310 6.9423-310 >> 3 x0 3.5355E-01 -3.5355E-01 6.9529-310 6.9529-310 >> 4 x0 6.9423-310 6.9529-310 2.3477-313 3.1632-317 >> 2 4 4 Matrix: x1 >> 1 x1 1.0000E+00 1.0000E+00 6.3240-322 0.0000E+00 >> 2 x1 -3.5355E-01 3.5355E-01 0.0000E+00 6.9423-310 >> 3 x1 -3.5355E-01 3.5355E-01 6.9423-310 6.9529-310 >> 4 x1 6.9423-310 6.9423-310 6.9423-310 6.9529-310 >> 1 4 4 Matrix: z0 >> 1 z0 1.0000E+00 1.0000E+00 5.4347-323 4.9407-324 >> 2 z0 -2.1213E+00 -1.4142E+00 6.9423-310 6.9423-310 >> 3 z0 2.1213E+00 1.4142E+00 6.9529-310 6.9529-310 >> 4 z0 6.9423-310 6.9529-310 2.3477-313 3.1632-317 >> 2 4 4 Matrix: z1 >> 1 z1 1.0000E+00 1.0000E+00 6.3240-322 0.0000E+00 >> 2 z1 1.4142E+00 2.1213E+00 0.0000E+00 6.9423-310 >> 3 z1 1.4142E+00 2.1213E+00 6.9423-310 6.9529-310 >> 4 z1 6.9423-310 6.9423-310 6.9423-310 6.9529-310 >> 1 3 0 1.00000000E-03 2.12132000E+00 abort: FACE MATCH FAIL >> 2 4 3 2.12132000E-03 1.00000031E+00 abort: FACE MATCH FAIL >> >> 0 quit >> >> >> >> >> >> The mesh within my .rea file is as follows: >> 20.0000 20.0000 -8.00000 -4.00000 >> XFAC,YFAC,XZERO,YZERO >> **MESH DATA** 1st line is X of corner 1,2,3,4. 2nd line is Y. >> 2 2 2 NEL,NDIM,NELV >> ELEMENT 1 [ 1A] GROUP 0 >> -2.121320 -1.414213 -0.8742276E-07 -0.1311341E-06 >> 2.121320 1.414213 2.000000 3.000000 >> ELEMENT 2 [ 1B] GROUP 0 >> -0.1311341E-06 -0.8742276E-07 1.414213 2.121320 >> 3.000000 2.000000 1.414213 2.121320 >> ***** CURVED SIDE DATA ***** >> 4 Curved sides follow IEDGE,IEL,CURVE(I),I=1,5, CCURVE >> 2 1 -2.00000 0.00000 0.00000 0.00000 0.00000 >> C >> 4 1 3.00000 0.00000 0.00000 0.00000 0.00000 >> C >> 2 2 -2.00000 0.00000 0.00000 0.00000 0.00000 >> C >> 4 2 3.00000 0.00000 0.00000 0.00000 0.00000 >> C >> ***** BOUNDARY CONDITIONS ***** >> ***** FLUID BOUNDARY CONDITIONS ***** >> P 1 1 2.00000 3.00000 0.00000 0.00000 >> 0.00000 >> W 1 2 0.00000 0.00000 0.00000 0.00000 >> 0.00000 >> E 1 3 2.00000 1.00000 0.00000 0.00000 >> 0.00000 >> W 1 4 0.00000 0.00000 0.00000 0.00000 >> 0.00000 >> E 2 1 1.00000 3.00000 0.00000 0.00000 >> 0.00000 >> W 2 2 0.00000 0.00000 0.00000 0.00000 >> 0.00000 >> P 2 3 1.00000 1.00000 0.00000 0.00000 >> 0.00000 >> W 2 4 0.00000 0.00000 0.00000 0.00000 >> 0.00000 >> ***** NO THERMAL BOUNDARY CONDITIONS ***** >> >> >> >> _______________________________________________ >> >> Nek5000-users mailing list >> Nek5000-users at lists.mcs.anl.gov >> https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users >> >> >> _______________________________________________ >> Nek5000-users mailing list >> Nek5000-users at lists.mcs.anl.gov >> https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users >> >> >> > _______________________________________________ > > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > > > > > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: basic.rea Type: application/octet-stream Size: 110500 bytes Desc: not available URL: From nek5000-users at lists.mcs.anl.gov Sat Jan 13 14:28:30 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Sat, 13 Jan 2018 20:28:30 +0000 Subject: [Nek5000-users] Periodicity with curvature In-Reply-To: References: , Message-ID: Hi Jon, It's been awhile since I've run the cyclic BCs that you're trying to use. (Here: cyclic = periodic + turning through an angle.) I can't recall the full workflow at the moment (and am not in a position to check), but I think you'll have better luck if you build a straight mesh, run genmap, and then morph the geometry into the desired curved shape in usrdat2(). The reason for doing so is that you'll then be guaranteed to have the correct mesh connectivity. hth, Paul ________________________________ From: Nek5000-users on behalf of nek5000-users at lists.mcs.anl.gov Sent: Saturday, January 13, 2018 1:00:48 PM To: nek5000-users at lists.mcs.anl.gov Subject: Re: [Nek5000-users] Periodicity with curvature My apologies, can you clarify what you mean? I made global refinements one more time, and re-assigned the periodic BCs within prex. For this 2D case (attached), I have linked the 8 element sides with the right 8 sides. All other sides are walls. Thank you, Jon On Sat, Jan 13, 2018 at 12:49 PM, > wrote: can you try again with at least 3 elements in other direction. On 13 Jan 2018, at 19:42, "nek5000-users at lists.mcs.anl.gov" > wrote: Thanks for the quick response. I made some global refinements but it seems I'm still getting the same error with genmap. Attached is the new .rea file with 4 elements in the periodic direction. On Sat, Jan 13, 2018 at 12:32 PM, > wrote: You need to have at least three elements in the periodic direction. On 13 Jan 2018, at 19:19, "nek5000-users at lists.mcs.anl.gov" > wrote: Dear Nek Users, I am trying to get periodicity to work in the lastest version of Nek. I've made an extremely simple mesh within prenek (prex) in polar coordinates and cannot seem to run this case. When I run genmap, I get the error below. Did I do something wrong in setting up this mesh? >> genmap reading a.rea Input mesh tolerance (default 0.2): NOTE: smaller is better, but generous is more forgiving for bad meshes. 0.01 reading mesh data ... start locglob_lexico: 4 2 8 1.0000000000000000E-002 locglob: 1 1 8 locglob: 2 5 8 locglob: 1 6 8 locglob: 2 6 8 done locglob_lexico: 6 6 8 2 start periodic vtx: 2 6 1 4 4 Matrix: x0 1 x0 1.0000E+00 1.0000E+00 5.4347-323 4.9407-324 2 x0 -3.5355E-01 3.5355E-01 6.9423-310 6.9423-310 3 x0 3.5355E-01 -3.5355E-01 6.9529-310 6.9529-310 4 x0 6.9423-310 6.9529-310 2.3477-313 3.1632-317 2 4 4 Matrix: x1 1 x1 1.0000E+00 1.0000E+00 6.3240-322 0.0000E+00 2 x1 -3.5355E-01 3.5355E-01 0.0000E+00 6.9423-310 3 x1 -3.5355E-01 3.5355E-01 6.9423-310 6.9529-310 4 x1 6.9423-310 6.9423-310 6.9423-310 6.9529-310 1 4 4 Matrix: z0 1 z0 1.0000E+00 1.0000E+00 5.4347-323 4.9407-324 2 z0 -2.1213E+00 -1.4142E+00 6.9423-310 6.9423-310 3 z0 2.1213E+00 1.4142E+00 6.9529-310 6.9529-310 4 z0 6.9423-310 6.9529-310 2.3477-313 3.1632-317 2 4 4 Matrix: z1 1 z1 1.0000E+00 1.0000E+00 6.3240-322 0.0000E+00 2 z1 1.4142E+00 2.1213E+00 0.0000E+00 6.9423-310 3 z1 1.4142E+00 2.1213E+00 6.9423-310 6.9529-310 4 z1 6.9423-310 6.9423-310 6.9423-310 6.9529-310 1 3 0 1.00000000E-03 2.12132000E+00 abort: FACE MATCH FAIL 2 4 3 2.12132000E-03 1.00000031E+00 abort: FACE MATCH FAIL 0 quit The mesh within my .rea file is as follows: 20.0000 20.0000 -8.00000 -4.00000 XFAC,YFAC,XZERO,YZERO **MESH DATA** 1st line is X of corner 1,2,3,4. 2nd line is Y. 2 2 2 NEL,NDIM,NELV ELEMENT 1 [ 1A] GROUP 0 -2.121320 -1.414213 -0.8742276E-07 -0.1311341E-06 2.121320 1.414213 2.000000 3.000000 ELEMENT 2 [ 1B] GROUP 0 -0.1311341E-06 -0.8742276E-07 1.414213 2.121320 3.000000 2.000000 1.414213 2.121320 ***** CURVED SIDE DATA ***** 4 Curved sides follow IEDGE,IEL,CURVE(I),I=1,5, CCURVE 2 1 -2.00000 0.00000 0.00000 0.00000 0.00000 C 4 1 3.00000 0.00000 0.00000 0.00000 0.00000 C 2 2 -2.00000 0.00000 0.00000 0.00000 0.00000 C 4 2 3.00000 0.00000 0.00000 0.00000 0.00000 C ***** BOUNDARY CONDITIONS ***** ***** FLUID BOUNDARY CONDITIONS ***** P 1 1 2.00000 3.00000 0.00000 0.00000 0.00000 W 1 2 0.00000 0.00000 0.00000 0.00000 0.00000 E 1 3 2.00000 1.00000 0.00000 0.00000 0.00000 W 1 4 0.00000 0.00000 0.00000 0.00000 0.00000 E 2 1 1.00000 3.00000 0.00000 0.00000 0.00000 W 2 2 0.00000 0.00000 0.00000 0.00000 0.00000 P 2 3 1.00000 1.00000 0.00000 0.00000 0.00000 W 2 4 0.00000 0.00000 0.00000 0.00000 0.00000 ***** NO THERMAL BOUNDARY CONDITIONS ***** _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Sat Jan 13 14:34:58 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Sat, 13 Jan 2018 14:34:58 -0600 Subject: [Nek5000-users] Periodicity with curvature In-Reply-To: References: Message-ID: Hi Paul, In the future, I will need a more complex geometry where cyclic BCs are not in-line. This simple example I presented here is simply a proof of concept for another mesh. What would be the best method do this, when the geometry isn't simple enough to use auto-periodic? Thank you, Jon On Sat, Jan 13, 2018 at 2:28 PM, wrote: > > Hi Jon, > > > It's been awhile since I've run the cyclic BCs that you're trying to use. > > (Here: cyclic = periodic + turning through an angle.) > > > I can't recall the full workflow at the moment (and am not in a position > > to check), but I think you'll have better luck if you build a straight > mesh, > > run genmap, and then morph the geometry into the desired curved > > shape in usrdat2(). > > > The reason for doing so is that you'll then be guaranteed to have > > the correct mesh connectivity. > > > hth, > > > Paul > > > ------------------------------ > *From:* Nek5000-users on behalf > of nek5000-users at lists.mcs.anl.gov > *Sent:* Saturday, January 13, 2018 1:00:48 PM > *To:* nek5000-users at lists.mcs.anl.gov > *Subject:* Re: [Nek5000-users] Periodicity with curvature > > My apologies, can you clarify what you mean? > I made global refinements one more time, and re-assigned the periodic BCs > within prex. For this 2D case (attached), I have linked the 8 element sides > with the right 8 sides. All other sides are walls. > > Thank you, > Jon > > On Sat, Jan 13, 2018 at 12:49 PM, wrote: > > can you try again with at least 3 elements in other direction. > > On 13 Jan 2018, at 19:42, "nek5000-users at lists.mcs.anl.gov" < > nek5000-users at lists.mcs.anl.gov> wrote: > > Thanks for the quick response. I made some global refinements but it seems > I'm still getting the same error with genmap. > > Attached is the new .rea file with 4 elements in the periodic direction. > > > On Sat, Jan 13, 2018 at 12:32 PM, wrote: > > You need to have at least three elements in the periodic direction. > > On 13 Jan 2018, at 19:19, "nek5000-users at lists.mcs.anl.gov" < > nek5000-users at lists.mcs.anl.gov> wrote: > > Dear Nek Users, > > I am trying to get periodicity to work in the lastest version of Nek. I've > made an extremely simple mesh within prenek (prex) in polar coordinates and > cannot seem to run this case. When I run genmap, I get the error below. Did > I do something wrong in setting up this mesh? > > > > >> genmap > reading a.rea > Input mesh tolerance (default 0.2): > NOTE: smaller is better, but generous is more forgiving for bad meshes. > 0.01 > reading mesh data ... > start locglob_lexico: 4 2 8 > 1.0000000000000000E-002 > locglob: 1 1 8 > locglob: 2 5 8 > locglob: 1 6 8 > locglob: 2 6 8 > done locglob_lexico: 6 6 8 2 > start periodic vtx: 2 6 > 1 4 4 Matrix: x0 > 1 x0 1.0000E+00 1.0000E+00 5.4347-323 4.9407-324 > 2 x0 -3.5355E-01 3.5355E-01 6.9423-310 6.9423-310 > 3 x0 3.5355E-01 -3.5355E-01 6.9529-310 6.9529-310 > 4 x0 6.9423-310 6.9529-310 2.3477-313 3.1632-317 > 2 4 4 Matrix: x1 > 1 x1 1.0000E+00 1.0000E+00 6.3240-322 0.0000E+00 > 2 x1 -3.5355E-01 3.5355E-01 0.0000E+00 6.9423-310 > 3 x1 -3.5355E-01 3.5355E-01 6.9423-310 6.9529-310 > 4 x1 6.9423-310 6.9423-310 6.9423-310 6.9529-310 > 1 4 4 Matrix: z0 > 1 z0 1.0000E+00 1.0000E+00 5.4347-323 4.9407-324 > 2 z0 -2.1213E+00 -1.4142E+00 6.9423-310 6.9423-310 > 3 z0 2.1213E+00 1.4142E+00 6.9529-310 6.9529-310 > 4 z0 6.9423-310 6.9529-310 2.3477-313 3.1632-317 > 2 4 4 Matrix: z1 > 1 z1 1.0000E+00 1.0000E+00 6.3240-322 0.0000E+00 > 2 z1 1.4142E+00 2.1213E+00 0.0000E+00 6.9423-310 > 3 z1 1.4142E+00 2.1213E+00 6.9423-310 6.9529-310 > 4 z1 6.9423-310 6.9423-310 6.9423-310 6.9529-310 > 1 3 0 1.00000000E-03 2.12132000E+00 abort: FACE MATCH FAIL > 2 4 3 2.12132000E-03 1.00000031E+00 abort: FACE MATCH FAIL > > 0 quit > > > > > > The mesh within my .rea file is as follows: > 20.0000 20.0000 -8.00000 -4.00000 > XFAC,YFAC,XZERO,YZERO > **MESH DATA** 1st line is X of corner 1,2,3,4. 2nd line is Y. > 2 2 2 NEL,NDIM,NELV > ELEMENT 1 [ 1A] GROUP 0 > -2.121320 -1.414213 -0.8742276E-07 -0.1311341E-06 > 2.121320 1.414213 2.000000 3.000000 > ELEMENT 2 [ 1B] GROUP 0 > -0.1311341E-06 -0.8742276E-07 1.414213 2.121320 > 3.000000 2.000000 1.414213 2.121320 > ***** CURVED SIDE DATA ***** > 4 Curved sides follow IEDGE,IEL,CURVE(I),I=1,5, CCURVE > 2 1 -2.00000 0.00000 0.00000 0.00000 0.00000 > C > 4 1 3.00000 0.00000 0.00000 0.00000 0.00000 > C > 2 2 -2.00000 0.00000 0.00000 0.00000 0.00000 > C > 4 2 3.00000 0.00000 0.00000 0.00000 0.00000 > C > ***** BOUNDARY CONDITIONS ***** > ***** FLUID BOUNDARY CONDITIONS ***** > P 1 1 2.00000 3.00000 0.00000 0.00000 > 0.00000 > W 1 2 0.00000 0.00000 0.00000 0.00000 > 0.00000 > E 1 3 2.00000 1.00000 0.00000 0.00000 > 0.00000 > W 1 4 0.00000 0.00000 0.00000 0.00000 > 0.00000 > E 2 1 1.00000 3.00000 0.00000 0.00000 > 0.00000 > W 2 2 0.00000 0.00000 0.00000 0.00000 > 0.00000 > P 2 3 1.00000 1.00000 0.00000 0.00000 > 0.00000 > W 2 4 0.00000 0.00000 0.00000 0.00000 > 0.00000 > ***** NO THERMAL BOUNDARY CONDITIONS ***** > > > > _______________________________________________ > > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > > > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > > > > _______________________________________________ > > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > > > > > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > > > > > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Sat Jan 13 15:49:17 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Sat, 13 Jan 2018 22:49:17 +0100 Subject: [Nek5000-users] Periodicity with curvature In-Reply-To: References: Message-ID: Yes that?s the way to handle cyclic BCs. In addition you have to set IFCYC=true. Note the surface mesh on the two cyclic patches have to match. What do you mean by ?not ?in-line?? Cheers Stefan On 13 Jan 2018, at 21:35, "nek5000-users at lists.mcs.anl.gov " > wrote: Hi Paul, In the future, I will need a more complex geometry where cyclic BCs are not in-line. This simple example I presented here is simply a proof of concept for another mesh. What would be the best method do this, when the geometry isn't simple enough to use auto-periodic? Thank you, Jon On Sat, Jan 13, 2018 at 2:28 PM, > wrote: Hi Jon, It's been awhile since I've run the cyclic BCs that you're trying to use. (Here: ?cyclic = periodic + turning through an angle.) I can't recall the full workflow at the moment (and am not in a position to check), but I think you'll have better luck if you build a straight mesh, run genmap, and then morph the geometry into the desired curved shape in usrdat2(). The reason for doing so is that you'll then be guaranteed to have the correct mesh connectivity. hth, Paul -------------------------------- From: Nek5000-users > on behalf of nek5000-users at lists.mcs.anl.gov > Sent: Saturday, January 13, 2018 1:00:48 PM To: nek5000-users at lists.mcs.anl.gov Subject: Re: [Nek5000-users] Periodicity with curvature ?My apologies, can you clarify what you mean? I made global refinements one more time, and re-assigned the periodic BCs within prex. For this 2D case (attached), I have linked the 8 element sides with the right 8 sides. All other sides are walls. Thank you, Jon On Sat, Jan 13, 2018 at 12:49 PM, > wrote: can you try again with at least 3 elements in other direction. On 13 Jan 2018, at 19:42, "nek5000-users at lists.mcs.anl.gov " > wrote: Thanks for the quick response. I made some global refinements but it seems I'm still getting the same error with genmap. Attached is the new .rea file with 4 elements in the periodic direction. On Sat, Jan 13, 2018 at 12:32 PM, > wrote: You need to have at least three elements in the periodic direction.? On 13 Jan 2018, at 19:19, "nek5000-users at lists.mcs.anl.gov " > wrote: Dear Nek Users, I am trying to get periodicity to work in the lastest version of Nek. I've made an extremely simple mesh within prenek (prex) in polar coordinates and cannot seem to run this case. When I run genmap, I get the error below. Did I do something wrong in setting up this mesh? >> genmap ?reading a.rea Input mesh tolerance (default 0.2): NOTE: smaller is better, but generous is more forgiving for bad meshes. 0.01 ?reading mesh data ... ?start locglob_lexico:? ? ? ? ? ?4? ? ? ? ? ?2? ? ? ? ? ?8? ?1.0000000000000000E-002 ?locglob:? ? ? ? ? ?1? ? ? ? ? ?1? ? ? ? ? ?8 ?locglob:? ? ? ? ? ?2? ? ? ? ? ?5? ? ? ? ? ?8 ?locglob:? ? ? ? ? ?1? ? ? ? ? ?6? ? ? ? ? ?8 ?locglob:? ? ? ? ? ?2? ? ? ? ? ?6? ? ? ? ? ?8 ?done locglob_lexico:? ? ? ? ? ?6? ? ? ? ? ?6? ? ? ? ? ?8? ? ? ? ? ?2 ?start periodic vtx:? ? ? ? ? ?2? ? ? ? ? ?6 ? ? ?1? ? ?4? ? ?4? Matrix:? ? x0 ? 1? ?x0? ? 1.0000E+00? 1.0000E+00? 5.4347-323? 4.9407-324 ? 2? ?x0? ?-3.5355E-01? 3.5355E-01? 6.9423-310? 6.9423-310 ? 3? ?x0? ? 3.5355E-01 -3.5355E-01? 6.9529-310? 6.9529-310 ? 4? ?x0? ? 6.9423-310? 6.9529-310? 2.3477-313? 3.1632-317 ? ? ?2? ? ?4? ? ?4? Matrix:? ? x1 ? 1? ?x1? ? 1.0000E+00? 1.0000E+00? 6.3240-322? 0.0000E+00 ? 2? ?x1? ?-3.5355E-01? 3.5355E-01? 0.0000E+00? 6.9423-310 ? 3? ?x1? ?-3.5355E-01? 3.5355E-01? 6.9423-310? 6.9529-310 ? 4? ?x1? ? 6.9423-310? 6.9423-310? 6.9423-310? 6.9529-310 ? ? ?1? ? ?4? ? ?4? Matrix:? ? z0 ? 1? ?z0? ? 1.0000E+00? 1.0000E+00? 5.4347-323? 4.9407-324 ? 2? ?z0? ?-2.1213E+00 -1.4142E+00? 6.9423-310? 6.9423-310 ? 3? ?z0? ? 2.1213E+00? 1.4142E+00? 6.9529-310? 6.9529-310 ? 4? ?z0? ? 6.9423-310? 6.9529-310? 2.3477-313? 3.1632-317 ? ? ?2? ? ?4? ? ?4? Matrix:? ? z1 ? 1? ?z1? ? 1.0000E+00? 1.0000E+00? 6.3240-322? 0.0000E+00 ? 2? ?z1? ? 1.4142E+00? 2.1213E+00? 0.0000E+00? 6.9423-310 ? 3? ?z1? ? 1.4142E+00? 2.1213E+00? 6.9423-310? 6.9529-310 ? 4? ?z1? ? 6.9423-310? 6.9423-310? 6.9423-310? 6.9529-310 ? ? ? ? ? ?1 3? 0? 1.00000000E-03? 2.12132000E+00 abort: FACE MATCH FAIL ? ? ? ? ? ?2 4? 3? 2.12132000E-03? 1.00000031E+00 abort: FACE MATCH FAIL ? ? ? ? ? ?0? quit The mesh within my .rea file is as follows: ? ?20.0000? ? ? ?20.0000? ? ? -8.00000? ? ? -4.00000? ? ?XFAC,YFAC,XZERO,YZERO ?**MESH DATA** 1st line is X of corner 1,2,3,4. 2nd line is Y. ? ? ? ? ?2? ? ? ? ?2? ? ? ? ?2 NEL,NDIM,NELV ? ? ? ELEMENT? ? ? ? ? 1 [? ? 1A]? ? GROUP? ? ?0 ? -2.121320? ? ? -1.414213? ? ?-0.8742276E-07 -0.1311341E-06 ? ?2.121320? ? ? ?1.414213? ? ? ?2.000000? ? ? ?3.000000 ? ? ? ELEMENT? ? ? ? ? 2 [? ? 1B]? ? GROUP? ? ?0 ?-0.1311341E-06 -0.8742276E-07? ?1.414213? ? ? ?2.121320 ? ?3.000000? ? ? ?2.000000? ? ? ?1.414213? ? ? ?2.121320 ? ***** CURVED SIDE DATA ***** ? ? ? ? ?4 Curved sides follow IEDGE,IEL,CURVE(I),I=1,5, CCURVE ? 2? 1? -2.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ?C ? 4? 1? ?3.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ?C ? 2? 2? -2.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ?C ? 4? 2? ?3.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ?C ? ***** BOUNDARY CONDITIONS ***** ? ***** FLUID? ?BOUNDARY CONDITIONS ***** ?P? ? 1? 1? ?2.00000? ? ? ?3.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000 ?W? ? 1? 2? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000 ?E? ? 1? 3? ?2.00000? ? ? ?1.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000 ?W? ? 1? 4? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000 ?E? ? 2? 1? ?1.00000? ? ? ?3.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000 ?W? ? 2? 2? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000 ?P? ? 2? 3? ?1.00000? ? ? ?1.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000 ?W? ? 2? 4? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000? ? ? ?0.00000 ? ***** NO THERMAL BOUNDARY CONDITIONS ***** _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Sat Jan 13 17:22:48 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Sat, 13 Jan 2018 17:22:48 -0600 Subject: [Nek5000-users] Periodicity with curvature In-Reply-To: References: Message-ID: Stefan, When I say not in-line, picture an "L" shaped geometry with a cyclic patch on the upper most (north) face and the right most (east) face. Although they point different directions, it should be possible to make them cyclic. I am certain the lengths of my patches are the same size/area. I tried adding "T IFCYC" in the rea logical switch but it doesn't appear to be the problem, as I get the same error when I try to use genmap (see initial post). When I use periodic in a prenek channel mesh, I don't get this error. Only when I use periodic with patches that are not in-line. Thanks, Jon On Sat, Jan 13, 2018 at 3:49 PM, wrote: > Yes that?s the way to handle cyclic BCs. In addition you have to set > IFCYC=true. > > Note the surface mesh on the two cyclic patches have to match. What do you > mean by ?not in-line?? > > Cheers > Stefan > > On 13 Jan 2018, at 21:35, "nek5000-users at lists.mcs.anl.gov" < > nek5000-users at lists.mcs.anl.gov> wrote: > > Hi Paul, > In the future, I will need a more complex geometry where cyclic BCs are > not in-line. This simple example I presented here is simply a proof of > concept for another mesh. > What would be the best method do this, when the geometry isn't simple > enough to use auto-periodic? > > Thank you, > Jon > > On Sat, Jan 13, 2018 at 2:28 PM, wrote: > >> >> Hi Jon, >> >> >> It's been awhile since I've run the cyclic BCs that you're trying to use. >> >> (Here: cyclic = periodic + turning through an angle.) >> >> >> I can't recall the full workflow at the moment (and am not in a position >> >> to check), but I think you'll have better luck if you build a straight >> mesh, >> >> run genmap, and then morph the geometry into the desired curved >> >> shape in usrdat2(). >> >> >> The reason for doing so is that you'll then be guaranteed to have >> >> the correct mesh connectivity. >> >> >> hth, >> >> >> Paul >> >> >> ------------------------------ >> *From:* Nek5000-users on >> behalf of nek5000-users at lists.mcs.anl.gov > ov> >> *Sent:* Saturday, January 13, 2018 1:00:48 PM >> *To:* nek5000-users at lists.mcs.anl.gov >> *Subject:* Re: [Nek5000-users] Periodicity with curvature >> >> My apologies, can you clarify what you mean? >> I made global refinements one more time, and re-assigned the periodic BCs >> within prex. For this 2D case (attached), I have linked the 8 element sides >> with the right 8 sides. All other sides are walls. >> >> Thank you, >> Jon >> >> On Sat, Jan 13, 2018 at 12:49 PM, >> wrote: >> >> can you try again with at least 3 elements in other direction. >> >> On 13 Jan 2018, at 19:42, "nek5000-users at lists.mcs.anl.gov" < >> nek5000-users at lists.mcs.anl.gov> wrote: >> >> Thanks for the quick response. I made some global refinements but it >> seems I'm still getting the same error with genmap. >> >> Attached is the new .rea file with 4 elements in the periodic direction. >> >> >> On Sat, Jan 13, 2018 at 12:32 PM, >> wrote: >> >> You need to have at least three elements in the periodic direction. >> >> On 13 Jan 2018, at 19:19, "nek5000-users at lists.mcs.anl.gov" < >> nek5000-users at lists.mcs.anl.gov> wrote: >> >> Dear Nek Users, >> >> I am trying to get periodicity to work in the lastest version of Nek. >> I've made an extremely simple mesh within prenek (prex) in polar >> coordinates and cannot seem to run this case. When I run genmap, I get the >> error below. Did I do something wrong in setting up this mesh? >> >> >> >> >> genmap >> reading a.rea >> Input mesh tolerance (default 0.2): >> NOTE: smaller is better, but generous is more forgiving for bad meshes. >> 0.01 >> reading mesh data ... >> start locglob_lexico: 4 2 8 >> 1.0000000000000000E-002 >> locglob: 1 1 8 >> locglob: 2 5 8 >> locglob: 1 6 8 >> locglob: 2 6 8 >> done locglob_lexico: 6 6 8 2 >> start periodic vtx: 2 6 >> 1 4 4 Matrix: x0 >> 1 x0 1.0000E+00 1.0000E+00 5.4347-323 4.9407-324 >> 2 x0 -3.5355E-01 3.5355E-01 6.9423-310 6.9423-310 >> 3 x0 3.5355E-01 -3.5355E-01 6.9529-310 6.9529-310 >> 4 x0 6.9423-310 6.9529-310 2.3477-313 3.1632-317 >> 2 4 4 Matrix: x1 >> 1 x1 1.0000E+00 1.0000E+00 6.3240-322 0.0000E+00 >> 2 x1 -3.5355E-01 3.5355E-01 0.0000E+00 6.9423-310 >> 3 x1 -3.5355E-01 3.5355E-01 6.9423-310 6.9529-310 >> 4 x1 6.9423-310 6.9423-310 6.9423-310 6.9529-310 >> 1 4 4 Matrix: z0 >> 1 z0 1.0000E+00 1.0000E+00 5.4347-323 4.9407-324 >> 2 z0 -2.1213E+00 -1.4142E+00 6.9423-310 6.9423-310 >> 3 z0 2.1213E+00 1.4142E+00 6.9529-310 6.9529-310 >> 4 z0 6.9423-310 6.9529-310 2.3477-313 3.1632-317 >> 2 4 4 Matrix: z1 >> 1 z1 1.0000E+00 1.0000E+00 6.3240-322 0.0000E+00 >> 2 z1 1.4142E+00 2.1213E+00 0.0000E+00 6.9423-310 >> 3 z1 1.4142E+00 2.1213E+00 6.9423-310 6.9529-310 >> 4 z1 6.9423-310 6.9423-310 6.9423-310 6.9529-310 >> 1 3 0 1.00000000E-03 2.12132000E+00 abort: FACE MATCH FAIL >> 2 4 3 2.12132000E-03 1.00000031E+00 abort: FACE MATCH FAIL >> >> 0 quit >> >> >> >> >> >> The mesh within my .rea file is as follows: >> 20.0000 20.0000 -8.00000 -4.00000 >> XFAC,YFAC,XZERO,YZERO >> **MESH DATA** 1st line is X of corner 1,2,3,4. 2nd line is Y. >> 2 2 2 NEL,NDIM,NELV >> ELEMENT 1 [ 1A] GROUP 0 >> -2.121320 -1.414213 -0.8742276E-07 -0.1311341E-06 >> 2.121320 1.414213 2.000000 3.000000 >> ELEMENT 2 [ 1B] GROUP 0 >> -0.1311341E-06 -0.8742276E-07 1.414213 2.121320 >> 3.000000 2.000000 1.414213 2.121320 >> ***** CURVED SIDE DATA ***** >> 4 Curved sides follow IEDGE,IEL,CURVE(I),I=1,5, CCURVE >> 2 1 -2.00000 0.00000 0.00000 0.00000 0.00000 >> C >> 4 1 3.00000 0.00000 0.00000 0.00000 0.00000 >> C >> 2 2 -2.00000 0.00000 0.00000 0.00000 0.00000 >> C >> 4 2 3.00000 0.00000 0.00000 0.00000 0.00000 >> C >> ***** BOUNDARY CONDITIONS ***** >> ***** FLUID BOUNDARY CONDITIONS ***** >> P 1 1 2.00000 3.00000 0.00000 0.00000 >> 0.00000 >> W 1 2 0.00000 0.00000 0.00000 0.00000 >> 0.00000 >> E 1 3 2.00000 1.00000 0.00000 0.00000 >> 0.00000 >> W 1 4 0.00000 0.00000 0.00000 0.00000 >> 0.00000 >> E 2 1 1.00000 3.00000 0.00000 0.00000 >> 0.00000 >> W 2 2 0.00000 0.00000 0.00000 0.00000 >> 0.00000 >> P 2 3 1.00000 1.00000 0.00000 0.00000 >> 0.00000 >> W 2 4 0.00000 0.00000 0.00000 0.00000 >> 0.00000 >> ***** NO THERMAL BOUNDARY CONDITIONS ***** >> >> >> >> _______________________________________________ >> >> Nek5000-users mailing list >> Nek5000-users at lists.mcs.anl.gov >> https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users >> >> >> _______________________________________________ >> Nek5000-users mailing list >> Nek5000-users at lists.mcs.anl.gov >> https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users >> >> >> >> _______________________________________________ >> >> Nek5000-users mailing list >> Nek5000-users at lists.mcs.anl.gov >> https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users >> >> >> >> >> _______________________________________________ >> Nek5000-users mailing list >> Nek5000-users at lists.mcs.anl.gov >> https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users >> >> >> >> >> _______________________________________________ >> Nek5000-users mailing list >> Nek5000-users at lists.mcs.anl.gov >> https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users >> >> >> > _______________________________________________ > > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > > > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Sat Jan 13 18:31:14 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Sun, 14 Jan 2018 00:31:14 +0000 Subject: [Nek5000-users] Periodicity with curvature In-Reply-To: References: , Message-ID: Hi Jon, You raise two separate issues --- 1. periodic-auto is simply the way that prenek assigns the P-P matching between a pair of faces. It requires the faces to be parallel, aligned, and with unit normals point in opposite directions. Generally under these circumstances prenek/pretex will find the matched pairs and thus generate the correct .rea file. From there, genmap and Nek5000 will establish the correct connectivity to execute the code (primarily, direct stiffness summation). 2. If the faces are not aligned, you need to have a way to assign the P-P association. Assuming you can do this then there are two possible cases: a) The unit normals on P-P face pairs are aligned and in opposite direction. This case will go through genmap/Nek5000 without any issue. b) The unit normals on P-P faces are not aligned, i.e., you're running the CYCLIC case (ifcyc=.true.). Here, there's going to be an issues in setting up the .map file. genmap likely will not work. You can recover this inside nek because we allow the user to prescribe some connectivity information, but it's clear that this will have to be done on a case-by-case basis. One of things we often do is to have a fake mesh with the same topology but with a geometry such that the normals are aligned (Case 2.a). Then generate the .map file and use it with Case 2.b. If this isn't possible, I'd suggest you contact me off-list and I can try to give some guidance. In the meantime, for your model problem, I'd suggest proceeding with one of the approaches outlined above, just so you can familiarize yourself with the overall process for the cyclic bcs. hth, Paul a) Unit normals are parallel and in ________________________________ From: Nek5000-users on behalf of nek5000-users at lists.mcs.anl.gov Sent: Saturday, January 13, 2018 2:34:58 PM To: nek5000-users at lists.mcs.anl.gov Subject: Re: [Nek5000-users] Periodicity with curvature Hi Paul, In the future, I will need a more complex geometry where cyclic BCs are not in-line. This simple example I presented here is simply a proof of concept for another mesh. What would be the best method do this, when the geometry isn't simple enough to use auto-periodic? Thank you, Jon On Sat, Jan 13, 2018 at 2:28 PM, > wrote: Hi Jon, It's been awhile since I've run the cyclic BCs that you're trying to use. (Here: cyclic = periodic + turning through an angle.) I can't recall the full workflow at the moment (and am not in a position to check), but I think you'll have better luck if you build a straight mesh, run genmap, and then morph the geometry into the desired curved shape in usrdat2(). The reason for doing so is that you'll then be guaranteed to have the correct mesh connectivity. hth, Paul ________________________________ From: Nek5000-users > on behalf of nek5000-users at lists.mcs.anl.gov > Sent: Saturday, January 13, 2018 1:00:48 PM To: nek5000-users at lists.mcs.anl.gov Subject: Re: [Nek5000-users] Periodicity with curvature My apologies, can you clarify what you mean? I made global refinements one more time, and re-assigned the periodic BCs within prex. For this 2D case (attached), I have linked the 8 element sides with the right 8 sides. All other sides are walls. Thank you, Jon On Sat, Jan 13, 2018 at 12:49 PM, > wrote: can you try again with at least 3 elements in other direction. On 13 Jan 2018, at 19:42, "nek5000-users at lists.mcs.anl.gov" > wrote: Thanks for the quick response. I made some global refinements but it seems I'm still getting the same error with genmap. Attached is the new .rea file with 4 elements in the periodic direction. On Sat, Jan 13, 2018 at 12:32 PM, > wrote: You need to have at least three elements in the periodic direction. On 13 Jan 2018, at 19:19, "nek5000-users at lists.mcs.anl.gov" > wrote: Dear Nek Users, I am trying to get periodicity to work in the lastest version of Nek. I've made an extremely simple mesh within prenek (prex) in polar coordinates and cannot seem to run this case. When I run genmap, I get the error below. Did I do something wrong in setting up this mesh? >> genmap reading a.rea Input mesh tolerance (default 0.2): NOTE: smaller is better, but generous is more forgiving for bad meshes. 0.01 reading mesh data ... start locglob_lexico: 4 2 8 1.0000000000000000E-002 locglob: 1 1 8 locglob: 2 5 8 locglob: 1 6 8 locglob: 2 6 8 done locglob_lexico: 6 6 8 2 start periodic vtx: 2 6 1 4 4 Matrix: x0 1 x0 1.0000E+00 1.0000E+00 5.4347-323 4.9407-324 2 x0 -3.5355E-01 3.5355E-01 6.9423-310 6.9423-310 3 x0 3.5355E-01 -3.5355E-01 6.9529-310 6.9529-310 4 x0 6.9423-310 6.9529-310 2.3477-313 3.1632-317 2 4 4 Matrix: x1 1 x1 1.0000E+00 1.0000E+00 6.3240-322 0.0000E+00 2 x1 -3.5355E-01 3.5355E-01 0.0000E+00 6.9423-310 3 x1 -3.5355E-01 3.5355E-01 6.9423-310 6.9529-310 4 x1 6.9423-310 6.9423-310 6.9423-310 6.9529-310 1 4 4 Matrix: z0 1 z0 1.0000E+00 1.0000E+00 5.4347-323 4.9407-324 2 z0 -2.1213E+00 -1.4142E+00 6.9423-310 6.9423-310 3 z0 2.1213E+00 1.4142E+00 6.9529-310 6.9529-310 4 z0 6.9423-310 6.9529-310 2.3477-313 3.1632-317 2 4 4 Matrix: z1 1 z1 1.0000E+00 1.0000E+00 6.3240-322 0.0000E+00 2 z1 1.4142E+00 2.1213E+00 0.0000E+00 6.9423-310 3 z1 1.4142E+00 2.1213E+00 6.9423-310 6.9529-310 4 z1 6.9423-310 6.9423-310 6.9423-310 6.9529-310 1 3 0 1.00000000E-03 2.12132000E+00 abort: FACE MATCH FAIL 2 4 3 2.12132000E-03 1.00000031E+00 abort: FACE MATCH FAIL 0 quit The mesh within my .rea file is as follows: 20.0000 20.0000 -8.00000 -4.00000 XFAC,YFAC,XZERO,YZERO **MESH DATA** 1st line is X of corner 1,2,3,4. 2nd line is Y. 2 2 2 NEL,NDIM,NELV ELEMENT 1 [ 1A] GROUP 0 -2.121320 -1.414213 -0.8742276E-07 -0.1311341E-06 2.121320 1.414213 2.000000 3.000000 ELEMENT 2 [ 1B] GROUP 0 -0.1311341E-06 -0.8742276E-07 1.414213 2.121320 3.000000 2.000000 1.414213 2.121320 ***** CURVED SIDE DATA ***** 4 Curved sides follow IEDGE,IEL,CURVE(I),I=1,5, CCURVE 2 1 -2.00000 0.00000 0.00000 0.00000 0.00000 C 4 1 3.00000 0.00000 0.00000 0.00000 0.00000 C 2 2 -2.00000 0.00000 0.00000 0.00000 0.00000 C 4 2 3.00000 0.00000 0.00000 0.00000 0.00000 C ***** BOUNDARY CONDITIONS ***** ***** FLUID BOUNDARY CONDITIONS ***** P 1 1 2.00000 3.00000 0.00000 0.00000 0.00000 W 1 2 0.00000 0.00000 0.00000 0.00000 0.00000 E 1 3 2.00000 1.00000 0.00000 0.00000 0.00000 W 1 4 0.00000 0.00000 0.00000 0.00000 0.00000 E 2 1 1.00000 3.00000 0.00000 0.00000 0.00000 W 2 2 0.00000 0.00000 0.00000 0.00000 0.00000 P 2 3 1.00000 1.00000 0.00000 0.00000 0.00000 W 2 4 0.00000 0.00000 0.00000 0.00000 0.00000 ***** NO THERMAL BOUNDARY CONDITIONS ***** _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Sun Jan 14 08:08:20 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Sun, 14 Jan 2018 19:38:20 +0530 Subject: [Nek5000-users] Low-Density jet using low -Mach number formulation Message-ID: Hello Nek Users, I want to simulate low density jet (heated air whose density is lesser than ambient air) expanding out from a pipe into stagnant air. I want to run a 2D planar case. Im planning to export the mesh from exodus II to nek. Can somebody guide me what I have to do from here? What Stress formulation to use? Thanks for the help. -- Nitish Kovalam Aerospace Engineering Indian Institute of Space Science and Technology -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Sun Jan 14 15:00:59 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Sun, 14 Jan 2018 21:00:59 +0000 Subject: [Nek5000-users] Low-Density jet using low -Mach number formulation In-Reply-To: References: Message-ID: Dear Nitish, There are several examples of Rayleigh-Benard convection that show how to do buoyancy driven flows. Looking at those usr files would be a first step. hth, Paul ________________________________ From: Nek5000-users on behalf of nek5000-users at lists.mcs.anl.gov Sent: Sunday, January 14, 2018 8:08:20 AM To: nek5000-users at lists.mcs.anl.gov Subject: [Nek5000-users] Low-Density jet using low -Mach number formulation Hello Nek Users, I want to simulate low density jet (heated air whose density is lesser than ambient air) expanding out from a pipe into stagnant air. I want to run a 2D planar case. Im planning to export the mesh from exodus II to nek. Can somebody guide me what I have to do from here? What Stress formulation to use? Thanks for the help. -- Nitish Kovalam Aerospace Engineering Indian Institute of Space Science and Technology -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Tue Jan 16 12:48:53 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Tue, 16 Jan 2018 19:48:53 +0100 Subject: [Nek5000-users] conjugate heat transfer; NELT NELV; genmap Message-ID: Hello Neks, I am using conjugate heat transfer module. Elements in velocity domain = 3072 = NELV Elements in temperature domain = 3072 Elements in PS1 domain = 7424 = NEL Elements in PS2 domain = 7424 = NEL When I generate .map file, genmap throws the following error " reading .rea file data ... ERROR: error reading 2 3073 7424 aborting 520 in routine rdbdry. " When I modify Elements in temperature domain = 7424 = NEL It runs fine. I am able to generate .map and run a simulation and obtained expected results. When the number of elements in atleast one scalar is not equal to NEL, there is a problem. Is it possible to have the number of elements in temperature field = NELV and the number of elements in other scalars = NEL? Thank you advance. Cheers, Sandeep -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Tue Jan 16 21:48:56 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Wed, 17 Jan 2018 09:18:56 +0530 Subject: [Nek5000-users] Nek5000-users Digest, Vol 107, Issue 24 In-Reply-To: References: Message-ID: Hey Paul, As suggested by you, I did look into the .usr of Rayleigh Benard Convection example and it did help me. But I face the following error while compiling using makenek. obj/plan4.o: In function `plan4_': plan4.f:(.text+0x1781): additional relocation overflows omitted from the output collect2: error: ld returned 1 exit status makefile:114: recipe for target 'nek5000' failed make: *** [nek5000] Error 1 I have attached The SIZE file, .usr file,.par file and the .box file used for the simulation. Really appreciate your help. On Mon, Jan 15, 2018 at 11:30 PM, wrote: > Send Nek5000-users mailing list submissions to > nek5000-users at lists.mcs.anl.gov > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > or, via email, send a message with subject or body 'help' to > nek5000-users-request at lists.mcs.anl.gov > > You can reach the person managing the list at > nek5000-users-owner at lists.mcs.anl.gov > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Nek5000-users digest..." > > > Today's Topics: > > 1. Re: Low-Density jet using low -Mach number formulation > (nek5000-users at lists.mcs.anl.gov) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Sun, 14 Jan 2018 21:00:59 +0000 > From: nek5000-users at lists.mcs.anl.gov > To: "nek5000-users at lists.mcs.anl.gov" > > Subject: Re: [Nek5000-users] Low-Density jet using low -Mach number > formulation > Message-ID: > > Content-Type: text/plain; charset="us-ascii" > > > Dear Nitish, > > > There are several examples of Rayleigh-Benard convection that show how to > do buoyancy driven flows. Looking at those usr files would be a first > step. > > > hth, > > > Paul > > > ________________________________ > From: Nek5000-users on behalf > of nek5000-users at lists.mcs.anl.gov > Sent: Sunday, January 14, 2018 8:08:20 AM > To: nek5000-users at lists.mcs.anl.gov > Subject: [Nek5000-users] Low-Density jet using low -Mach number formulation > > Hello Nek Users, > > I want to simulate low density jet (heated air whose density is lesser > than ambient air) expanding out from a pipe into stagnant air. > I want to run a 2D planar case. Im planning to export the mesh from exodus > II to nek. Can somebody guide me what I have to do from here? What Stress > formulation to use? Thanks for the help. > > -- > Nitish Kovalam > Aerospace Engineering > Indian Institute of Space Science and Technology > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: attachments/20180114/dcab9a6f/attachment-0001.html> > > ------------------------------ > > Subject: Digest Footer > > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > > > ------------------------------ > > End of Nek5000-users Digest, Vol 107, Issue 24 > ********************************************** > -- Nitish Kovalam Aerospace Engineering Indian Institute of Space Science and Technology -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: SIZE Type: application/octet-stream Size: 1977 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: try_1.box Type: application/octet-stream Size: 327 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: try_1.par Type: application/octet-stream Size: 785 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: try_1.usr Type: application/octet-stream Size: 2521 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: makenek_compiler.png Type: image/png Size: 592948 bytes Desc: not available URL: From nek5000-users at lists.mcs.anl.gov Tue Jan 16 23:30:37 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Wed, 17 Jan 2018 05:30:37 +0000 Subject: [Nek5000-users] Nek5000-users Digest, Vol 107, Issue 24 In-Reply-To: References: , Message-ID: I think you're running out of memory. In your SIZE file, increase lpmin. You have (in SIZE) a max element count of lelg=10000. If lpmin=1, then the code has to compile for 10000 elements per rank, which takes a lot of memory. If you set lpmin=8, then the code will compile for 10000/8, meaning that the memory footprint is effectively 8 times smaller. If you run 10,000 elements then you would need 8 MPI ranks in this case. Note that if your mesh has only 5000 elements, you could run 4 MPI ranks. I usually compile with lelg slightly larger than the number of elements in my mesh. hth, Paul ________________________________ From: Nek5000-users on behalf of nek5000-users at lists.mcs.anl.gov Sent: Tuesday, January 16, 2018 9:48:56 PM To: nek5000-users at lists.mcs.anl.gov Subject: Re: [Nek5000-users] Nek5000-users Digest, Vol 107, Issue 24 Hey Paul, As suggested by you, I did look into the .usr of Rayleigh Benard Convection example and it did help me. But I face the following error while compiling using makenek. obj/plan4.o: In function `plan4_': plan4.f:(.text+0x1781): additional relocation overflows omitted from the output collect2: error: ld returned 1 exit status makefile:114: recipe for target 'nek5000' failed make: *** [nek5000] Error 1 I have attached The SIZE file, .usr file,.par file and the .box file used for the simulation. Really appreciate your help. On Mon, Jan 15, 2018 at 11:30 PM, > wrote: Send Nek5000-users mailing list submissions to nek5000-users at lists.mcs.anl.gov To subscribe or unsubscribe via the World Wide Web, visit https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users or, via email, send a message with subject or body 'help' to nek5000-users-request at lists.mcs.anl.gov You can reach the person managing the list at nek5000-users-owner at lists.mcs.anl.gov When replying, please edit your Subject line so it is more specific than "Re: Contents of Nek5000-users digest..." Today's Topics: 1. Re: Low-Density jet using low -Mach number formulation (nek5000-users at lists.mcs.anl.gov) ---------------------------------------------------------------------- Message: 1 Date: Sun, 14 Jan 2018 21:00:59 +0000 From: nek5000-users at lists.mcs.anl.gov To: "nek5000-users at lists.mcs.anl.gov" > Subject: Re: [Nek5000-users] Low-Density jet using low -Mach number formulation Message-ID: > Content-Type: text/plain; charset="us-ascii" Dear Nitish, There are several examples of Rayleigh-Benard convection that show how to do buoyancy driven flows. Looking at those usr files would be a first step. hth, Paul ________________________________ From: Nek5000-users > on behalf of nek5000-users at lists.mcs.anl.gov > Sent: Sunday, January 14, 2018 8:08:20 AM To: nek5000-users at lists.mcs.anl.gov Subject: [Nek5000-users] Low-Density jet using low -Mach number formulation Hello Nek Users, I want to simulate low density jet (heated air whose density is lesser than ambient air) expanding out from a pipe into stagnant air. I want to run a 2D planar case. Im planning to export the mesh from exodus II to nek. Can somebody guide me what I have to do from here? What Stress formulation to use? Thanks for the help. -- Nitish Kovalam Aerospace Engineering Indian Institute of Space Science and Technology -------------- next part -------------- An HTML attachment was scrubbed... URL: ------------------------------ Subject: Digest Footer _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users ------------------------------ End of Nek5000-users Digest, Vol 107, Issue 24 ********************************************** -- Nitish Kovalam Aerospace Engineering Indian Institute of Space Science and Technology -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Wed Jan 17 11:49:03 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Wed, 17 Jan 2018 17:49:03 +0000 Subject: [Nek5000-users] How to change the x y z coordinates to be polar Message-ID: Hi Nek, Do you know how to change the result of rms to be based on polar coordinates? Currently I have x, y and z directions for the circular pipe. I have to plot the rms in axial,radial and azimuthal. Cheers, Jian -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Wed Jan 17 13:10:35 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Wed, 17 Jan 2018 19:10:35 +0000 Subject: [Nek5000-users] How to change the x y z coordinates to be polar In-Reply-To: References: Message-ID: Dear Jian, You can do the conversion when you process the data by taking the dot product of any (x,y,z) vector with the unit-radius vector, which is U = (x,y)/r, where r = sqrt( x*x+y*y) hth, Paul ________________________________ From: Nek5000-users on behalf of nek5000-users at lists.mcs.anl.gov Sent: Wednesday, January 17, 2018 11:49:03 AM To: nek5000-users at lists.mcs.anl.gov Subject: [Nek5000-users] How to change the x y z coordinates to be polar Hi Nek, Do you know how to change the result of rms to be based on polar coordinates? Currently I have x, y and z directions for the circular pipe. I have to plot the rms in axial,radial and azimuthal. Cheers, Jian -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Wed Jan 17 13:37:48 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Wed, 17 Jan 2018 20:37:48 +0100 Subject: [Nek5000-users] How to change the x y z coordinates to be polar In-Reply-To: References: Message-ID: we typically calculate the statistics (first and second order tensors) in the Cartesian system (x,y,z), and then use proper rotation matrices to go to the cylindrical tensor components. Depending on the flow, one can then also do a radial average. In some cases we evaluate the statistics on the SEM mesh, or directly on an interpolated polar mesh. Philipp On 2018-01-17 20:10, nek5000-users at lists.mcs.anl.gov wrote: > > Dear Jian, > > > You can do the conversion when you process the data by taking the dot > product of any (x,y,z) vector with the unit-radius vector, which is > > U = (x,y)/r, where r = sqrt( x*x+y*y) > > > hth, > > > Paul > > > ------------------------------------------------------------------------ > *From:* Nek5000-users on > behalf of nek5000-users at lists.mcs.anl.gov > *Sent:* Wednesday, January 17, 2018 11:49:03 AM > *To:* nek5000-users at lists.mcs.anl.gov > *Subject:* [Nek5000-users] How to change the x y z coordinates to be polar > Hi Nek, > > Do you know how to change the result of rms to be based on polar > coordinates? Currently I have x, y and z directions for the circular > pipe. I have to plot the rms in axial,radial and azimuthal. > > Cheers, > > Jian > > > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > From nek5000-users at lists.mcs.anl.gov Thu Jan 18 03:49:35 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Thu, 18 Jan 2018 10:49:35 +0100 Subject: [Nek5000-users] Advection for passive scalars in par file Message-ID: Dear Neks, when including passive scalars in my simulation, I set "advection = yes" for velocity, temperature, and passive scalars. However, in PARDICT the key pardictkey(93) / 'SCALAR%%:ADVECTION' / does not exist so I have added it myself to the list. Is that correct? I am using the official release (tarball version 17.0) -- Karlsruhe Institute of Technology (KIT) Institute of Fluid Mechanics M.Sc. Steffen Straub Doctoral Researcher Kaiserstra?e 10 Building 10.23 76131 Karlsruhe, Germany Phone: +49 721 608-43027 E-mail: steffen.straub at kit.edu Web: http://www.istm.kit.edu Registered office: Kaiserstra?e 12, 76131 Karlsruhe, Germany KIT ? The Research University in the Helmholtz Association From nek5000-users at lists.mcs.anl.gov Thu Jan 18 08:48:11 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Thu, 18 Jan 2018 15:48:11 +0100 Subject: [Nek5000-users] Advection for passive scalars in par file In-Reply-To: References: Message-ID: Advection is turned on by default. Currently you cannot disable it through the .par file (only .usr). On 18 Jan 2018, at 10:50, "nek5000-users at lists.mcs.anl.gov " > wrote: Dear Neks, when including passive scalars in my simulation, I set "advection = yes" for velocity, temperature, and passive scalars. However, in PARDICT the key pardictkey(93) / 'SCALAR%%:ADVECTION' / does not exist so I have added it myself to the list. Is that correct? I am using the official release (tarball version 17.0) -- Karlsruhe Institute of Technology (KIT) Institute of Fluid Mechanics M.Sc. Steffen Straub Doctoral Researcher Kaiserstra?e 10 Building 10.23 76131 Karlsruhe, Germany Phone: +49 721 608-43027 E-mail: steffen.straub at kit.edu Web: http://www.istm.kit.edu Registered office: Kaiserstra?e 12, 76131 Karlsruhe, Germany KIT ? The Research University in the Helmholtz Association _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Thu Jan 18 12:40:34 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Thu, 18 Jan 2018 18:40:34 +0000 Subject: [Nek5000-users] How to change the x y z coordinates to be polar Message-ID: Hi Philipp, Thanks for your reply. Currently I have the mean statistics. Can I change the averaged velocities and velocities square to be based on polar coordinates, then have the rms in radial and azimuthal? Or I need to change the coordinate firstly before the averaging. Kind regards, Jian -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Thu Jan 18 14:06:05 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Thu, 18 Jan 2018 20:06:05 +0000 Subject: [Nek5000-users] How to change the x y z coordinates to be polar In-Reply-To: References: Message-ID: Dear Jian, Normally I would write down the quantity of interest, e.g., , then expand , etc., in terms of (ux,uy,uz). When you do the small bit of vector manipulations it will be clear what you need to compute. Note that [ux,uy,uz]=R*[ur,ut,uz] (ut=utheta),and [ur,ut,uz]=R'[ux,uy,uz], with R*R'=I. hth Paul ________________________________ From: Nek5000-users on behalf of nek5000-users at lists.mcs.anl.gov Sent: Thursday, January 18, 2018 12:40:34 PM To: nek5000-users at lists.mcs.anl.gov Subject: Re: [Nek5000-users] How to change the x y z coordinates to be polar Hi Philipp, Thanks for your reply. Currently I have the mean statistics. Can I change the averaged velocities and velocities square to be based on polar coordinates, then have the rms in radial and azimuthal? Or I need to change the coordinate firstly before the averaging. Kind regards, Jian -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Thu Jan 18 14:32:54 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Thu, 18 Jan 2018 21:32:54 +0100 Subject: [Nek5000-users] How to change the x y z coordinates to be polar In-Reply-To: References: Message-ID: Hi, yes, you can rotate the stress tensor (already averaged in time and axial direction) into the radial and azimuthal directions; then do the azimuthal average, and finally go to the disturbance quantities. The rotations can be done in various ways; I typically just write the complete rotation matrix which can be constructed either using vector identities, or simply with sine and cosine. Philipp On 2018-01-18 21:06, nek5000-users at lists.mcs.anl.gov wrote: > > Dear Jian, > > > Normally I would write down the quantity of interest, e.g., ?, > then expand , etc., in terms of (ux,uy,uz). ? When you do the small > bit of vector manipulations it will be clear what you need to compute. > Note that [ux,uy,uz]=R*[ur,ut,uz] (ut=utheta),and > [ur,ut,uz]=R'[ux,uy,uz], with R*R'=I. > > > hth > > > Paul > > > ------------------------------------------------------------------------ > *From:* Nek5000-users on > behalf of nek5000-users at lists.mcs.anl.gov > *Sent:* Thursday, January 18, 2018 12:40:34 PM > *To:* nek5000-users at lists.mcs.anl.gov > *Subject:* Re: [Nek5000-users] How to change the x y z coordinates to be > polar > Hi Philipp, > > Thanks for your reply. Currently I have the mean statistics. Can I > change the averaged velocities and velocities square to be based on > polar coordinates, then have the rms in radial and azimuthal?? Or I need > to change the coordinate firstly before the averaging. > > Kind regards, > > Jian > > > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > From nek5000-users at lists.mcs.anl.gov Sun Jan 21 11:59:47 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Sun, 21 Jan 2018 23:29:47 +0530 Subject: [Nek5000-users] Variable Viscosity in .usr file Message-ID: Hello All, I'm trying to simulate a low density jet expanding into air using low Mach number formulation. I have followed the steps for enabling the stress formulation from the documentation. Is it enough to specify the variation of viscosity with temperature (sutherland formula) in the .usr (in uservp() section) file? If yes, is there an example in Nek5000 repo? And it says in the Nek Documentation that Idea Gas equation ( P = rho*R*T) has been hard coded. So where do I input the information about R? And how will the solver know that bulk fluid is air and the incoming jet is a fluid with lower density? I'm really grateful to any help I can get regarding my question. Thanks in advance. -- Nitish Kovalam Aerospace Engineering Indian Institute of Space Science and Technology -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Mon Jan 22 02:58:23 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 22 Jan 2018 08:58:23 +0000 Subject: [Nek5000-users] Applying multiple flux boundary conditions Message-ID: Hi all, I'm trying to apply both temperature and velocity flux boundary conditions at one of my boundaries. I am unsure, however, how to apply this in userbc in the usr file. I can set one of the two by having an 'f' in the box file (for just one variable) and then defining 'flux =' in userbc. How do I do this for both temperature and velocity? Is there separate term for flux for temperature and flux for velocity? Best, Daniel Ward -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Mon Jan 22 03:56:51 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 22 Jan 2018 10:56:51 +0100 Subject: [Nek5000-users] Variable Viscosity in .usr file In-Reply-To: References: Message-ID: The ideal gas law is not hard coded. You can chance the material properties through uservp() and the so called thermal divergence (Drho/Dt) in userqtl() in the usr file. On 21 Jan 2018, at 19:00, "nek5000-users at lists.mcs.anl.gov " > wrote: Hello All, I'm trying to simulate a low density jet expanding into air using low Mach number formulation. I have followed the steps for enabling the stress formulation from the documentation. Is it enough to specify the variation of viscosity with temperature (sutherland formula) in the .usr (in uservp() section) file? If yes, is there an example in Nek5000 repo? And it says in the Nek Documentation that Idea Gas equation ( P = rho*R*T) has been hard coded. So where do I input the information about R? And how will the solver know that bulk fluid is air and the incoming jet is a fluid with lower density? I'm really grateful to any help I can get regarding my question. Thanks in advance.? -- Nitish Kovalam Aerospace Engineering Indian Institute of Space Science and Technology _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Mon Jan 22 04:00:01 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 22 Jan 2018 11:00:01 +0100 Subject: [Nek5000-users] Variable Viscosity in .usr file In-Reply-To: References: Message-ID: You have to use two scalars (+temperature) if your material properties (jet/air) differ. On 22 Jan 2018, at 10:57, "nek5000-users at lists.mcs.anl.gov " > wrote: The ideal gas law is not hard coded. You can chance the material properties through uservp() and the so called thermal divergence (Drho/Dt) in userqtl() in the usr file. On 21 Jan 2018, at 19:00, "nek5000-users at lists.mcs.anl.gov " > wrote: Hello All, I'm trying to simulate a low density jet expanding into air using low Mach number formulation. I have followed the steps for enabling the stress formulation from the documentation. Is it enough to specify the variation of viscosity with temperature (sutherland formula) in the .usr (in uservp() section) file? If yes, is there an example in Nek5000 repo? And it says in the Nek Documentation that Idea Gas equation ( P = rho*R*T) has been hard coded. So where do I input the information about R? And how will the solver know that bulk fluid is air and the incoming jet is a fluid with lower density? I'm really grateful to any help I can get regarding my question. Thanks in advance.? -- Nitish Kovalam Aerospace Engineering Indian Institute of Space Science and Technology _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Mon Jan 22 06:38:20 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 22 Jan 2018 12:38:20 +0000 Subject: [Nek5000-users] Applying multiple flux boundary conditions In-Reply-To: References: Message-ID: Hi Daniel, you want to use the ?ifield? index that is 1 for velocity field and 2 for temperature field. Your usrbc subroutine would look like: if (ifield.eq.1) then YOUR BC FOR VELOCITY else YOUR BC FOR TEMPERATURE endif if you only solve for velocity and temperature fields. Marco On Jan 22fd, 2018, at 3:58 AM, nek5000-users at lists.mcs.anl.gov wrote: Hi all, I'm trying to apply both temperature and velocity flux boundary conditions at one of my boundaries. I am unsure, however, how to apply this in userbc in the usr file. I can set one of the two by having an 'f' in the box file (for just one variable) and then defining 'flux =' in userbc. How do I do this for both temperature and velocity? Is there separate term for flux for temperature and flux for velocity? Best, Daniel Ward _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Mon Jan 22 14:40:33 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 22 Jan 2018 20:40:33 +0000 Subject: [Nek5000-users] Example turbChannel restart issue Message-ID: Dear Nek team, Currently I am working on the example turbChannel (NEK5000 v17.0) and have successfully generated some statistics results using the default settings. Now I would like to restart from where I stopped so this is what I did: In the .par file, I activated the line 'startFrom = turbChannel0.f00001', where 'turbChannel0.f00001' is one of two files generated from the previous simulation. However, this did not work and produced error, i.e. NAN. I also tried to use another file, 'turbChannel0.f00002' and I got the same error message. The complete logfile is at the end of this email. I am wondering is there anything else I need to modify other than what I did? Or the way I did was not correct? Another thing I got to mention is that, in the latest version of turbChannel (Nek5000 v17.0), the file .re2 is not readable; more specifically, it does not retain the same format as other .re2 or .rea files in other examples, and looks messy and contains unreadable characters. So the Reynolds number in my case was changed in the .par file. Thank you for your time and help! Regards, Ming *****************Complete Logfile***************************** Number of processors: 4 REAL wdsize : 8 INTEGER wdsize : 4 Timer accuracy : 9.40E-07 Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.par general = [(null)] general:startfrom = [turbChannel0.f00001] general:stopat = [endTime] general:endtime = [200] general:dt = [0] general:timestepper = [bdf2] general:extrapolation = [OIFS] general:variabledt = [yes] general:targetcfl = [2.0] general:writecontrol = [runTime] general:writeinterval = [100.0] general:userparam01 = [100] general:userparam02 = [20] general:userparam03 = [1] general:filtering = [hpfrt] general:filterweight = [10] general:filtercutoffratio = [0.9] problemtype = [(null)] problemtype:variableproperties = [no] problemtype:equation = [incompNS] pressure = [(null)] pressure:preconditioner = [semg_amg] pressure:residualtol = [1e-04] pressure:residualproj = [yes] velocity = [(null)] velocity:residualtol = [1e-07] velocity:density = [1] velocity:viscosity = [-2950] Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.re2 mapping elements to processors Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.ma2 1 384 384 1536 1536 NELV 2 384 384 1536 1536 NELV 3 384 384 1536 1536 NELV 0 384 384 1536 1536 NELV RANK 0 IEG 44 45 49 50 51 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 236 237 241 242 243 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 428 429 433 434 435 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 620 621 625 626 627 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 812 813 817 818 819 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 1004 1005 1009 1010 1011 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1196 1197 1201 1202 1203 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1388 1389 1393 1394 1395 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 element load imbalance: 0 384 384 done :: mapping 0.29167 sec preading mesh preading bc for ifld 1 done :: read .re2 file 0.51 sec nelgt/nelgv/lelt: 1536 1536 387 lx1 /lx2 /lx3 : 8 8 8 setup mesh topology Right-handed check complete for 1536 elements. OK. setvert3d: 8 201344 533120 201344 201344 call usrsetvert done :: usrsetvert gs_setup: 21952 unique labels shared pairwise times (avg, min, max): 2.92127e-05 2.76451e-05 3.00083e-05 crystal router : 7.82046e-05 7.75443e-05 7.88275e-05 all reduce : 0.000228323 0.000227655 0.000228766 used all_to_all method: pairwise handle bytes (avg, min, max): 1.45061e+06 1375332 1525892 buffer bytes (avg, min, max): 175616 125440 225792 setupds time 9.2419E-02 seconds 0 8 201344 1536 8 max multiplicity done :: setup mesh topology call usrdat done :: usrdat generate geometry data NOTE: All elements deformed , param(59) ^=0 done :: generate geometry data call usrdat2 done :: usrdat2 regenerate geometry data 1 NOTE: All elements deformed , param(59) ^=0 done :: regenerate geometry data 1 verify mesh topology 0.000000000000000E+000 6.28318530717959 Xrange -1.00000000000000 1.00000000000000 Yrange 0.000000000000000E+000 3.14159265358979 Zrange done :: verify mesh topology IFTRAN = T IFFLOW = T IFHEAT = F IFSPLIT = T IFLOMACH = F IFUSERVP = F IFUSERMV = F IFPERT = F IFADJ = F IFSTRS = F IFCHAR = T IFCYCLIC = F IFAXIS = F IFMVBD = F IFMELT = F IFNEKNEK = F IFSYNC = F IFVCOR = T IFINTQ = F IFGEOM = F IFSURT = F IFWCNO = F IFTMSH for field 1 = F IFADVC for field 1 = T IFNONL for field 1 = F Dealiasing enabled, lxd= 8 Estimated eigenvalues EIGAA = 1.23913370009078 EIGGA = 1862221.21607236 EIGAE = 0.250000000000000 EIGAS = 1.681282119258565E-002 EIGGE = 1862221.21607236 EIGGS = 2.00000000000000 verify mesh topology 0.000000000000000E+000 6.28318530717959 Xrange -1.00000000000000 1.00000000000000 Yrange 0.000000000000000E+000 3.14159265358979 Zrange done :: verify mesh topology E-solver strategy: 0 itr mg_nx: 1 3 7 mg_ny: 1 3 7 mg_nz: 1 3 7 call usrsetvert done :: usrsetvert gs_setup: 448 unique labels shared pairwise times (avg, min, max): 7.93538e-06 7.8488e-06 8.0526e-06 crystal router : 6.85905e-06 6.72e-06 6.9978e-06 all reduce : 1.20532e-05 1.11753e-05 1.28944e-05 used all_to_all method: crystal router handle bytes (avg, min, max): 50812 44668 56956 buffer bytes (avg, min, max): 6144 5120 7168 setupds time 3.1089E-03 seconds 1 2 1664 1536 setvert3d: 4 30336 42624 30336 30336 call usrsetvert done :: usrsetvert gs_setup: 4032 unique labels shared pairwise times (avg, min, max): 8.37387e-06 8.2548e-06 8.5004e-06 crystal router : 1.86812e-05 1.83826e-05 1.89784e-05 all reduce : 4.4251e-05 4.40251e-05 4.44275e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 269940 256100 283780 buffer bytes (avg, min, max): 32256 23040 41472 setupds time 2.4576E-02 seconds 2 4 30336 1536 setvert3d: 4 30336 42624 30336 30336 call usrsetvert done :: usrsetvert gs_setup: 4032 unique labels shared pairwise times (avg, min, max): 8.65523e-06 8.5168e-06 8.7977e-06 crystal router : 1.94818e-05 1.93217e-05 1.96357e-05 all reduce : 5.97892e-05 5.95374e-05 5.99737e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 269940 256100 283780 buffer bytes (avg, min, max): 32256 23040 41472 setupds time 1.4160E-02 seconds 3 4 30336 1536 setvert3d: 6 96896 195200 96896 96896 call usrsetvert done :: usrsetvert gs_setup: 11200 unique labels shared pairwise times (avg, min, max): 1.61057e-05 1.58103e-05 1.62982e-05 crystal router : 3.86536e-05 3.8384e-05 3.89447e-05 all reduce : 8.92118e-05 8.88703e-05 8.94562e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 742004 703588 780420 buffer bytes (avg, min, max): 89600 64000 115200 setupds time 4.3098E-02 seconds 4 6 96896 1536 regenerate geometry data 1 NOTE: All elements deformed , param(59) ^=0 done :: regenerate geometry data 1 h1_mg_nx: 1 3 7 h1_mg_ny: 1 3 7 h1_mg_nz: 1 3 7 call usrsetvert done :: usrsetvert gs_setup: 448 unique labels shared pairwise times (avg, min, max): 4.10923e-06 2.5509e-06 4.7765e-06 crystal router : 3.94603e-06 3.7989e-06 4.0103e-06 all reduce : 6.54198e-06 6.442e-06 6.5947e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 50812 44668 56956 buffer bytes (avg, min, max): 6144 5120 7168 setupds time 1.6990E-03 seconds 5 2 1664 1536 setvert3d: 4 30336 42624 30336 30336 call usrsetvert done :: usrsetvert gs_setup: 4032 unique labels shared pairwise times (avg, min, max): 7.51525e-06 7.3863e-06 7.68e-06 crystal router : 1.7878e-05 1.76051e-05 1.81134e-05 all reduce : 5.29887e-05 5.27139e-05 5.32422e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 269940 256100 283780 buffer bytes (avg, min, max): 32256 23040 41472 setupds time 2.5044E-02 seconds 6 4 30336 1536 setvert3d: 4 30336 42624 30336 30336 call usrsetvert done :: usrsetvert gs_setup: 4032 unique labels shared pairwise times (avg, min, max): 1.11506e-05 1.07538e-05 1.1453e-05 crystal router : 2.78917e-05 2.74376e-05 2.83874e-05 all reduce : 6.8896e-05 6.84774e-05 6.92927e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 269940 256100 283780 buffer bytes (avg, min, max): 32256 23040 41472 setupds time 2.0265E-02 seconds 7 4 30336 1536 setvert3d: 6 96896 195200 96896 96896 call usrsetvert done :: usrsetvert gs_setup: 11200 unique labels shared pairwise times (avg, min, max): 1.44095e-05 1.43056e-05 1.45192e-05 crystal router : 3.94263e-05 3.90332e-05 3.98261e-05 all reduce : 9.67785e-05 9.63923e-05 9.71425e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 742004 703588 780420 buffer bytes (avg, min, max): 89600 64000 115200 setupds time 4.3436E-02 seconds 8 6 96896 1536 setvert3d: 8 201344 533120 201344 201344 call usrsetvert done :: usrsetvert gs_setup: 21952 unique labels shared pairwise times (avg, min, max): 5.80216e-05 4.95078e-05 6.16774e-05 crystal router : 7.1144e-05 7.08725e-05 7.14649e-05 all reduce : 0.000235607 0.000234486 0.000236793 used all_to_all method: pairwise handle bytes (avg, min, max): 1.45061e+06 1375332 1525892 buffer bytes (avg, min, max): 175616 125440 225792 setupds time 8.4090E-02 seconds 9 8 201344 1536 setvert3d: 10 343680 1130112 343680 343680 call usrsetvert done :: usrsetvert gs_setup: 36288 unique labels shared pairwise times (avg, min, max): 3.15373e-05 3.06691e-05 3.2104e-05 crystal router : 9.24712e-05 9.09459e-05 9.39815e-05 all reduce : 0.000254788 0.00025378 0.000255437 used all_to_all method: pairwise handle bytes (avg, min, max): 2.39576e+06 2271332 2520196 buffer bytes (avg, min, max): 290304 207360 373248 setupds time 1.3027E-01 seconds 10 10 343680 1536 setup h1 coarse grid, nx_crs= 2 call usrsetvert done :: usrsetvert gs_setup: 448 unique labels shared pairwise times (avg, min, max): 5.59047e-06 5.5171e-06 5.677e-06 crystal router : 3.78503e-06 3.7079e-06 3.8472e-06 all reduce : 5.5058e-06 5.4973e-06 5.5169e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 50812 44668 56956 buffer bytes (avg, min, max): 6144 5120 7168 gs_setup: 448 unique labels shared pairwise times (avg, min, max): 1.01072e-05 9.958e-06 1.01904e-05 crystal router : 4.22242e-06 4.1446e-06 4.331e-06 all reduce : 8.35538e-06 8.1712e-06 8.4627e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 27068 23868 30268 buffer bytes (avg, min, max): 4736 3840 5632 AMG version 2.01 AMG: 8 levels AMG Chebyshev smoother data: AMG level 1: 3 iterations with rho = 0.79256 AMG level 2: 2 iterations with rho = 0.668297 AMG level 3: 2 iterations with rho = 0.481307 AMG level 4: 2 iterations with rho = 0.409707 AMG level 5: 2 iterations with rho = 0.458605 AMG level 6: 3 iterations with rho = 0.696293 AMG level 7: 2 iterations with rho = 0.666743 AMG: 1664 rows AMG: preading through rows ... done gs_setup: 431 unique labels shared pairwise times (avg, min, max): 2.78895e-06 2.5582e-06 2.8915e-06 crystal router : 4.09068e-06 3.9897e-06 4.2042e-06 all reduce : 1.05099e-05 9.6558e-06 1.14097e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 3261 2620 3832 buffer bytes (avg, min, max): 1724 1408 2040 gs_setup: 664 unique labels shared pairwise times (avg, min, max): 3.73e-06 3.6492e-06 3.8419e-06 crystal router : 4.80688e-06 4.7581e-06 4.8544e-06 all reduce : 1.91924e-05 1.88961e-05 1.95428e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 5588 3840 7948 buffer bytes (avg, min, max): 3200 2072 4328 gs_setup: 311 unique labels shared pairwise times (avg, min, max): 3.59183e-06 3.4744e-06 3.6762e-06 crystal router : 3.48463e-06 3.4264e-06 3.5338e-06 all reduce : 7.03768e-06 6.9313e-06 7.1389e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 9301 8788 9740 buffer bytes (avg, min, max): 3588 2992 4048 gs_setup: 421 unique labels shared pairwise times (avg, min, max): 4.046e-06 3.8288e-06 4.2149e-06 crystal router : 5.71768e-06 5.6236e-06 5.8628e-06 all reduce : 9.28628e-06 9.1472e-06 9.4127e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 4913 3240 6956 buffer bytes (avg, min, max): 3036 2088 4128 gs_setup: 151 unique labels shared pairwise times (avg, min, max): 2.19068e-06 2.1424e-06 2.242e-06 crystal router : 3.61935e-06 3.5275e-06 3.683e-06 all reduce : 1.15655e-05 1.14062e-05 1.16404e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 1331 940 1700 buffer bytes (avg, min, max): 628 448 808 gs_setup: 194 unique labels shared pairwise times (avg, min, max): 3.61092e-06 3.5012e-06 3.7449e-06 crystal router : 4.24627e-06 4.2222e-06 4.2926e-06 all reduce : 5.85915e-06 5.651e-06 6.022e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 3380 3208 3588 buffer bytes (avg, min, max): 2160 2032 2368 gs_setup: 80 unique labels shared pairwise times (avg, min, max): 2.38705e-06 2.3152e-06 2.4211e-06 crystal router : 2.44917e-06 2.3604e-06 2.5157e-06 all reduce : 3.76915e-06 3.6987e-06 3.8185e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 985 788 1228 buffer bytes (avg, min, max): 452 320 648 gs_setup: 98 unique labels shared pairwise times (avg, min, max): 3.19185e-06 3.1425e-06 3.2323e-06 crystal router : 2.91045e-06 2.8317e-06 3.0279e-06 all reduce : 4.24988e-06 4.1918e-06 4.3256e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 5506 5136 5876 buffer bytes (avg, min, max): 2352 2192 2512 gs_setup: 33 unique labels shared pairwise times (avg, min, max): 2.20093e-06 2.1362e-06 2.3165e-06 crystal router : 3.15857e-06 3.0855e-06 3.2308e-06 all reduce : 4.0025e-06 3.9097e-06 4.0784e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 616 512 788 buffer bytes (avg, min, max): 232 160 376 gs_setup: 39 unique labels shared pairwise times (avg, min, max): 2.55118e-06 2.5145e-06 2.5821e-06 crystal router : 3.45955e-06 3.3809e-06 3.5407e-06 all reduce : 4.61387e-06 4.495e-06 4.7137e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 955 936 972 buffer bytes (avg, min, max): 468 392 536 gs_setup: 8 unique labels shared pairwise times (avg, min, max): 2.7896e-06 2.684e-06 2.8771e-06 crystal router : 3.3584e-06 3.2604e-06 3.4714e-06 all reduce : 3.8325e-06 3.7504e-06 3.9734e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 413 392 424 buffer bytes (avg, min, max): 84 64 96 gs_setup: 8 unique labels shared pairwise times (avg, min, max): 2.76598e-06 2.7364e-06 2.8357e-06 crystal router : 2.47192e-06 2.4054e-06 2.5145e-06 all reduce : 2.75563e-06 2.6928e-06 2.8295e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 916 860 972 buffer bytes (avg, min, max): 192 176 208 gs_setup: 1 unique labels shared pairwise times (avg, min, max): 7.2665e-07 6.456e-07 7.68e-07 crystal router : 2.4244e-06 2.3879e-06 2.4719e-06 all reduce : 2.57698e-06 2.5591e-06 2.5873e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 237 228 264 buffer bytes (avg, min, max): 12 8 24 gs_setup: 1 unique labels shared pairwise times (avg, min, max): 7.836e-07 6.3e-07 8.848e-07 crystal router : 2.57503e-06 2.4694e-06 2.6345e-06 all reduce : 2.86405e-06 2.8357e-06 2.9139e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 237 228 264 buffer bytes (avg, min, max): 12 8 24 gs_setup: 405 unique labels shared pairwise times (avg, min, max): 2.43873e-06 2.2721e-06 2.5217e-06 crystal router : 3.87707e-06 3.8341e-06 3.9225e-06 all reduce : 7.58878e-06 7.5007e-06 7.6681e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 3079 2020 4152 buffer bytes (avg, min, max): 1620 1024 2216 gs_setup: 235 unique labels shared pairwise times (avg, min, max): 3.03253e-06 2.9581e-06 3.1371e-06 crystal router : 4.62493e-06 4.5157e-06 4.7079e-06 all reduce : 6.30792e-06 6.2306e-06 6.4236e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 2456 1268 3872 buffer bytes (avg, min, max): 1368 600 2224 gs_setup: 232 unique labels shared pairwise times (avg, min, max): 3.3132e-06 3.2543e-06 3.3618e-06 crystal router : 3.97125e-06 3.9468e-06 3.9908e-06 all reduce : 9.85658e-06 9.7844e-06 9.8952e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 3335 2484 4152 buffer bytes (avg, min, max): 2076 1568 2664 gs_setup: 96 unique labels shared pairwise times (avg, min, max): 8.03052e-06 7.9335e-06 8.1011e-06 crystal router : 3.56828e-06 3.5204e-06 3.6189e-06 all reduce : 6.4523e-06 6.3963e-06 6.5105e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 5404 5100 5568 buffer bytes (avg, min, max): 2304 2256 2352 gs_setup: 59 unique labels shared pairwise times (avg, min, max): 3.0593e-06 2.967e-06 3.1159e-06 crystal router : 3.37507e-06 3.315e-06 3.443e-06 all reduce : 8.04967e-06 8.032e-06 8.0607e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 1295 1288 1304 buffer bytes (avg, min, max): 708 680 744 gs_setup: 31 unique labels shared pairwise times (avg, min, max): 2.94198e-06 2.8528e-06 2.9872e-06 crystal router : 2.7749e-06 2.6955e-06 2.8159e-06 all reduce : 4.59447e-06 4.5455e-06 4.6566e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 2089 1864 2336 buffer bytes (avg, min, max): 744 640 848 gs_setup: 7 unique labels shared pairwise times (avg, min, max): 2.88287e-06 2.8044e-06 2.9556e-06 crystal router : 2.52328e-06 2.4726e-06 2.5612e-06 all reduce : 2.83837e-06 2.7564e-06 2.9157e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 865 832 888 buffer bytes (avg, min, max): 168 160 176 done :: setup h1 coarse grid 2.36721729199780 sec call usrdat3 done :: usrdat3 set initial conditions Checking restart options: turbChannel0.f00001 nekuic (1) for ifld 1 Reading checkpoint data FILE: turbChannel0.f00001 0 2.0000E+02 done :: Read checkpoint data avg data-throughput = 2.5MBps io-nodes = 4 xyz min 0.0000 -1.0000 0.0000 uvwpt min NaN NaN NaN NaN 0.0000 PS min 0.99000E+22 xyz max 6.2832 1.0000 3.1416 uvwpt max NaN NaN NaN NaN 0.0000 PS max -0.99000E+22 Restart: recompute geom. factors. regenerate geometry data 1 NOTE: All elements deformed , param(59) ^=0 done :: regenerate geometry data 1 done :: set initial conditions call userchk 2.0000E+02 NaN NaN monitor Start collecting statistics ... done :: userchk gridpoints unique/tot: 533120 786432 dofs: 520576 533120 Initial time: 0.2000000E+03 Initialization successfully completed 13.736 sec Starting time loop ... WARNING: DT<0 or DTFS<0 Reset DT WARNING: Set DT=0.001 (arbitrarily) Final time step = 0.000000000000000E+000 HPF : 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.000000 Solving for fluid 1 1.00000E-04 NaN NaN NaN 1 Divergence 2 1.00000E-04 NaN NaN NaN 1 Divergence 3 1.00000E-04 NaN NaN NaN 1 Divergence 4 1.00000E-04 NaN NaN NaN 1 Divergence 5 1.00000E-04 NaN NaN NaN 1 Divergence 6 1.00000E-04 NaN NaN NaN 1 Divergence 7 1.00000E-04 NaN NaN NaN 1 Divergence 8 1.00000E-04 NaN NaN NaN 1 Divergence 9 1.00000E-04 NaN NaN NaN 1 Divergence 10 1.00000E-04 NaN NaN NaN 1 Divergence 11 1.00000E-04 NaN NaN NaN 1 Divergence 12 1.00000E-04 NaN NaN NaN 1 Divergence 13 1.00000E-04 NaN NaN NaN 1 Divergence 14 1.00000E-04 NaN NaN NaN 1 Divergence 15 1.00000E-04 NaN NaN NaN 1 Divergence 16 1.00000E-04 NaN NaN NaN 1 Divergence 17 1.00000E-04 NaN NaN NaN 1 Divergence 18 1.00000E-04 NaN NaN NaN 1 Divergence 19 1.00000E-04 NaN NaN NaN 1 Divergence 20 1.00000E-04 NaN NaN NaN 1 Divergence 21 1.00000E-04 NaN NaN NaN 1 Divergence 22 1.00000E-04 NaN NaN NaN 1 Divergence 23 1.00000E-04 NaN NaN NaN 1 Divergence 24 1.00000E-04 NaN NaN NaN 1 Divergence 25 1.00000E-04 NaN NaN NaN 1 Divergence 26 1.00000E-04 NaN NaN NaN 1 Divergence 27 1.00000E-04 NaN NaN NaN 1 Divergence 28 1.00000E-04 NaN NaN NaN 1 Divergence 29 1.00000E-04 NaN NaN NaN 1 Divergence 30 1.00000E-04 NaN NaN NaN 1 Divergence 31 1.00000E-04 NaN NaN NaN 1 Divergence 32 1.00000E-04 NaN NaN NaN 1 Divergence 33 1.00000E-04 NaN NaN NaN 1 Divergence 34 1.00000E-04 NaN NaN NaN 1 Divergence 35 1.00000E-04 NaN NaN NaN 1 Divergence 36 1.00000E-04 NaN NaN NaN 1 Divergence 37 1.00000E-04 NaN NaN NaN 1 Divergence 38 1.00000E-04 NaN NaN NaN 1 Divergence 39 1.00000E-04 NaN NaN NaN 1 Divergence 40 1.00000E-04 NaN NaN NaN 1 Divergence 41 1.00000E-04 NaN NaN NaN 1 Divergence 42 1.00000E-04 NaN NaN NaN 1 Divergence 43 1.00000E-04 NaN NaN NaN 1 Divergence 44 1.00000E-04 NaN NaN NaN 1 Divergence 45 1.00000E-04 NaN NaN NaN 1 Divergence 46 1.00000E-04 NaN NaN NaN 1 Divergence 47 1.00000E-04 NaN NaN NaN 1 Divergence 48 1.00000E-04 NaN NaN NaN 1 Divergence 49 1.00000E-04 NaN NaN NaN 1 Divergence 50 1.00000E-04 NaN NaN NaN 1 Divergence 51 1.00000E-04 NaN NaN NaN 1 Divergence 52 1.00000E-04 NaN NaN NaN 1 Divergence 53 1.00000E-04 NaN NaN NaN 1 Divergence 54 1.00000E-04 NaN NaN NaN 1 Divergence 55 1.00000E-04 NaN NaN NaN 1 Divergence 56 1.00000E-04 NaN NaN NaN 1 Divergence 57 1.00000E-04 NaN NaN NaN 1 Divergence 58 1.00000E-04 NaN NaN NaN 1 Divergence 59 1.00000E-04 NaN NaN NaN 1 Divergence 60 1.00000E-04 NaN NaN NaN 1 Divergence 61 1.00000E-04 NaN NaN NaN 1 Divergence 62 1.00000E-04 NaN NaN NaN 1 Divergence 63 1.00000E-04 NaN NaN NaN 1 Divergence 64 1.00000E-04 NaN NaN NaN 1 Divergence 65 1.00000E-04 NaN NaN NaN 1 Divergence 66 1.00000E-04 NaN NaN NaN 1 Divergence 67 1.00000E-04 NaN NaN NaN 1 Divergence 68 1.00000E-04 NaN NaN NaN 1 Divergence 69 1.00000E-04 NaN NaN NaN 1 Divergence 70 1.00000E-04 NaN NaN NaN 1 Divergence 71 1.00000E-04 NaN NaN NaN 1 Divergence 72 1.00000E-04 NaN NaN NaN 1 Divergence 73 1.00000E-04 NaN NaN NaN 1 Divergence 74 1.00000E-04 NaN NaN NaN 1 Divergence 75 1.00000E-04 NaN NaN NaN 1 Divergence 76 1.00000E-04 NaN NaN NaN 1 Divergence 77 1.00000E-04 NaN NaN NaN 1 Divergence 78 1.00000E-04 NaN NaN NaN 1 Divergence 79 1.00000E-04 NaN NaN NaN 1 Divergence 80 1.00000E-04 NaN NaN NaN 1 Divergence 81 1.00000E-04 NaN NaN NaN 1 Divergence 82 1.00000E-04 NaN NaN NaN 1 Divergence 83 1.00000E-04 NaN NaN NaN 1 Divergence 84 1.00000E-04 NaN NaN NaN 1 Divergence 85 1.00000E-04 NaN NaN NaN 1 Divergence 86 1.00000E-04 NaN NaN NaN 1 Divergence 87 1.00000E-04 NaN NaN NaN 1 Divergence 88 1.00000E-04 NaN NaN NaN 1 Divergence 89 1.00000E-04 NaN NaN NaN 1 Divergence 90 1.00000E-04 NaN NaN NaN 1 Divergence 91 1.00000E-04 NaN NaN NaN 1 Divergence 92 1.00000E-04 NaN NaN NaN 1 Divergence 93 1.00000E-04 NaN NaN NaN 1 Divergence 94 1.00000E-04 NaN NaN NaN 1 Divergence 95 1.00000E-04 NaN NaN NaN 1 Divergence 96 1.00000E-04 NaN NaN NaN 1 Divergence 97 1.00000E-04 NaN NaN NaN 1 Divergence 98 1.00000E-04 NaN NaN NaN 1 Divergence 99 1.00000E-04 NaN NaN NaN 1 Divergence 100 1.00000E-04 NaN NaN NaN 1 Divergence 101 1.00000E-04 NaN NaN NaN 1 Divergence 102 1.00000E-04 NaN NaN NaN 1 Divergence 103 1.00000E-04 NaN NaN NaN 1 Divergence 104 1.00000E-04 NaN NaN NaN 1 Divergence 105 1.00000E-04 NaN NaN NaN 1 Divergence 106 1.00000E-04 NaN NaN NaN 1 Divergence 107 1.00000E-04 NaN NaN NaN 1 Divergence 108 1.00000E-04 NaN NaN NaN 1 Divergence 109 1.00000E-04 NaN NaN NaN 1 Divergence 110 1.00000E-04 NaN NaN NaN 1 Divergence 111 1.00000E-04 NaN NaN NaN 1 Divergence 112 1.00000E-04 NaN NaN NaN 1 Divergence 113 1.00000E-04 NaN NaN NaN 1 Divergence 114 1.00000E-04 NaN NaN NaN 1 Divergence 115 1.00000E-04 NaN NaN NaN 1 Divergence 116 1.00000E-04 NaN NaN NaN 1 Divergence 117 1.00000E-04 NaN NaN NaN 1 Divergence 118 1.00000E-04 NaN NaN NaN 1 Divergence 119 1.00000E-04 NaN NaN NaN 1 Divergence 120 1.00000E-04 NaN NaN NaN 1 Divergence 121 1.00000E-04 NaN NaN NaN 1 Divergence 122 1.00000E-04 NaN NaN NaN 1 Divergence 123 1.00000E-04 NaN NaN NaN 1 Divergence 124 1.00000E-04 NaN NaN NaN 1 Divergence 125 1.00000E-04 NaN NaN NaN 1 Divergence 126 1.00000E-04 NaN NaN NaN 1 Divergence 127 1.00000E-04 NaN NaN NaN 1 Divergence 128 1.00000E-04 NaN NaN NaN 1 Divergence 129 1.00000E-04 NaN NaN NaN 1 Divergence 130 1.00000E-04 NaN NaN NaN 1 Divergence 131 1.00000E-04 NaN NaN NaN 1 Divergence 132 1.00000E-04 NaN NaN NaN 1 Divergence 133 1.00000E-04 NaN NaN NaN 1 Divergence 134 1.00000E-04 NaN NaN NaN 1 Divergence 135 1.00000E-04 NaN NaN NaN 1 Divergence 136 1.00000E-04 NaN NaN NaN 1 Divergence 137 1.00000E-04 NaN NaN NaN 1 Divergence 138 1.00000E-04 NaN NaN NaN 1 Divergence 139 1.00000E-04 NaN NaN NaN 1 Divergence 140 1.00000E-04 NaN NaN NaN 1 Divergence 141 1.00000E-04 NaN NaN NaN 1 Divergence 142 1.00000E-04 NaN NaN NaN 1 Divergence 143 1.00000E-04 NaN NaN NaN 1 Divergence 144 1.00000E-04 NaN NaN NaN 1 Divergence 145 1.00000E-04 NaN NaN NaN 1 Divergence 146 1.00000E-04 NaN NaN NaN 1 Divergence 147 1.00000E-04 NaN NaN NaN 1 Divergence 148 1.00000E-04 NaN NaN NaN 1 Divergence 149 1.00000E-04 NaN NaN NaN 1 Divergence 150 1.00000E-04 NaN NaN NaN 1 Divergence 151 1.00000E-04 NaN NaN NaN 1 Divergence 152 1.00000E-04 NaN NaN NaN 1 Divergence 153 1.00000E-04 NaN NaN NaN 1 Divergence 154 1.00000E-04 NaN NaN NaN 1 Divergence 155 1.00000E-04 NaN NaN NaN 1 Divergence 156 1.00000E-04 NaN NaN NaN 1 Divergence 157 1.00000E-04 NaN NaN NaN 1 Divergence 158 1.00000E-04 NaN NaN NaN 1 Divergence 159 1.00000E-04 NaN NaN NaN 1 Divergence 160 1.00000E-04 NaN NaN NaN 1 Divergence 161 1.00000E-04 NaN NaN NaN 1 Divergence 162 1.00000E-04 NaN NaN NaN 1 Divergence 163 1.00000E-04 NaN NaN NaN 1 Divergence 164 1.00000E-04 NaN NaN NaN 1 Divergence 165 1.00000E-04 NaN NaN NaN 1 Divergence 166 1.00000E-04 NaN NaN NaN 1 Divergence 167 1.00000E-04 NaN NaN NaN 1 Divergence 168 1.00000E-04 NaN NaN NaN 1 Divergence 169 1.00000E-04 NaN NaN NaN 1 Divergence 170 1.00000E-04 NaN NaN NaN 1 Divergence 171 1.00000E-04 NaN NaN NaN 1 Divergence 172 1.00000E-04 NaN NaN NaN 1 Divergence 173 1.00000E-04 NaN NaN NaN 1 Divergence 174 1.00000E-04 NaN NaN NaN 1 Divergence 175 1.00000E-04 NaN NaN NaN 1 Divergence 176 1.00000E-04 NaN NaN NaN 1 Divergence 177 1.00000E-04 NaN NaN NaN 1 Divergence 178 1.00000E-04 NaN NaN NaN 1 Divergence 179 1.00000E-04 NaN NaN NaN 1 Divergence 180 1.00000E-04 NaN NaN NaN 1 Divergence 181 1.00000E-04 NaN NaN NaN 1 Divergence 182 1.00000E-04 NaN NaN NaN 1 Divergence 183 1.00000E-04 NaN NaN NaN 1 Divergence 184 1.00000E-04 NaN NaN NaN 1 Divergence 185 1.00000E-04 NaN NaN NaN 1 Divergence 186 1.00000E-04 NaN NaN NaN 1 Divergence 187 1.00000E-04 NaN NaN NaN 1 Divergence 188 1.00000E-04 NaN NaN NaN 1 Divergence 189 1.00000E-04 NaN NaN NaN 1 Divergence 190 1.00000E-04 NaN NaN NaN 1 Divergence 191 1.00000E-04 NaN NaN NaN 1 Divergence 192 1.00000E-04 NaN NaN NaN 1 Divergence 193 1.00000E-04 NaN NaN NaN 1 Divergence 194 1.00000E-04 NaN NaN NaN 1 Divergence 195 1.00000E-04 NaN NaN NaN 1 Divergence 196 1.00000E-04 NaN NaN NaN 1 Divergence 197 1.00000E-04 NaN NaN NaN 1 Divergence 198 1.00000E-04 NaN NaN NaN 1 Divergence 199 1.00000E-04 NaN NaN NaN 1 Divergence 200 1.00000E-04 NaN NaN NaN 1 Divergence 201 1.00000E-04 NaN NaN NaN 1 Divergence 202 1.00000E-04 NaN NaN NaN 1 Divergence 203 1.00000E-04 NaN NaN NaN 1 Divergence 204 1.00000E-04 NaN NaN NaN 1 Divergence 205 1.00000E-04 NaN NaN NaN 1 Divergence 206 1.00000E-04 NaN NaN NaN 1 Divergence 207 1.00000E-04 NaN NaN NaN 1 Divergence 208 1.00000E-04 NaN NaN NaN 1 Divergence 209 1.00000E-04 NaN NaN NaN 1 Divergence 210 1.00000E-04 NaN NaN NaN 1 Divergence 211 1.00000E-04 NaN NaN NaN 1 Divergence 212 1.00000E-04 NaN NaN NaN 1 Divergence 213 1.00000E-04 NaN NaN NaN 1 Divergence 214 1.00000E-04 NaN NaN NaN 1 Divergence 215 1.00000E-04 NaN NaN NaN 1 Divergence 216 1.00000E-04 NaN NaN NaN 1 Divergence 217 1.00000E-04 NaN NaN NaN 1 Divergence 218 1.00000E-04 NaN NaN NaN 1 Divergence 219 1.00000E-04 NaN NaN NaN 1 Divergence 220 1.00000E-04 NaN NaN NaN 1 Divergence 221 1.00000E-04 NaN NaN NaN 1 Divergence 222 1.00000E-04 NaN NaN NaN 1 Divergence 223 1.00000E-04 NaN NaN NaN 1 Divergence 224 1.00000E-04 NaN NaN NaN 1 Divergence 225 1.00000E-04 NaN NaN NaN 1 Divergence 226 1.00000E-04 NaN NaN NaN 1 Divergence 227 1.00000E-04 NaN NaN NaN 1 Divergence 228 1.00000E-04 NaN NaN NaN 1 Divergence 229 1.00000E-04 NaN NaN NaN 1 Divergence 230 1.00000E-04 NaN NaN NaN 1 Divergence 231 1.00000E-04 NaN NaN NaN 1 Divergence 232 1.00000E-04 NaN NaN NaN 1 Divergence 233 1.00000E-04 NaN NaN NaN 1 Divergence 234 1.00000E-04 NaN NaN NaN 1 Divergence 235 1.00000E-04 NaN NaN NaN 1 Divergence 236 1.00000E-04 NaN NaN NaN 1 Divergence 237 1.00000E-04 NaN NaN NaN 1 Divergence 238 1.00000E-04 NaN NaN NaN 1 Divergence 239 1.00000E-04 NaN NaN NaN 1 Divergence 240 1.00000E-04 NaN NaN NaN 1 Divergence 241 1.00000E-04 NaN NaN NaN 1 Divergence 242 1.00000E-04 NaN NaN NaN 1 Divergence 243 1.00000E-04 NaN NaN NaN 1 Divergence 244 1.00000E-04 NaN NaN NaN 1 Divergence 245 1.00000E-04 NaN NaN NaN 1 Divergence 246 1.00000E-04 NaN NaN NaN 1 Divergence 247 1.00000E-04 NaN NaN NaN 1 Divergence 248 1.00000E-04 NaN NaN NaN 1 Divergence 249 1.00000E-04 NaN NaN NaN 1 Divergence 250 1.00000E-04 NaN NaN NaN 1 Divergence 251 1.00000E-04 NaN NaN NaN 1 Divergence 252 1.00000E-04 NaN NaN NaN 1 Divergence 253 1.00000E-04 NaN NaN NaN 1 Divergence 254 1.00000E-04 NaN NaN NaN 1 Divergence 255 1.00000E-04 NaN NaN NaN 1 Divergence 256 1.00000E-04 NaN NaN NaN 1 Divergence 257 1.00000E-04 NaN NaN NaN 1 Divergence 258 1.00000E-04 NaN NaN NaN 1 Divergence 259 1.00000E-04 NaN NaN NaN 1 Divergence 260 1.00000E-04 NaN NaN NaN 1 Divergence 261 1.00000E-04 NaN NaN NaN 1 Divergence 262 1.00000E-04 NaN NaN NaN 1 Divergence 263 1.00000E-04 NaN NaN NaN 1 Divergence 264 1.00000E-04 NaN NaN NaN 1 Divergence 265 1.00000E-04 NaN NaN NaN 1 Divergence 266 1.00000E-04 NaN NaN NaN 1 Divergence 267 1.00000E-04 NaN NaN NaN 1 Divergence 268 1.00000E-04 NaN NaN NaN 1 Divergence 269 1.00000E-04 NaN NaN NaN 1 Divergence 270 1.00000E-04 NaN NaN NaN 1 Divergence 271 1.00000E-04 NaN NaN NaN 1 Divergence 272 1.00000E-04 NaN NaN NaN 1 Divergence 273 1.00000E-04 NaN NaN NaN 1 Divergence 274 1.00000E-04 NaN NaN NaN 1 Divergence 275 1.00000E-04 NaN NaN NaN 1 Divergence 276 1.00000E-04 NaN NaN NaN 1 Divergence 277 1.00000E-04 NaN NaN NaN 1 Divergence 278 1.00000E-04 NaN NaN NaN 1 Divergence 279 1.00000E-04 NaN NaN NaN 1 Divergence 280 1.00000E-04 NaN NaN NaN 1 Divergence 281 1.00000E-04 NaN NaN NaN 1 Divergence 282 1.00000E-04 NaN NaN NaN 1 Divergence 283 1.00000E-04 NaN NaN NaN 1 Divergence 284 1.00000E-04 NaN NaN NaN 1 Divergence 285 1.00000E-04 NaN NaN NaN 1 Divergence 286 1.00000E-04 NaN NaN NaN 1 Divergence 287 1.00000E-04 NaN NaN NaN 1 Divergence 288 1.00000E-04 NaN NaN NaN 1 Divergence 289 1.00000E-04 NaN NaN NaN 1 Divergence 290 1.00000E-04 NaN NaN NaN 1 Divergence 291 1.00000E-04 NaN NaN NaN 1 Divergence 292 1.00000E-04 NaN NaN NaN 1 Divergence 293 1.00000E-04 NaN NaN NaN 1 Divergence 294 1.00000E-04 NaN NaN NaN 1 Divergence 295 1.00000E-04 NaN NaN NaN 1 Divergence 296 1.00000E-04 NaN NaN NaN 1 Divergence 297 1.00000E-04 NaN NaN NaN 1 Divergence 298 1.00000E-04 NaN NaN NaN 1 Divergence 299 1.00000E-04 NaN NaN NaN 1 Divergence 300 1.00000E-04 NaN NaN NaN 1 Divergence 301 1.00000E-04 NaN NaN NaN 1 Divergence 302 1.00000E-04 NaN NaN NaN 1 Divergence 303 1.00000E-04 NaN NaN NaN 1 Divergence 304 1.00000E-04 NaN NaN NaN 1 Divergence 305 1.00000E-04 NaN NaN NaN 1 Divergence 306 1.00000E-04 NaN NaN NaN 1 Divergence 307 1.00000E-04 NaN NaN NaN 1 Divergence 308 1.00000E-04 NaN NaN NaN 1 Divergence 309 1.00000E-04 NaN NaN NaN 1 Divergence 310 1.00000E-04 NaN NaN NaN 1 Divergence 311 1.00000E-04 NaN NaN NaN 1 Divergence 312 1.00000E-04 NaN NaN NaN 1 Divergence 313 1.00000E-04 NaN NaN NaN 1 Divergence 314 1.00000E-04 NaN NaN NaN 1 Divergence 315 1.00000E-04 NaN NaN NaN 1 Divergence 316 1.00000E-04 NaN NaN NaN 1 Divergence 317 1.00000E-04 NaN NaN NaN 1 Divergence 318 1.00000E-04 NaN NaN NaN 1 Divergence 319 1.00000E-04 NaN NaN NaN 1 Divergence 320 1.00000E-04 NaN NaN NaN 1 Divergence 321 1.00000E-04 NaN NaN NaN 1 Divergence 322 1.00000E-04 NaN NaN NaN 1 Divergence 323 1.00000E-04 NaN NaN NaN 1 Divergence 324 1.00000E-04 NaN NaN NaN 1 Divergence 325 1.00000E-04 NaN NaN NaN 1 Divergence 326 1.00000E-04 NaN NaN NaN 1 Divergence 327 1.00000E-04 NaN NaN NaN 1 Divergence 328 1.00000E-04 NaN NaN NaN 1 Divergence 329 1.00000E-04 NaN NaN NaN 1 Divergence 330 1.00000E-04 NaN NaN NaN 1 Divergence 331 1.00000E-04 NaN NaN NaN 1 Divergence 332 1.00000E-04 NaN NaN NaN 1 Divergence 333 1.00000E-04 NaN NaN NaN 1 Divergence 334 1.00000E-04 NaN NaN NaN 1 Divergence 335 1.00000E-04 NaN NaN NaN 1 Divergence 336 1.00000E-04 NaN NaN NaN 1 Divergence 337 1.00000E-04 NaN NaN NaN 1 Divergence 338 1.00000E-04 NaN NaN NaN 1 Divergence 339 1.00000E-04 NaN NaN NaN 1 Divergence 340 1.00000E-04 NaN NaN NaN 1 Divergence 341 1.00000E-04 NaN NaN NaN 1 Divergence 342 1.00000E-04 NaN NaN NaN 1 Divergence 343 1.00000E-04 NaN NaN NaN 1 Divergence 344 1.00000E-04 NaN NaN NaN 1 Divergence 345 1.00000E-04 NaN NaN NaN 1 Divergence 346 1.00000E-04 NaN NaN NaN 1 Divergence 347 1.00000E-04 NaN NaN NaN 1 Divergence 348 1.00000E-04 NaN NaN NaN 1 Divergence 349 1.00000E-04 NaN NaN NaN 1 Divergence 350 1.00000E-04 NaN NaN NaN 1 Divergence 351 1.00000E-04 NaN NaN NaN 1 Divergence 352 1.00000E-04 NaN NaN NaN 1 Divergence 353 1.00000E-04 NaN NaN NaN 1 Divergence 354 1.00000E-04 NaN NaN NaN 1 Divergence 355 1.00000E-04 NaN NaN NaN 1 Divergence 356 1.00000E-04 NaN NaN NaN 1 Divergence 357 1.00000E-04 NaN NaN NaN 1 Divergence 358 1.00000E-04 NaN NaN NaN 1 Divergence 359 1.00000E-04 NaN NaN NaN 1 Divergence 360 1.00000E-04 NaN NaN NaN 1 Divergence 361 1.00000E-04 NaN NaN NaN 1 Divergence 362 1.00000E-04 NaN NaN NaN 1 Divergence 363 1.00000E-04 NaN NaN NaN 1 Divergence 364 1.00000E-04 NaN NaN NaN 1 Divergence 365 1.00000E-04 NaN NaN NaN 1 Divergence 366 1.00000E-04 NaN NaN NaN 1 Divergence 367 1.00000E-04 NaN NaN NaN 1 Divergence 368 1.00000E-04 NaN NaN NaN 1 Divergence 369 1.00000E-04 NaN NaN NaN 1 Divergence 370 1.00000E-04 NaN NaN NaN 1 Divergence 371 1.00000E-04 NaN NaN NaN 1 Divergence 372 1.00000E-04 NaN NaN NaN 1 Divergence 373 1.00000E-04 NaN NaN NaN 1 Divergence 374 1.00000E-04 NaN NaN NaN 1 Divergence 375 1.00000E-04 NaN NaN NaN 1 Divergence 376 1.00000E-04 NaN NaN NaN 1 Divergence 377 1.00000E-04 NaN NaN NaN 1 Divergence 378 1.00000E-04 NaN NaN NaN 1 Divergence 379 1.00000E-04 NaN NaN NaN 1 Divergence 380 1.00000E-04 NaN NaN NaN 1 Divergence 381 1.00000E-04 NaN NaN NaN 1 Divergence 382 1.00000E-04 NaN NaN NaN 1 Divergence 383 1.00000E-04 NaN NaN NaN 1 Divergence 384 1.00000E-04 NaN NaN NaN 1 Divergence 385 1.00000E-04 NaN NaN NaN 1 Divergence 386 1.00000E-04 NaN NaN NaN 1 Divergence 387 1.00000E-04 NaN NaN NaN 1 Divergence 388 1.00000E-04 NaN NaN NaN 1 Divergence 389 1.00000E-04 NaN NaN NaN 1 Divergence 390 1.00000E-04 NaN NaN NaN 1 Divergence 391 1.00000E-04 NaN NaN NaN 1 Divergence 392 1.00000E-04 NaN NaN NaN 1 Divergence 393 1.00000E-04 NaN NaN NaN 1 Divergence 394 1.00000E-04 NaN NaN NaN 1 Divergence 395 1.00000E-04 NaN NaN NaN 1 Divergence 396 1.00000E-04 NaN NaN NaN 1 Divergence 397 1.00000E-04 NaN NaN NaN 1 Divergence 398 1.00000E-04 NaN NaN NaN 1 Divergence 399 1.00000E-04 NaN NaN NaN 1 Divergence 400 1.00000E-04 NaN NaN NaN 1 Divergence 401 1.00000E-04 NaN NaN NaN 1 Divergence 402 1.00000E-04 NaN NaN NaN 1 Divergence 403 1.00000E-04 NaN NaN NaN 1 Divergence 404 1.00000E-04 NaN NaN NaN 1 Divergence 405 1.00000E-04 NaN NaN NaN 1 Divergence 406 1.00000E-04 NaN NaN NaN 1 Divergence 407 1.00000E-04 NaN NaN NaN 1 Divergence 408 1.00000E-04 NaN NaN NaN 1 Divergence 409 1.00000E-04 NaN NaN NaN 1 Divergence 410 1.00000E-04 NaN NaN NaN 1 Divergence 411 1.00000E-04 NaN NaN NaN 1 Divergence 412 1.00000E-04 NaN NaN NaN 1 Divergence 413 1.00000E-04 NaN NaN NaN 1 Divergence 414 1.00000E-04 NaN NaN NaN 1 Divergence 415 1.00000E-04 NaN NaN NaN 1 Divergence 416 1.00000E-04 NaN NaN NaN 1 Divergence 417 1.00000E-04 NaN NaN NaN 1 Divergence 418 1.00000E-04 NaN NaN NaN 1 Divergence 419 1.00000E-04 NaN NaN NaN 1 Divergence 420 1.00000E-04 NaN NaN NaN 1 Divergence 421 1.00000E-04 NaN NaN NaN 1 Divergence 422 1.00000E-04 NaN NaN NaN 1 Divergence 423 1.00000E-04 NaN NaN NaN 1 Divergence 424 1.00000E-04 NaN NaN NaN 1 Divergence 425 1.00000E-04 NaN NaN NaN 1 Divergence 426 1.00000E-04 NaN NaN NaN 1 Divergence 427 1.00000E-04 NaN NaN NaN 1 Divergence 428 1.00000E-04 NaN NaN NaN 1 Divergence 429 1.00000E-04 NaN NaN NaN 1 Divergence 430 1.00000E-04 NaN NaN NaN 1 Divergence 431 1.00000E-04 NaN NaN NaN 1 Divergence 432 1.00000E-04 NaN NaN NaN 1 Divergence 433 1.00000E-04 NaN NaN NaN 1 Divergence 434 1.00000E-04 NaN NaN NaN 1 Divergence 435 1.00000E-04 NaN NaN NaN 1 Divergence 436 1.00000E-04 NaN NaN NaN 1 Divergence 437 1.00000E-04 NaN NaN NaN 1 Divergence 438 1.00000E-04 NaN NaN NaN 1 Divergence 439 1.00000E-04 NaN NaN NaN 1 Divergence 440 1.00000E-04 NaN NaN NaN 1 Divergence 441 1.00000E-04 NaN NaN NaN 1 Divergence 442 1.00000E-04 NaN NaN NaN 1 Divergence 443 1.00000E-04 NaN NaN NaN 1 Divergence 444 1.00000E-04 NaN NaN NaN 1 Divergence 445 1.00000E-04 NaN NaN NaN 1 Divergence 446 1.00000E-04 NaN NaN NaN 1 Divergence 447 1.00000E-04 NaN NaN NaN 1 Divergence 448 1.00000E-04 NaN NaN NaN 1 Divergence 449 1.00000E-04 NaN NaN NaN 1 Divergence 450 1.00000E-04 NaN NaN NaN 1 Divergence 451 1.00000E-04 NaN NaN NaN 1 Divergence 452 1.00000E-04 NaN NaN NaN 1 Divergence 453 1.00000E-04 NaN NaN NaN 1 Divergence 454 1.00000E-04 NaN NaN NaN 1 Divergence 455 1.00000E-04 NaN NaN NaN 1 Divergence 456 1.00000E-04 NaN NaN NaN 1 Divergence 457 1.00000E-04 NaN NaN NaN 1 Divergence 458 1.00000E-04 NaN NaN NaN 1 Divergence 459 1.00000E-04 NaN NaN NaN 1 Divergence 460 1.00000E-04 NaN NaN NaN 1 Divergence 461 1.00000E-04 NaN NaN NaN 1 Divergence 462 1.00000E-04 NaN NaN NaN 1 Divergence 463 1.00000E-04 NaN NaN NaN 1 Divergence 464 1.00000E-04 NaN NaN NaN 1 Divergence 465 1.00000E-04 NaN NaN NaN 1 Divergence 466 1.00000E-04 NaN NaN NaN 1 Divergence 467 1.00000E-04 NaN NaN NaN 1 Divergence 468 1.00000E-04 NaN NaN NaN 1 Divergence 469 1.00000E-04 NaN NaN NaN 1 Divergence 470 1.00000E-04 NaN NaN NaN 1 Divergence 471 1.00000E-04 NaN NaN NaN 1 Divergence 472 1.00000E-04 NaN NaN NaN 1 Divergence 473 1.00000E-04 NaN NaN NaN 1 Divergence 474 1.00000E-04 NaN NaN NaN 1 Divergence 475 1.00000E-04 NaN NaN NaN 1 Divergence 476 1.00000E-04 NaN NaN NaN 1 Divergence 477 1.00000E-04 NaN NaN NaN 1 Divergence 478 1.00000E-04 NaN NaN NaN 1 Divergence 479 1.00000E-04 NaN NaN NaN 1 Divergence 480 1.00000E-04 NaN NaN NaN 1 Divergence 481 1.00000E-04 NaN NaN NaN 1 Divergence 482 1.00000E-04 NaN NaN NaN 1 Divergence 483 1.00000E-04 NaN NaN NaN 1 Divergence 484 1.00000E-04 NaN NaN NaN 1 Divergence 485 1.00000E-04 NaN NaN NaN 1 Divergence 486 1.00000E-04 NaN NaN NaN 1 Divergence 487 1.00000E-04 NaN NaN NaN 1 Divergence 488 1.00000E-04 NaN NaN NaN 1 Divergence 489 1.00000E-04 NaN NaN NaN 1 Divergence 490 1.00000E-04 NaN NaN NaN 1 Divergence 491 1.00000E-04 NaN NaN NaN 1 Divergence 492 1.00000E-04 NaN NaN NaN 1 Divergence 493 1.00000E-04 NaN NaN NaN 1 Divergence 494 1.00000E-04 NaN NaN NaN 1 Divergence 495 1.00000E-04 NaN NaN NaN 1 Divergence 496 1.00000E-04 NaN NaN NaN 1 Divergence 497 1.00000E-04 NaN NaN NaN 1 Divergence 498 1.00000E-04 NaN NaN NaN 1 Divergence 499 1.00000E-04 NaN NaN NaN 1 Divergence 500 1.00000E-04 NaN NaN NaN 1 Divergence 1 PRES gmres 500 NaN NaN 1.0000E-04 1.3084E+01 2.1669E+01 F 1 Hmholtz VELX 1 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 2 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 3 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 4 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 5 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 6 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 7 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 8 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 9 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 10 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 11 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 12 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 13 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 14 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 15 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 16 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 17 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 18 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 19 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 20 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 21 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 22 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 23 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 24 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 25 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 26 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 27 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 28 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 29 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 30 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 31 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 32 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 33 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 34 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 35 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 36 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 37 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 38 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 39 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 40 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 41 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 42 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 43 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 44 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 45 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 46 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 47 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 48 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 49 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 50 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 51 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 52 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 53 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 54 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 55 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 56 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 57 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 58 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 59 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 60 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 61 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 62 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 63 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 64 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 65 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 66 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 67 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 68 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 69 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 70 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 71 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 72 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 73 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 74 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 75 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 76 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 77 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 78 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 79 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 80 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 81 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 82 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 83 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 84 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 85 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 86 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 87 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 88 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 89 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 90 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 91 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 92 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 93 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 94 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 95 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 96 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 97 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 98 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 99 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 100 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Error Hmholtz VELX 100 NaN NaN 1.0000E-07 1 Hmholtz VELY 1 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 2 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 3 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 4 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 5 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 6 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 7 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 8 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 9 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 10 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 11 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 12 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 13 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 14 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 15 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 16 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 17 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 18 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 19 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 20 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 21 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 22 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 23 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 24 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 25 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 26 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 27 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 28 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 29 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 30 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 31 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 32 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 33 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 34 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 35 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 36 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 37 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 38 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 39 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 40 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 41 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 42 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 43 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 44 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 45 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 46 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 47 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 48 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 49 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 50 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 51 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 52 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 53 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 54 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 55 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 56 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 57 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 58 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 59 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 60 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 61 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 62 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 63 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 64 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 65 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 66 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 67 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 68 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 69 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 70 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 71 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 72 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 73 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 74 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 75 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 76 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 77 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 78 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 79 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 80 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 81 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 82 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 83 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 84 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 85 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 86 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 87 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 88 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 89 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 90 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 91 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 92 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 93 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 94 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 95 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 96 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 97 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 98 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 99 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 100 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Error Hmholtz VELY 100 NaN NaN 1.0000E-07 1 Hmholtz VELZ 1 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 2 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 3 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 4 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 5 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 6 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 7 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 8 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 9 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 10 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 11 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 12 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 13 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 14 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 15 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 16 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 17 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 18 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 19 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 20 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 21 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 22 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 23 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 24 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 25 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 26 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 27 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 28 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 29 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 30 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 31 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 32 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 33 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 34 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 35 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 36 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 37 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 38 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 39 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 40 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 41 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 42 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 43 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 44 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 45 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 46 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 47 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 48 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 49 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 50 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 51 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 52 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 53 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 54 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 55 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 56 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 57 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 58 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 59 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 60 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 61 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 62 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 63 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 64 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 65 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 66 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 67 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 68 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 69 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 70 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 71 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 72 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 73 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 74 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 75 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 76 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 77 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 78 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 79 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 80 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 81 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 82 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 83 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 84 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 85 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 86 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 87 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 88 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 89 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 90 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 91 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 92 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 93 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 94 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 95 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 96 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 97 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 98 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 99 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 100 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Error Hmholtz VELZ 100 NaN NaN 1.0000E-07 1 1.00000E-04 1.04290E-15 1.48092E-15 7.04224E-01 1 Divergence 1 PRES gmres 1 1.0429E-15 1.4809E-15 1.0000E-04 2.3331E-02 5.0854E-02 F 1 Hmholtz VELX 1 9.9982E-01 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 2 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 3 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 4 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 5 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 6 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 7 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 8 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 9 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 10 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 11 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 12 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 13 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 14 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 15 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 16 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 17 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 18 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 19 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 20 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 21 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 22 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 23 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 24 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 25 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 26 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 27 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 28 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 29 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 30 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 31 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 32 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 33 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 34 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 35 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 36 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 37 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 38 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 39 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 40 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 41 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 42 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 43 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 44 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 45 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 46 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 47 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 48 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 49 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 50 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 51 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 52 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 53 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 54 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 55 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 56 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 57 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 58 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 59 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 60 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 61 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 62 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 63 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 64 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 65 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 66 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 67 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 68 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 69 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 70 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 71 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 72 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 73 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 74 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 75 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 76 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 77 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 78 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 79 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 80 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 81 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 82 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 83 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 84 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 85 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 86 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 87 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 88 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 89 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 90 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 91 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 92 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 93 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 94 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 95 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 96 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 97 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 98 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 99 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 100 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Error Hmholtz VELX 100 NaN 9.9982E-01 1.0000E-07 1 Hmholtz VELY 1 8.0937E-16 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 0 8.0937E-16 8.0937E-16 1.0000E-07 1 Hmholtz VELZ 1 7.1883E-16 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 0 7.1883E-16 7.1883E-16 1.0000E-07 1 volflow X NaN NaN NaN 6.2832E+00 L1/L2 DIV(V) NaN NaN L1/L2 QTL 0.0000E+00 0.0000E+00 L1/L2 DIV(V)-QTL NaN NaN 1 Fluid done 2.0000E+02 2.6895E+01 2.0000E+02 NaN NaN monitor filt amp 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.5000 filt trn 1.0000 1.0000 1.0000 1.0000 1.0000 1.0000 1.0000 0.5000 1 sfilt: NaN vortx 1 2.0000E+02 Write checkpoint FILE: /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel0.f00001 1 2.0000E+02 done :: Write checkpoint file size = 21. MB avg data-throughput = 11.3MB/s io-nodes = 4 end of time-step loop runtime statistics: init time 13.7358070529990 0.462004458987539 prep time 1 1.87108852800156 6.293414284007534E-002 pres time 1 21.7905451879997 0.732925921409712 crsl time 501 0.183691413072665 6.178468552291153E-003 crsl min 0.183063570999366 crsl max 0.260289230038325 crsl avg 0.221352905275126 hmhz time 6 4.94836180700077 0.166438361480831 eslv time 0 0.000000000000000E+000 0.000000000000000E+000 proj time 0 0.000000000000000E+000 0.000000000000000E+000 usvp time 2 8.829280013742391E-004 2.969732117129529E-005 usfq time 0 1.237174799825880E-002 4.161242742134884E-004 usbc time 1 2.739972998824669E-003 9.215910925933331E-005 usbc min 2.302368000528077E-003 usbc max 1.831457500156830E-002 usb avg 6.439937250434014E-003 mltd time 3 1.305026299814926E-002 4.389461553180925E-004 cdtp time 4 1.176028400368523E-002 3.955576565467353E-004 axhm time 945 6.36171776202173 0.213976649608845 advc time 1 0.178863899000135 6.016094909539131E-003 mxmf time 0.000000000000000E+000 0.000000000000000E+000 adc3 time 0.000000000000000E+000 0.000000000000000E+000 col2 time 0.000000000000000E+000 0.000000000000000E+000 col3 time 0.000000000000000E+000 0.000000000000000E+000 a2s2 time 0.000000000000000E+000 0.000000000000000E+000 add2 time 0.000000000000000E+000 0.000000000000000E+000 invc time 0.000000000000000E+000 0.000000000000000E+000 tgop time 2480 1.02037628088146 3.432039994398663E-002 dadd time 0 3.58888928988017 0.120712445096209 vdss time 4 6.298328000411857E-003 2.118445322600121E-004 vdss min 6.298328000411857E-003 vdss max 2.789256400137674E-002 vdss avg 2.080069274961716E-002 dsum time 1463 1.95680818695473 6.581732724317946E-002 dsum min 1.52674149705126 dsum max 2.28399024302780 dsum avg 1.90933237102490 ddsl time 0 0.000000000000000E+000 0.000000000000000E+000 # nid tusbc tdadd tcrsl tvdss tdsum tgop qqq F 0 2.7400E-03 3.5889E+00 1.8369E-01 6.2983E-03 1.9568E+00 1.0204E+00 qqq 1 2.3024E-03 3.7084E+00 2.5837E-01 2.7040E-02 1.8698E+00 1.7594E+00 qqq 2 1.8315E-02 3.7437E+00 2.6029E-01 2.1972E-02 1.5267E+00 1.9577E+00 qqq 3 2.4028E-03 3.6736E+00 1.8306E-01 2.7893E-02 2.2840E+00 1.0771E+00 qqq run successful: dying ... total elapsed time : 4.35605E+01 sec total solver time w/o IO : 2.78598E+01 sec time/timestep : 2.78598E+01 sec avg throughput per timestep : 4.78395E+03 gridpts/CPUs total max memory usage : 2.00808E+00 GB -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Tue Jan 23 06:23:59 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Tue, 23 Jan 2018 13:23:59 +0100 Subject: [Nek5000-users] Example turbChannel restart issue Message-ID: Looks like the data in your restart file is messed up. Can you please double check with VisIt. Note, .re2 is a binary not an ASCII file. What makes you thinking that the format of other .re2 files is different? -----Original message----- > From:nek5000-users at lists.mcs.anl.gov > Sent: Tuesday 23rd January 2018 1:24 > To: nek5000-users at lists.mcs.anl.gov > Subject: Re: [Nek5000-users] Example turbChannel restart issue > > Dear Nek team, > Currently I am working on the example turbChannel (NEK5000 v17.0) and have successfully generated some statistics results using the default settings. Now I would like to restart from where I stopped so this is what I did: In the .par file, > I activated the line startFrom = turbChannel0.f00001, where turbChannel0.f00001 is one of two files generated from the previous simulation. However, this did not work and produced error, > i.e. NAN. I also tried to use another file, turbChannel0.f00002 and I got the same error message. The complete logfile is at the end of this email. I am wondering is there anything else I need to modify other than what I did? Or the way I did was not correct? > Another thing I got to mention is that, in the latest version of turbChannel (Nek5000 v17.0), the file .re2 is not readable; more specifically, it does not retain the same format as other .re2 or .rea files in other examples, and looks > messy and contains unreadable characters. So the Reynolds number in my case was changed in the .par file. > Thank you for your time and help! > Regards, > Ming > *****************Complete Logfile***************************** > Number of processors:?????????? ????? 4 > REAL??? wdsize????? ????:?????????? ????????? 8 > INTEGER wdsize????? :????????? ??????????? 4 > Timer accuracy???? ???: ????????????????????? 9.40E-07 > ?Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.par???????????????????????? ??????????????????????????????????????????????? > general = [(null)] > general:startfrom = [turbChannel0.f00001] > general:stopat = [endTime] > general:endtime = [200] > general:dt = [0] > general:timestepper = [bdf2] > general:extrapolation = [OIFS] > general:variabledt = [yes] > general:targetcfl = [2.0] > general:writecontrol = [runTime] > general:writeinterval = [100.0] > general:userparam01 = [100] > general:userparam02 = [20] > general:userparam03 = [1] > general:filtering = [hpfrt] > general:filterweight = [10] > general:filtercutoffratio = [0.9] > problemtype = [(null)] > problemtype:variableproperties = [no] > problemtype:equation = [incompNS] > pressure = [(null)] > pressure:preconditioner = [semg_amg] > pressure:residualtol = [1e-04] > pressure:residualproj = [yes] > velocity = [(null)] > velocity:residualtol = [1e-07] > velocity:density = [1] > velocity:viscosity = [-2950] > Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.re2??????????????????????????????????????????????????????????????????????? > ?mapping elements to processors > Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.ma2??????????????????????????????????????????????????????????????????????? > ???????????1???????? 384???????? 384??????? 1536??????? 1536? NELV > ?????????? 2???????? 384???????? 384??????? 1536??????? 1536? NELV > ?????????? 3???????? 384???????? 384??????? 1536??????? 1536? NELV > ?????????? 0???????? 384???????? 384??????? 1536??????? 1536? NELV > RANK???? 0 IEG????? 44????? 45????? 49????? 50????? 51????? 54????? 55????? 56 > ????????? ???????????57????? 58????? 59????? 60????? 61????? 62????? 63????? 64 > ???????????????????? 65????? 66????? 67????? 68????? 69????? 70????? 71????? 72 > ???????????????????? 73????? 74????? 75????? 76????? 77????? 78????? 79????? 80 > ???????????????????? 81?? ???82????? 83????? 84????? 85????? 86????? 87????? 88 > ???????????????????? 89????? 90????? 91????? 92????? 93????? 94????? 95????? 96 > ??????????????????? 236???? 237???? 241???? 242???? 243???? 246???? 247???? 248 > ??????????????????? 249???? 250???? 251???? 252???? 253???? 254???? 255???? 256 > ??????????????????? 257???? 258???? 259???? 260???? 261???? 262???? 263???? 264 > ??????????????????? 265???? 266???? 267???? 268???? 269???? 270???? 271???? 272 > ??????????????? ????273???? 274???? 275???? 276???? 277???? 278???? 279???? 280 > ??????????????????? 281???? 282???? 283???? 284???? 285???? 286???? 287???? 288 > ??????????????????? 428???? 429???? 433???? 434???? 435???? 438???? 439???? 440 > ??????????????????? 441???? 442 ????443???? 444???? 445???? 446???? 447???? 448 > ??????????????????? 449???? 450???? 451???? 452???? 453???? 454???? 455???? 456 > ??????????????????? 457???? 458???? 459???? 460???? 461???? 462???? 463???? 464 > ??????????????????? 465???? 466???? 467???? 468 ????469???? 470???? 471???? 472 > ??????????????????? 473???? 474???? 475???? 476???? 477???? 478???? 479???? 480 > ??????????????????? 620???? 621???? 625???? 626???? 627???? 630???? 631???? 632 > ??????????????????? 633???? 634???? 635???? 636???? 637???? 638 ????639???? 640 > ??????????????????? 641???? 642???? 643???? 644???? 645???? 646???? 647???? 648 > ??????????????????? 649???? 650???? 651???? 652???? 653???? 654???? 655???? 656 > ??????????????????? 657???? 658???? 659???? 660???? 661???? 662???? 663???? 664 > ??????????????????? 665???? 666???? 667???? 668???? 669???? 670???? 671???? 672 > ??????????????????? 812???? 813???? 817???? 818???? 819???? 822???? 823???? 824 > ??????????????????? 825???? 826???? 827???? 828???? 829???? 830???? 831???? 832 > ??????????????? ????833???? 834???? 835???? 836???? 837???? 838???? 839???? 840 > ??????????????????? 841???? 842???? 843???? 844???? 845???? 846???? 847???? 848 > ??????????????????? 849???? 850???? 851???? 852???? 853???? 854???? 855???? 856 > ??????????????????? 857???? 858 ????859???? 860???? 861???? 862???? 863???? 864 > ?????????????????? 1004??? 1005??? 1009??? 1010??? 1011??? 1014??? 1015??? 1016 > ?????????????????? 1017??? 1018??? 1019??? 1020??? 1021??? 1022??? 1023??? 1024 > ?????????????????? 1025??? 1026??? 1027??? 1028 ???1029??? 1030??? 1031??? 1032 > ?????????????????? 1033??? 1034??? 1035??? 1036??? 1037??? 1038??? 1039??? 1040 > ?????????????????? 1041??? 1042??? 1043??? 1044??? 1045??? 1046??? 1047??? 1048 > ?????????????????? 1049??? 1050??? 1051??? 1052??? 1053??? 1054??? 1055??? 1056 > ?????????????????? 1196??? 1197??? 1201??? 1202??? 1203??? 1206??? 1207??? 1208 > ?????????????????? 1209??? 1210??? 1211??? 1212??? 1213??? 1214??? 1215??? 1216 > ??????????????? ???1217??? 1218??? 1219??? 1220??? 1221??? 1222??? 1223??? 1224 > ?????????????????? 1225??? 1226??? 1227??? 1228??? 1229??? 1230??? 1231??? 1232 > ?????????????????? 1233??? 1234??? 1235??? 1236??? 1237??? 1238??? 1239??? 1240 > ?????????????????? 1241??? 1242 ???1243??? 1244??? 1245??? 1246??? 1247??? 1248 > ?????????????????? 1388??? 1389??? 1393??? 1394??? 1395??? 1398??? 1399??? 1400 > ?????????????????? 1401??? 1402??? 1403??? 1404??? 1405??? 1406??? 1407??? 1408 > ?????????????????? 1409??? 1410??? 1411??? 1412 ???1413??? 1414??? 1415??? 1416 > ?????????????????? 1417??? 1418??? 1419??? 1420??? 1421??? 1422??? 1423??? 1424 > ?????????????????? 1425??? 1426??? 1427??? 1428??? 1429??? 1430??? 1431??? 1432 > ?????????????????? 1433??? 1434??? 1435??? 1436??? 1437??? 1438 ???1439??? 1440 > ?element load imbalance:??????????? 0???????? 384???????? 384 > done :: mapping?? 0.29167???? sec > ??preading mesh > ??preading bc for ifld?????????? 1 > done :: read .re2 file?? 0.51???? sec > nelgt/nelgv/lelt:??????? 1536??????? 1536? ???????387 > lx1? /lx2? /lx3 :?????????? 8?????????? 8?????????? 8 > setup mesh topology > ?? Right-handed check complete for??? 1536 elements. OK. > ?? setvert3d:?? 8????? 201344????? 533120????? 201344????? 201344 > call usrsetvert > done :: usrsetvert > gs_setup: 21952 unique labels shared > ?? pairwise times (avg, min, max): 2.92127e-05 2.76451e-05 3.00083e-05 > ?? crystal router??????????????? : 7.82046e-05 7.75443e-05 7.88275e-05 > ?? all reduce??????????????????? : 0.000228323 0.000227655 0.000228766 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 1.45061e06 1375332 1525892 > ?? buffer bytes (avg, min, max): 175616 125440 225792 > ?? setupds time 9.2419E-02 seconds?? 0? 8????? 201344??????? 1536 > ?????????? 8? max multiplicity > done :: setup mesh topology > ?call usrdat > done :: usrdat > generate geometry data > NOTE: All elements deformed , param(59) ^=0 > done :: generate geometry data > ?call usrdat2 > done :: usrdat2 > regenerate geometry data?????????? 1 > NOTE: All elements deformed , param(59) ^=0 > done :: regenerate geometry data?????????? 1 > ?verify mesh topology > ? 0.000000000000000E000?? 6.28318530717959?????? Xrange > ? -1.00000000000000??????? 1.00000000000000?????? Yrange > ? 0.000000000000000E000?? 3.14159265358979?????? Zrange > done :: verify mesh topology > ?IFTRAN?? = T > IFFLOW?? = T > IFHEAT?? = F > IFSPLIT? = T > IFLOMACH = F > IFUSERVP = F > IFUSERMV = F > IFPERT?? = F > IFADJ??? = F > IFSTRS?? = F > IFCHAR?? = T > IFCYCLIC = F > IFAXIS?? = F > IFMVBD?? = F > IFMELT?? = F > IFNEKNEK = F > IFSYNC?? = F > ?IFVCOR?? = T > IFINTQ?? = F > IFGEOM?? = F > IFSURT?? = F > IFWCNO?? = F > ?IFTMSH for field?????????? 1??? =? F > IFADVC for field?????????? 1??? =? T > IFNONL for field?????????? 1??? =? F > ?Dealiasing enabled, lxd=?????????? 8 > ?Estimated eigenvalues > EIGAA =??? 1.23913370009078???? > ?EIGGA =??? 1862221.21607236???? > ?EIGAE =?? 0.250000000000000???? > ?EIGAS =?? 1.681282119258565E-002 > EIGGE =??? 1862221.21607236???? > ?EIGGS =??? 2.00000000000000???? > ?verify mesh topology > ? 0.000000000000000E000?? 6.28318530717959?????? Xrange > ? -1.00000000000000??????? 1.00000000000000?????? Yrange > ? 0.000000000000000E000?? 3.14159265358979?????? Zrange > done :: verify mesh topology > ??E-solver strategy:? 0 itr > mg_nx:?????????? 1???????? ??3?????????? 7 > mg_ny:?????????? 1?????????? 3?????????? 7 > mg_nz:?????????? 1?????????? 3?????????? 7 > call usrsetvert > done :: usrsetvert > gs_setup: 448 unique labels shared > ?? pairwise times (avg, min, max): 7.93538e-06 7.8488e-06 8.0526e-06 > ?? crystal router??????????????? : 6.85905e-06 6.72e-06 6.9978e-06 > ?? all reduce??????????????????? : 1.20532e-05 1.11753e-05 1.28944e-05 > ?? used all_to_all method: crystal router > ?? handle bytes (avg, min, max): 50812 44668 56956 > ?? buffer bytes (avg, min, max): 6144 5120 7168 > ?? setupds time 3.1089E-03 seconds?? 1? 2??????? 1664??????? 1536 > ?? setvert3d:?? 4?????? 30336?????? 42624?????? 30336?????? 30336 > call usrsetvert > done :: usrsetvert > gs_setup: 4032 unique labels shared > ? ?pairwise times (avg, min, max): 8.37387e-06 8.2548e-06 8.5004e-06 > ?? crystal router??????????????? : 1.86812e-05 1.83826e-05 1.89784e-05 > ?? all reduce??????????????????? : 4.4251e-05 4.40251e-05 4.44275e-05 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 269940 256100 283780 > ?? buffer bytes (avg, min, max): 32256 23040 41472 > ?? setupds time 2.4576E-02 seconds?? 2? 4?????? 30336??????? 1536 > ?? setvert3d:?? 4?????? 30336?????? 42624?????? 30336?????? 30336 > call usrsetvert > done :: usrsetvert > gs_setup: 4032 unique labels shared > ?? pairwise times (avg, min, max): 8.65523e-06 8.5168e-06 8.7977e-06 > ?? crystal router??????????????? : 1.94818e-05 1.93217e-05 1.96357e-05 > ?? all reduce??????????????????? : 5.97892e-05 5.95374e-05 5.99737e-05 > ? ?used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 269940 256100 283780 > ?? buffer bytes (avg, min, max): 32256 23040 41472 > ?? setupds time 1.4160E-02 seconds?? 3? 4?????? 30336??????? 1536 > ?? setvert3d:?? 6?????? 96896????? 195200?????? 96896?????? 96896 > call usrsetvert > done :: usrsetvert > gs_setup: 11200 unique labels shared > ?? pairwise times (avg, min, max): 1.61057e-05 1.58103e-05 1.62982e-05 > ?? crystal router??????????????? : 3.86536e-05 3.8384e-05 3.89447e-05 > ?? all reduce??????????????????? : 8.92118e-05 8.88703e-05 8.94562e-05 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 742004 703588 780420 > ?? buffer bytes (avg, min, max): 89600 64000 115200 > ?? setupds time 4.3098E-02 seconds?? 4? 6?????? 96896??????? 1536 > regenerate geometry data?????????? 1 > NOTE: All elements deformed , param(59) ^=0 > done :: regenerate geometry data?????????? 1 > ?h1_mg_nx:?????????? 1?????????? 3?????????? 7 > h1_mg_ny:?????????? 1????? ?????3?????????? 7 > h1_mg_nz:?????????? 1?????????? 3?????????? 7 > call usrsetvert > done :: usrsetvert > gs_setup: 448 unique labels shared > ?? pairwise times (avg, min, max): 4.10923e-06 2.5509e-06 4.7765e-06 > ?? crystal router??????????????? : 3.94603e-06 3.7989e-06 4.0103e-06 > ?? all reduce??????????????????? : 6.54198e-06 6.442e-06 6.5947e-06 > ?? used all_to_all method: crystal router > ?? handle bytes (avg, min, max): 50812 44668 56956 > ?? buffer bytes (avg, min, max): 6144 5120 7168 > ?? setupds time 1.6990E-03 seconds?? 5? 2??????? 1664??????? 1536 > ?? setvert3d:?? 4?????? 30336?????? 42624?????? 30336?????? 30336 > call usrsetvert > done :: usrsetvert > gs_setup: 4032 unique labels shared > ?? pairwise times (avg, min, max): 7.51525e-06 7.3863e-06 7.68e-06 > ?? crystal router??????????????? : 1.7878e-05 1.76051e-05 1.81134e-05 > ?? all reduce??????????????????? : 5.29887e-05 5.27139e-05 5.32422e-05 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 269940 256100 283780 > ?? buffer bytes (avg, min, max): 32256 23040 41472 > ?? setupds time 2.5044E-02 seconds?? 6? 4?????? 30336??????? 1536 > ?? setvert3d:?? 4?????? 30336?????? 42624?????? 30336?????? 30336 > call usrsetvert > done :: usrsetvert > gs_setup: 4032 unique labels shared > ?? pairwise times (avg, min, max): 1.11506e-05 1.07538e-05 1.1453e-05 > ?? crystal router??????????????? : 2.78917e-05 2.74376e-05 2.83874e-05 > ?? all reduce??????????????????? : 6.8896e-05 6.84774e-05 6.92927e-05 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 269940 256100 283780 > ?? buffer bytes (avg, min, max): 32256 23040 41472 > ?? setupds time 2.0265E-02 seconds?? 7? 4?????? 30336??????? 1536 > ?? setvert3d:?? 6?????? 96896????? 195200?????? 96896?????? 96896 > call usrsetvert > done :: usrsetvert > gs_setup: 11200 unique labels shared > ?? pairwise times (avg, min, max): 1.44095e-05 1.43056e-05 1.45192e-05 > ?? crystal router??????????????? : 3.94263e-05 3.90332e-05 3.98261e-05 > ?? all reduce??????????????????? : 9.67785e-05 9.63923e-05 9.71425e-05 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 742004 703588 780420 > ?? buffer bytes (avg, min, max): 89600 64000 115200 > ?? setupds time 4.3436E-02 seconds?? 8? 6?????? 96896??????? 1536 > ?? setvert3d:?? 8????? 201344????? 533120????? 201344????? 201344 > call usrsetvert > done :: usrsetvert > gs_setup: 21952 unique labels shared > ?? pairwise times (avg, min, max): 5.80216e-05 4.95078e-05 6.16774e-05 > ?? crystal router??????????????? : 7.1144e-05 7.08725e-05 7.14649e-05 > ?? all reduce???????? ???????????: 0.000235607 0.000234486 0.000236793 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 1.45061e06 1375332 1525892 > ?? buffer bytes (avg, min, max): 175616 125440 225792 > ?? setupds time 8.4090E-02 seconds?? 9? 8????? 201344?? ?????1536 > ?? setvert3d:? 10????? 343680???? 1130112????? 343680????? 343680 > call usrsetvert > done :: usrsetvert > gs_setup: 36288 unique labels shared > ?? pairwise times (avg, min, max): 3.15373e-05 3.06691e-05 3.2104e-05 > ?? crystal router??????????????? : 9.24712e-05 9.09459e-05 9.39815e-05 > ?? all reduce??????????????????? : 0.000254788 0.00025378 0.000255437 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 2.39576e06 2271332 2520196 > ?? buffer bytes (avg, min, max): 290304 207360 373248 > ?? setupds time 1.3027E-01 seconds? 10 10????? 343680??????? 1536 > setup h1 coarse grid, nx_crs=?????????? 2 > call usrsetvert > done :: usrsetvert > gs_setup: 448 unique labels shared > ?? pairwise times (avg, min, max): 5.59047e-06 5.5171e-06 5.677e-06 > ?? crystal router??????????????? : 3.78503e-06 3.7079e-06 3.8472e-06 > ?? all reduce??????????????????? : 5.5058e-06 5.4973e-06 5.5169e-06 > ?? used all_to_all method: crystal router > ?? handle bytes (avg, min, max): 50812 44668 56956 > ?? buffer bytes (avg, min, max): 6144 5120 7168 > gs_setup: 448 unique labels shared > ?? pairwise times (avg, min, max): 1.01072e-05 9.958e-06 1.01904e-05 > ?? crystal router??????????????? : 4.22242e-06 4.1446e-06 4.331e-06 > ?? all reduce ???????????????????: 8.35538e-06 8.1712e-06 8.4627e-06 > ?? used all_to_all method: crystal router > ?? handle bytes (avg, min, max): 27068 23868 30268 > ?? buffer bytes (avg, min, max): 4736 3840 5632 > AMG version 2.01 > AMG: 8 levels > AMG Chebyshev smoother data: > AMG? level 1: 3 iterations with rho = 0.79256 > AMG? level 2: 2 iterations with rho = 0.668297 > AMG? level 3: 2 iterations with rho = 0.481307 > AMG? level 4: 2 iterations with rho = 0.409707 > AMG? level 5: 2 iterations with rho = 0.458605 > AMG? level 6: 3 iterations with rho = 0.696293 > AMG? level 7: 2 iterations with rho = 0.666743 > AMG: 1664 rows > AMG: preading through rows ... done > gs_setup: 431 unique labels shared > ?? pairwise times (avg, min, max): 2.78895e-06 2.5582e-06 2.8915e-06 > ?? crystal router??????????????? : 4.09068e-06 3.9897e-06 4.2042e-06 > ?? all reduce??????????????????? : 1.05099e-05 9.6558e-06 1.14097e-05 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 3261 2620 3832 > ?? buffer bytes (avg, min, max): 1724 1408 2040 > gs_setup: 664 unique labels shared > ?? pairwise times (avg, min, max): 3.73e-06 3.6492e-06 3.8419e-06 > ?? crystal router??????????????? : 4.80688e-06 4.7581e-06 4.8544e-06 > ?? all reduce??????????????????? : 1.91924e-05 1.88961e-05 1.95428e-05 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 5588 3840 7948 > ?? buffer bytes (avg, min, max): 3200 2072 4328 > gs_setup: 311 unique labels shared > ?? pairwise times (avg, min, max): 3.59183e-06 3.4744e-06 3.6762e-06 > ?? crystal router????????? ??????: 3.48463e-06 3.4264e-06 3.5338e-06 > ?? all reduce??????????????????? : 7.03768e-06 6.9313e-06 7.1389e-06 > ?? used all_to_all method: crystal router > ?? handle bytes (avg, min, max): 9301 8788 9740 > ?? buffer bytes (avg, min, max): 3588 2992 4048 > gs_setup: 421 unique labels shared > ?? pairwise times (avg, min, max): 4.046e-06 3.8288e-06 4.2149e-06 > ?? crystal router??????????????? : 5.71768e-06 5.6236e-06 5.8628e-06 > ?? all reduce??????????????????? : 9.28628e-06 9.1472e-06 9.4127e-06 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 4913 3240 6956 > ?? buffer bytes (avg, min, max): 3036 2088 4128 > gs_setup: 151 unique labels shared > ?? pairwise times (avg, min, max): 2.19068e-06 2.1424e-06 2.242e-06 > ?? crystal router??? ????????????: 3.61935e-06 3.5275e-06 3.683e-06 > ?? all reduce??????????????????? : 1.15655e-05 1.14062e-05 1.16404e-05 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 1331 940 1700 > ?? buffer bytes (avg, min, max): 628 448 808 > gs_setup: 194 unique labels shared > ?? pairwise times (avg, min, max): 3.61092e-06 3.5012e-06 3.7449e-06 > ?? crystal router??????????????? : 4.24627e-06 4.2222e-06 4.2926e-06 > ?? all reduce??????????????????? : 5.85915e-06 5.651e-06 6.022e-06 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 3380 3208 3588 > ?? buffer bytes (avg, min, max): 2160 2032 2368 > gs_setup: 80 unique labels shared > ?? pairwise times (avg, min, max): 2.38705e-06 2.3152e-06 2.4211e-06 > ?? crystal router??????????????? : 2.44917e-06 2.3604e-06 2.5157e-06 > ?? all reduce??????????????????? : 3.76915e-06 3.6987e-06 3.8185e-06 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 985 788 1228 > ?? buffer bytes (avg, min, max): 452 320 648 > gs_setup: 98 unique labels shared > ?? pairwise times (avg, min, max): 3.19185e-06 3.1425e-06 3.2323e-06 > ?? crystal router??????????????? : 2.91045e-06 2.8317e-06 3.0279e-06 > ?? all reduce??????????????????? : 4.24988e-06 4.1918e-06 4.3256e-06 > ?? used all_to_all method: crystal router > ?? handle bytes (avg, min, max): 5506 5136 5876 > ?? buffer bytes (avg, min, max): 2352 2192 2512 > gs_setup: 33 unique labels shared > ?? pairwise times (avg, min, max): 2.20093e-06 2.1362e-06 2.3165e-06 > ?? crystal router??????????????? : 3.15857e-06 3.0855e-06 3.2308e-06 > ?? all reduce??????????????????? : 4.0025e-06 3.9097e-06 4.0784e-06 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 616 512 788 > ?? buffer bytes (avg, min, max): 232 160 376 > gs_setup: 39 unique labels shared > ?? pairwise times (avg, min, max): 2.55118e-06 2.5145e-06 2.5821e-06 > ?? crystal router??????????????? : 3.45955e-06 3.3809e-06 3.5407e-06 > ?? all reduce??????????????????? : 4.61387e-06 4.495e-06 4.7137e-06 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 955 936 972 > ?? buffer bytes (avg, min, max): 468 392 536 > gs_setup: 8 unique labels shared > ?? pairwise times (avg, min, max): 2.7896e-06 2.684e-06 2.8771e-06 > ?? crystal router??????????????? : 3.3584e-06 3.2604e-06 3.4714e-06 > ?? all reduce?????????????? ?????: 3.8325e-06 3.7504e-06 3.9734e-06 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 413 392 424 > ?? buffer bytes (avg, min, max): 84 64 96 > gs_setup: 8 unique labels shared > ?? pairwise times (avg, min, max): 2.76598e-06 2.7364e-06 2.8357e-06 > ?? crystal router??????????????? : 2.47192e-06 2.4054e-06 2.5145e-06 > ?? all reduce??????????????????? : 2.75563e-06 2.6928e-06 2.8295e-06 > ?? used all_to_all method: crystal router > ?? handle bytes (avg, min, max): 916 860 972 > ?? buffer bytes (avg, min, max): 192 176 208 > gs_setup: 1 unique labels shared > ?? pairwise times (avg, min, max): 7.2665e-07 6.456e-07 7.68e-07 > ?? crystal router??????????????? : 2.4244e-06 2.3879e-06 2.4719e-06 > ?? all reduce??????????????????? : 2.57698e-06 2.5591e-06 2.5873e-06 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 237 228 264 > ?? buffer bytes (avg, min, max): 12 8 24 > gs_setup: 1 unique labels shared > ?? pairwise times (avg, min, max): 7.836e-07 6.3e-07 8.848e-07 > ?? crystal router??????????????? : 2.57503e-06 2.4694e-06 2.6345e-06 > ?? all reduce??????????????????? : 2.86405e-06 2.8357e-06 2.9139e-06 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 237 228 264 > ?? buffer bytes (avg, min, max): 12 8 24 > gs_setup: 405 unique labels shared > ?? pairwise times (avg, min, max): 2.43873e-06 2.2721e-06 2.5217e-06 > ?? crystal router??????????????? : 3.87707e-06 3.8341e-06 3.9225e-06 > ?? all reduce??????????????????? : 7.58878e-06 7.5007e-06 7.6681e-06 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 3079 2020 4152 > ?? buffer bytes (avg, min, max): 1620 1024 2216 > gs_setup: 235 unique labels shared > ?? pairwise times (avg, min, max): 3.03253e-06 2.9581e-06 3.1371e-06 > ?? crystal router??????????????? : 4.62493e-06 4.5157e-06 4.7079e-06 > ?? all reduce??????????????????? : 6.30792e-06 6.2306e-06 6.4236e-06 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 2456 1268 3872 > ?? buffer bytes (avg, min, max): 1368 600 2224 > gs_setup: 232 unique labels shared > ?? pairwise times (avg, min, max): 3.3132e-06 3.2543e-06 3.3618e-06 > ?? crystal router??????????????? : 3.97125e-06 3.9468e-06 3.9908e-06 > ?? all reduce??????????????????? : 9.85658e-06 9.7844e-06 9.8952e-06 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 3335 2484 4152 > ?? buffer bytes (avg, min, max): 2076 1568 2664 > gs_setup: 96 unique labels shared > ?? pairwise times (avg, min, max): 8.03052e-06 7.9335e-06 8.1011e-06 > ?? crystal router??????????????? : 3.56828e-06 3.5204e-06 3.6189e-06 > ?? all reduce??????????????????? : 6.4523e-06 6.3963e-06 6.5105e-06 > ?? used all_to_all method: crystal router > ?? handle bytes (avg, min, max): 5404 5100 5568 > ?? buffer bytes (avg, min, max): 2304 2256 2352 > gs_setup: 59 unique labels shared > ?? pairwise times (avg, min, max): 3.0593e-06 2.967e-06 3.1159e-06 > ?? crystal router??????????????? : 3.37507e-06 3.315e-06 3.443e-06 > ?? all reduce??????????????????? : 8.04967e-06 8.032e-06 8.0607e-06 > ?? used all_to_all method: pairwise > ??handle bytes (avg, min, max): 1295 1288 1304 > ?? buffer bytes (avg, min, max): 708 680 744 > gs_setup: 31 unique labels shared > ?? pairwise times (avg, min, max): 2.94198e-06 2.8528e-06 2.9872e-06 > ?? crystal router??????????????? : 2.7749e-06 2.6955e-06 2.8159e-06 > ?? all reduce??????????????????? : 4.59447e-06 4.5455e-06 4.6566e-06 > ?? used all_to_all method: crystal router > ?? handle bytes (avg, min, max): 2089 1864 2336 > ?? buffer bytes (avg, min, max): 744 640 848 > gs_setup: 7 unique labels shared > ?? pairwise times (avg, min, max): 2.88287e-06 2.8044e-06 2.9556e-06 > ?? crystal router??????????????? : 2.52328e-06 2.4726e-06 2.5612e-06 > ?? all reduce??????????????????? : 2.83837e-06 2.7564e-06 2.9157e-06 > ?? used all_to_all method: crystal router > ?? handle bytes (avg, min, max): 865 832 888 > ?? buffer bytes (avg, min, max): 168 160 176 > done :: setup h1 coarse grid??? 2.36721729199780?????? sec > ?call usrdat3 > done :: usrdat3 > set initial conditions > Checking restart options: turbChannel0.f00001??????? ????????????????????????????????????????????????????????????????????????????????????????????????????????? > ?nekuic (1) for ifld??????????? 1 > Reading checkpoint data > ???????FILE: > turbChannel0.f00001???????????????????????????????????????????????????????? ??? > ??????? 0? 2.0000E02 done :: Read checkpoint data > ????????????????????????????? avg data-throughput =???? 2.5MBps > ????????????????????????????? io-nodes =???? 4 > xyz min???? 0.0000????? -1.0000 ??????0.0000??? > ?uvwpt min????????? NaN????????? NaN????????? NaN????????? NaN?? 0.0000??? > ?PS min???? 0.99000E22 > xyz max???? 6.2832?????? 1.0000?????? 3.1416??? > ?uvwpt max????????? NaN????????? NaN????????? NaN????????? NaN?? 0.0000??? > ?PS max??? -0.99000E22 > Restart: recompute geom. factors. > regenerate geometry data?????????? 1 > NOTE: All elements deformed , param(59) ^=0 > done :: regenerate geometry data?????????? 1 > ?done :: set initial conditions > ?call userchk > ?? 2.0000E02????????? NaN????????? NaN monitor > Start collecting statistics ... > done :: userchk > gridpoints unique/tot:??????? 533120?????? 786432 > ? dofs:??????????????? 520576??????????????? 533120 > ?Initial time: 0.2000000E03 > Initialization successfully completed??? 13.736???? sec > Starting time loop ... > WARNING: DT<0 or DTFS<0 > ????????? Reset DT????? > ?WARNING: Set DT=0.001 (arbitrarily) > Final time step =?? 0.000000000000000E000 > ?? HPF : 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.000000 > ???????????? Solving for fluid > ??? 1 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ??? 2 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ??? 3 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ??? 4 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ??? 5 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ??? 6 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ??? 7 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ??? 8 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ??? 9 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 10 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ?? 11 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 12 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 13 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ??14 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 15 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 16 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 17 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 18 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 19 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 20 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? ?21 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 22 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 23 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 24 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 25 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 26 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 27 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 28 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 29 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 30 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 31 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 32 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 33 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 34 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 35 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 36 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 37 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 38 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ?? 39 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 40 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 41 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ??42 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 43 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 44 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 45 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 46 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 47 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 48 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? ?49 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 50 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 51 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 52 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 53 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 54 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 55 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 56 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 57 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 58 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 59 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 60 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 61 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 62 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 63 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 64 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 65 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 66 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ?? 67 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 68 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 69 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ??70 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 71 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 72 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 73 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 74 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 75 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 76 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? ?77 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 78 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 79 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 80 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 81 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 82 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 83 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 84 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 85 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 86 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 87 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 88 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 89 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 90 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 91 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 92 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 93 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 94 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ?? 95 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 96 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 97 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ??98 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 99 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 100 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 101 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 102 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 103 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 104 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 105 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 106 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 107 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 108 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 109 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 110 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 111 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 112 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 113 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 114 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 115 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 116 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 117 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 118 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 119 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 120 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 121 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 122 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 123 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 124 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 125 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ? 126 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 127 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 128 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?129 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 130 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 131 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 132 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 133 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 134 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 135 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 136 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 137 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 138 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 139 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 140 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 141 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 142 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 143 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 144 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 145 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 146 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 147 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 148 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 149 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 150 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 151 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 152 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 153 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ? 154 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 155 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 156 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?157 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 158 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 159 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 160 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 161 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 162 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 163 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 164 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 165 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 166 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 167 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 168 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 169 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 170 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 171 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 172 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 173 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 174 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 175 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 176 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 177 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 178 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 179 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 180 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 181 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ? 182 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 183 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 184 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?185 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 186 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 187 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 188 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 189 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 190 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 191 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 192 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 193 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 194 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 195 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 196 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 197 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 198 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 199 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 200 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 201 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 202 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 203 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 204 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 205 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 206 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 207 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 208 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 209 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 210 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 211 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 212 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ? 213 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 214 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 215 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?216 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 217 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 218 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 219 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 220 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 221 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 222 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 223 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 224 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 225 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 226 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 227 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 228 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 229 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 230 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 231 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 232 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 233 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 234 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 235 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 236 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 237 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 238 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 239 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 240 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ? 241 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 242 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 243 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?244 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 245 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 246 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 247 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 248 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 249 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 250 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 251 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 252 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 253 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 254 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 255 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 256 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 257 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 258 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 259 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 260 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 261 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 262 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 263 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 264 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 265 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 266 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 267 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 268 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ? 269 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 270 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 271 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?272 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 273 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 274 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 275 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 276 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 277 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 278 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 279 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 280 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 281 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 282 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 283 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 284 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 285 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 286 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 287 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 288 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 289 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 290 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 291 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 292 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 293 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 294 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 295 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 296 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 297 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 298 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 299 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ? 300 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 301 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 302 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?303 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 304 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 305 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 306 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 307 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 308 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 309 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 310 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 311 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 312 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 313 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 314 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 315 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 316 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 317 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 318 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 319 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 320 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 321 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 322 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 323 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 324 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 325 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 326 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 327 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ? 328 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 329 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 330 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?331 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 332 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 333 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 334 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 335 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 336 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 337 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 338 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 339 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 340 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 341 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 342 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 343 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 344 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 345 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 346 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 347 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 348 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 349 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 350 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 351 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 352 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 353 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 354 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 355 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ? 356 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 357 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 358 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?359 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 360 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 361 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 362 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 363 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 364 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 365 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 366 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 367 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 368 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 369 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 370 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 371 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 372 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 373 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 374 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 375 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 376 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 377 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 378 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 379 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 380 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 381 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 382 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 383 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 384 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 385 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 386 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ? 387 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 388 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 389 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?390 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 391 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 392 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 393 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 394 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 395 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 396 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 397 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 398 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 399 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 400 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 401 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 402 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 403 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 404 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 405 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 406 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 407 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 408 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 409 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 410 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 411 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 412 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 413 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 414 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ? 415 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 416 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 417 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?418 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 419 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 420 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 421 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 422 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 423 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 424 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 425 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 426 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 427 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 428 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 429 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 430 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 431 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 432 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 433 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 434 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 435 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 436 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 437 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 438 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 439 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 440 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 441 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 442 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ? 443 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 444 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 445 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?446 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 447 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 448 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 449 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 450 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 451 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 452 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 453 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 454 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 455 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 456 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 457 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 458 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 459 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 460 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 461 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 462 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 463 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 464 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 465 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 466 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 467 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 468 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 469 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 470 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 471 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 472 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 473 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ? 474 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 475 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 476 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?477 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 478 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 479 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 480 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 481 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 482 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 483 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 484 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 485 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 486 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 487 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 488 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 489 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 490 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 491 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 492 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 493 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 494 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 495 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 496 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 497 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 498 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 499 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 500 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ????????? 1? PRES gmres?????? 500??? ??????NaN????????? NaN?? 1.0000E-04?? 1.3084E01?? 2.1669E01??? F > ????????? 1? Hmholtz VELX?????? 1????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 2????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ???????? ?1? Hmholtz VELX?????? 3????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 4????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 5????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 6????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 7????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 8????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 9????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 10????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 11????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 12????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 13????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 14????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 15????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 16????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX??? ??17????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 18????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 19????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 20????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 21????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 22????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ?????????1? Hmholtz VELX????? 23????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 24????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 25????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 26????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 27????????? NaN?? 3.3898E-04?? 1.0000E-07??? ?Infinity?? F > ????????? 1? Hmholtz VELX????? 28????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 29????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 30????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 31????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 32????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 33????????? NaN? ?3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 34????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 35????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 36 ?????????NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 37????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 38????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 39????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 40????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 41????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????? ????1? Hmholtz VELX????? 42????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 43????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 44????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 45????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 46????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 47????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 48????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 49????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 50????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 51????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 52????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 53?????? ???NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 54????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 55????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 56????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 57????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 58????????? NaN?? 3.3898E-04?? 1.0000E-07??? ?Infinity?? F > ????????? 1? Hmholtz VELX????? 59????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 60????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 61????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 62????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 63????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 64????????? NaN? ?3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 65????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 66????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 67 ?????????NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 68????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 69????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 70????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 71????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 72????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????? ????1? Hmholtz VELX????? 73????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 74????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 75????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 76????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 77????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 78????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 79????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 80????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 81????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 82????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 83????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 84????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 85????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 86????????? NaN?? 3.3898E-04?? 1.0000E-07??? ?Infinity?? F > ????????? 1? Hmholtz VELX????? 87????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 88????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 89????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 90????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 91????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 92????????? NaN? ?3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 93????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 94????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 95 ?????????NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 96????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 97????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 98????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 99????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX???? 100????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????? ????1? Error Hmholtz VELX???? 100????????? NaN????????? NaN?? 1.0000E-07 > ????????? 1? Hmholtz VELY?????? 1????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY?????? 2????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ?? ???????1? Hmholtz VELY?????? 3????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY?????? 4????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY?????? 5????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY?????? 6????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY?????? 7????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY?????? 8????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY?????? 9????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 10????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 11????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 12????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 13????????? NaN?? 3.3898E-04?? 1.0000E-07??? ?Infinity?? F > ????????? 1? Hmholtz VELY????? 14????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 15????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 16????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 17????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 18????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 19????????? NaN? ?3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 20????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 21????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 22 ?????????NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 23????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 24????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 25????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 26????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 27????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????? ????1? Hmholtz VELY????? 28????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 29????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 30????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 31????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 32????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 33????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 34????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 35????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 36????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 37????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 38????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 39?????? ???NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 40????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 41????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 42????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 43????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 44????????? NaN?? 3.3898E-04?? 1.0000E-07??? ?Infinity?? F > ????????? 1? Hmholtz VELY????? 45????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 46????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 47????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 48????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 49????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 50????????? NaN? ?3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 51????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 52????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 53 ?????????NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 54????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 55????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 56????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 57????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 58????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????? ????1? Hmholtz VELY????? 59????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 60????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 61????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 62????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 63????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 64????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 65????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 66????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 67????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 68????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 69????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 70????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 71????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 72????????? NaN?? 3.3898E-04?? 1.0000E-07??? ?Infinity?? F > ????????? 1? Hmholtz VELY????? 73????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 74????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 75????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 76????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 77????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 78????????? NaN? ?3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 79????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 80????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 81 ?????????NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 82????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 83????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 84????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 85????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 86????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????? ????1? Hmholtz VELY????? 87????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 88????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 89????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 90????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 91????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 92????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 93????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 94????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 95????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 96????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 97????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 98????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 99????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY???? 100????????? NaN?? 3.3898E-04?? 1.0000E-07??? ?Infinity?? F > ????????? 1? Error Hmholtz VELY???? 100????????? NaN????????? NaN?? 1.0000E-07 > ????????? 1? Hmholtz VELZ?????? 1????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ?????? 2????????? NaN?? 3.3898E-04?? 1.0000E-07 ????Infinity?? F > ????????? 1? Hmholtz VELZ?????? 3????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ?????? 4????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ?????? 5????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ?????? 6????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ?????? 7????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ?????? 8????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ?????? 9????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 10????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 11????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 12????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 13????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 14????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 15????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 16????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ?? ???????1? Hmholtz VELZ????? 17????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 18????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 19????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 20????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 21????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 22????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 23????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 24????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 25????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 26????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 27????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 28????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 29????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 30????????? NaN?? 3.3898E-04?? 1.0000E-07??? ?Infinity?? F > ????????? 1? Hmholtz VELZ????? 31????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 32????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 33????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 34????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 35????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 36????????? NaN? ?3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 37????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 38????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 39 ?????????NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 40????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 41????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 42????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 43????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 44????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????? ????1? Hmholtz VELZ????? 45????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 46????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 47????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 48????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 49????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 50????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 51????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 52????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 53????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 54????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 55????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 56????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 57????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 58????????? NaN?? 3.3898E-04?? 1.0000E-07??? ?Infinity?? F > ????????? 1? Hmholtz VELZ????? 59????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 60????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 61????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 62????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 63????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 64????????? NaN? ?3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 65????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 66????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 67 ?????????NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 68????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 69????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 70????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 71????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 72????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????? ????1? Hmholtz VELZ????? 73????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 74????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 75????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 76????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 77????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 78????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 79????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 80????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 81????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 82????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 83????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 84????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 85????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 86????????? NaN?? 3.3898E-04?? 1.0000E-07??? ?Infinity?? F > ????????? 1? Hmholtz VELZ????? 87????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 88????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 89????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 90????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 91????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 92????????? NaN? ?3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 93????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 94????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 95 ?????????NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 96????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 97????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 98????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 99????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ???? 100????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????? ????1? Error Hmholtz VELZ???? 100????????? NaN????????? NaN?? 1.0000E-07 > ??? 1 1.00000E-04 1.04290E-15 1.48092E-15 7.04224E-01?????? 1 Divergence > ????????? 1? PRES gmres???????? 1?? 1.0429E-15?? 1.4809E-15?? 1.0000E-04?? 2.3331E-02?? 5.0854E-02??? F > ????? ????1? Hmholtz VELX?????? 1?? 9.9982E-01?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 2????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 3????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 4????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 5????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 6????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 7????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 8????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 9????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 10????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 11????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 12????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 13????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 14????????? NaN?? 3.3898E-04?? 1.0000E-07??? ?Infinity?? F > ????????? 1? Hmholtz VELX????? 15????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 16????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 17????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 18????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 19????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 20????????? NaN? ?3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 21????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 22????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 23 ?????????NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 24????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 25????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 26????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 27????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 28????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????? ????1? Hmholtz VELX????? 29????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 30????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 31????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 32????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 33????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 34????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 35????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 36????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 37????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 38????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 39????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 40????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 41????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 42????????? NaN?? 3.3898E-04?? 1.0000E-07??? ?Infinity?? F > ????????? 1? Hmholtz VELX????? 43????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 44????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 45????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 46????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 47????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 48????????? NaN? ?3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 49????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 50????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 51 ?????????NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 52????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 53????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 54????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 55????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 56????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????? ????1? Hmholtz VELX????? 57????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 58????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 59????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 60????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 61????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 62????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 63????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 64????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 65????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 66????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 67????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 68????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 69????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 70????????? NaN?? 3.3898E-04?? 1.0000E-07??? ?Infinity?? F > ????????? 1? Hmholtz VELX????? 71????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 72????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 73????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 74????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 75????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 76????????? NaN? ?3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 77????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 78????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 79 ?????????NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 80????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 81????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 82????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 83????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 84????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????? ????1? Hmholtz VELX????? 85????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 86????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 87????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 88????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 89????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 90????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 91????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 92????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 93????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 94????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 95????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 96?????? ???NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 97????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 98????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 99????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX???? 100????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Error Hmholtz VELX???? 100????????? NaN?? 9.9982E-01?? 1.0000E-07 > ????????? 1? Hmholtz VELY?????? 1?? 8.0937E-16?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY?????? 0?? 8.0937E-16?? 8.0937E-16?? 1.0000E-07 > ????????? 1? Hmholtz VELZ?????? 1?? 7.1883E-16?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ?????? 0?? 7.1883E-16?? 7.1883E-16?? 1.0000E-07 > ????????? 1? volflow X???????????????????? NaN????????? NaN????????? NaN?? 6.2832E00 > ???????????? L1/L2 DIV(V)????????????????? NaN????????? NaN > ???????????? L1/L2 QTL????????????? 0.0000E00?? 0.0000E00 > ???????????? L1/L2 DIV(V)-QTL????????????? NaN????????? NaN > ????????? 1? Fluid done? 2.0000E02? 2.6895E01 > ?? 2.0000E02????????? NaN????????? NaN monitor > filt amp 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.5000 > filt trn 1.0000 1.0000 1.0000 1.0000 1.0000 1.0000 1.0000 0.5000 > ?????? 1 sfilt:???????? NaN???? vortx > ??????? 1? 2.0000E02 Write checkpoint > ?????? FILE: > /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel0.f00001?????????????? > ??????? 1? 2.0000E02 done :: Write checkpoint > ????????????????????????????? file size =????? 21.??? MB > ????????????????????????????? avg data-throughput =??? 11.3MB/s > ????????????????????????????? io-nodes =???? 4 > end of time-step loop > runtime statistics: > init time?? 13.7358070529990?????? 0.462004458987539???? > ?prep time?????????? 1?? 1.87108852800156?????? 6.293414284007534E-002 > pres time?????????? 1?? 21.7905451879997?????? 0.732925921409712???? > ?crsl time? ???????501? 0.183691413072665?????? 6.178468552291153E-003 > crsl min?? 0.183063570999366???? > ?crsl max?? 0.260289230038325???? > ?crsl avg?? 0.221352905275126???? > ?hmhz time?????????? 6?? 4.94836180700077?????? 0.166438361480831???? > ?eslv time?????????? 0? 0.000000000000000E000? 0.000000000000000E000 > proj time?????????? 0? 0.000000000000000E000? 0.000000000000000E000 > usvp time?????????? 2? 8.829280013742391E-004? 2.969732117129529E-005 > usfq time?????????? 0? 1.237174799825880E-002? 4.161242742134884E-004 > usbc time?????????? 1? 2.739972998824669E-003? 9.215910925933331E-005 > usbc min?? 2.302368000528077E-003 > usbc max?? 1.831457500156830E-002 > usb? avg?? 6.439937250434014E-003 > mltd time?????????? 3? 1.305026299814926E-002? 4.389461553180925E-004 > cdtp time?????????? 4? 1.176028400368523E-002? 3.955576565467353E-004 > axhm time???????? 945?? 6.36171776202173?????? 0.213976649608845???? > ?advc time?????????? 1? 0.178863899000135?????? 6.016094909539131E-003 > mxmf time? 0.000000000000000E000? 0.000000000000000E000 > adc3 time? 0.000000000000000E000? 0.000000000000000E000 > col2 time? 0.000000000000000E000? 0.000000000000000E000 > col3 time? 0.000000000000000E000? 0.000000000000000E000 > a2s2 time? 0.000000000000000E000? 0.000000000000000E000 > add2 time? 0.000000000000000E000? 0.000000000000000E000 > invc time? 0.000000000000000E000? 0.000000000000000E000 > tgop time??????? 2480?? 1.02037628088146?????? 3.432039994398663E-002 > dadd time?????????? 0?? 3.58888928988017?????? 0.120712445096209? ??? > ?vdss time?????????? 4? 6.298328000411857E-003? 2.118445322600121E-004 > vdss min?? 6.298328000411857E-003 > vdss max?? 2.789256400137674E-002 > vdss avg?? 2.080069274961716E-002 > dsum time??????? 1463?? 1.95680818695473?????? 6.581732724317946E-002 > dsum min??? 1.52674149705126???? > ?dsum max??? 2.28399024302780???? > ?dsum avg??? 1.90933237102490???? > ?ddsl time?????????? 0? 0.000000000000000E000? 0.000000000000000E000 > #? nid?????? tusbc?????? tdadd?????? tcrsl?????? tvdss?????? tdsum??????? tgop??? qqq??? F > ?????????? 0? 2.7400E-03? 3.5889E00? 1.8369E-01? 6.2983E-03? 1.9568E00? 1.0204E00 qqq > ?????????? 1? 2.3024E-03? 3.7084E00? 2.5837E-01? 2.7040E-02? 1.8698E00? 1.7594E00 qqq > ?????????? 2? 1.8315E-02? 3.7437E00? 2.6029E-01? 2.1972E-02? 1.5267E00? 1.9577E00 qqq > ?????????? 3? 2.4028E-03? 3.6736E00? 1.8306E-01? 2.7893E-02? 2.2840E00? 1.0771E00 qqq > run successful: dying ... > total elapsed time???????????? :?? 4.35605E01 sec > total solver time w/o IO?????? :?? 2.78598E01 sec > time/timestep????????????????? :?? 2.78598E01 sec > avg throughput per timestep??? :?? 4.78395E03 gridpts/CPUs > total max memory usage???????? :?? 2.00808E00 GB > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users From nek5000-users at lists.mcs.anl.gov Tue Jan 23 10:08:40 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Tue, 23 Jan 2018 16:08:40 +0000 Subject: [Nek5000-users] Example turbChannel restart issue Message-ID: Hello, Thank you for the reply. I think it might due to the re-posting, the original file does not look as messy as it is now, I am reattaching it at the end here (Hopefully it looks good now). For the restart file, am I supposed to post-process it using Visit or other command prior to calling it? For the .re2 file here in the turbChannel, I am aware of that it is ASCII file. The only difference I noticed is that the one here is not readable using any software whereas others are readable. Thanks, Ming ********************Log file***************************** Number of processors: 4 REAL wdsize : 8 INTEGER wdsize : 4 Timer accuracy : 9.40E-07 Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.par general = [(null)] general:startfrom = [turbChannel0.f00001] general:stopat = [endTime] general:endtime = [200] general:dt = [0] general:timestepper = [bdf2] general:extrapolation = [OIFS] general:variabledt = [yes] general:targetcfl = [2.0] general:writecontrol = [runTime] general:writeinterval = [100.0] general:userparam01 = [100] general:userparam02 = [20] general:userparam03 = [1] general:filtering = [hpfrt] general:filterweight = [10] general:filtercutoffratio = [0.9] problemtype = [(null)] problemtype:variableproperties = [no] problemtype:equation = [incompNS] pressure = [(null)] pressure:preconditioner = [semg_amg] pressure:residualtol = [1e-04] pressure:residualproj = [yes] velocity = [(null)] velocity:residualtol = [1e-07] velocity:density = [1] velocity:viscosity = [-2950] Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.re2 mapping elements to processors Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.ma2 1 384 384 1536 1536 NELV 2 384 384 1536 1536 NELV 3 384 384 1536 1536 NELV 0 384 384 1536 1536 NELV RANK 0 IEG 44 45 49 50 51 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 236 237 241 242 243 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 428 429 433 434 435 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 620 621 625 626 627 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 812 813 817 818 819 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 1004 1005 1009 1010 1011 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1196 1197 1201 1202 1203 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1388 1389 1393 1394 1395 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 element load imbalance: 0 384 384 done :: mapping 0.29167 sec preading mesh preading bc for ifld 1 done :: read .re2 file 0.51 sec nelgt/nelgv/lelt: 1536 1536 387 lx1 /lx2 /lx3 : 8 8 8 setup mesh topology Right-handed check complete for 1536 elements. OK. setvert3d: 8 201344 533120 201344 201344 call usrsetvert done :: usrsetvert gs_setup: 21952 unique labels shared pairwise times (avg, min, max): 2.92127e-05 2.76451e-05 3.00083e-05 crystal router : 7.82046e-05 7.75443e-05 7.88275e-05 all reduce : 0.000228323 0.000227655 0.000228766 used all_to_all method: pairwise handle bytes (avg, min, max): 1.45061e+06 1375332 1525892 buffer bytes (avg, min, max): 175616 125440 225792 setupds time 9.2419E-02 seconds 0 8 201344 1536 8 max multiplicity done :: setup mesh topology call usrdat done :: usrdat generate geometry data NOTE: All elements deformed , param(59) ^=0 done :: generate geometry data call usrdat2 done :: usrdat2 regenerate geometry data 1 NOTE: All elements deformed , param(59) ^=0 done :: regenerate geometry data 1 verify mesh topology 0.000000000000000E+000 6.28318530717959 Xrange -1.00000000000000 1.00000000000000 Yrange 0.000000000000000E+000 3.14159265358979 Zrange done :: verify mesh topology IFTRAN = T IFFLOW = T IFHEAT = F IFSPLIT = T IFLOMACH = F IFUSERVP = F IFUSERMV = F IFPERT = F IFADJ = F IFSTRS = F IFCHAR = T IFCYCLIC = F IFAXIS = F IFMVBD = F IFMELT = F IFNEKNEK = F IFSYNC = F IFVCOR = T IFINTQ = F IFGEOM = F IFSURT = F IFWCNO = F IFTMSH for field 1 = F IFADVC for field 1 = T IFNONL for field 1 = F Dealiasing enabled, lxd= 8 Estimated eigenvalues EIGAA = 1.23913370009078 EIGGA = 1862221.21607236 EIGAE = 0.250000000000000 EIGAS = 1.681282119258565E-002 EIGGE = 1862221.21607236 EIGGS = 2.00000000000000 verify mesh topology 0.000000000000000E+000 6.28318530717959 Xrange -1.00000000000000 1.00000000000000 Yrange 0.000000000000000E+000 3.14159265358979 Zrange done :: verify mesh topology E-solver strategy: 0 itr mg_nx: 1 3 7 mg_ny: 1 3 7 mg_nz: 1 3 7 call usrsetvert done :: usrsetvert gs_setup: 448 unique labels shared pairwise times (avg, min, max): 7.93538e-06 7.8488e-06 8.0526e-06 crystal router : 6.85905e-06 6.72e-06 6.9978e-06 all reduce : 1.20532e-05 1.11753e-05 1.28944e-05 used all_to_all method: crystal router handle bytes (avg, min, max): 50812 44668 56956 buffer bytes (avg, min, max): 6144 5120 7168 setupds time 3.1089E-03 seconds 1 2 1664 1536 setvert3d: 4 30336 42624 30336 30336 call usrsetvert done :: usrsetvert gs_setup: 4032 unique labels shared pairwise times (avg, min, max): 8.37387e-06 8.2548e-06 8.5004e-06 crystal router : 1.86812e-05 1.83826e-05 1.89784e-05 all reduce : 4.4251e-05 4.40251e-05 4.44275e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 269940 256100 283780 buffer bytes (avg, min, max): 32256 23040 41472 setupds time 2.4576E-02 seconds 2 4 30336 1536 setvert3d: 4 30336 42624 30336 30336 call usrsetvert done :: usrsetvert gs_setup: 4032 unique labels shared pairwise times (avg, min, max): 8.65523e-06 8.5168e-06 8.7977e-06 crystal router : 1.94818e-05 1.93217e-05 1.96357e-05 all reduce : 5.97892e-05 5.95374e-05 5.99737e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 269940 256100 283780 buffer bytes (avg, min, max): 32256 23040 41472 setupds time 1.4160E-02 seconds 3 4 30336 1536 setvert3d: 6 96896 195200 96896 96896 call usrsetvert done :: usrsetvert gs_setup: 11200 unique labels shared pairwise times (avg, min, max): 1.61057e-05 1.58103e-05 1.62982e-05 crystal router : 3.86536e-05 3.8384e-05 3.89447e-05 all reduce : 8.92118e-05 8.88703e-05 8.94562e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 742004 703588 780420 buffer bytes (avg, min, max): 89600 64000 115200 setupds time 4.3098E-02 seconds 4 6 96896 1536 regenerate geometry data 1 NOTE: All elements deformed , param(59) ^=0 done :: regenerate geometry data 1 h1_mg_nx: 1 3 7 h1_mg_ny: 1 3 7 h1_mg_nz: 1 3 7 call usrsetvert done :: usrsetvert gs_setup: 448 unique labels shared pairwise times (avg, min, max): 4.10923e-06 2.5509e-06 4.7765e-06 crystal router : 3.94603e-06 3.7989e-06 4.0103e-06 all reduce : 6.54198e-06 6.442e-06 6.5947e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 50812 44668 56956 buffer bytes (avg, min, max): 6144 5120 7168 setupds time 1.6990E-03 seconds 5 2 1664 1536 setvert3d: 4 30336 42624 30336 30336 call usrsetvert done :: usrsetvert gs_setup: 4032 unique labels shared pairwise times (avg, min, max): 7.51525e-06 7.3863e-06 7.68e-06 crystal router : 1.7878e-05 1.76051e-05 1.81134e-05 all reduce : 5.29887e-05 5.27139e-05 5.32422e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 269940 256100 283780 buffer bytes (avg, min, max): 32256 23040 41472 setupds time 2.5044E-02 seconds 6 4 30336 1536 setvert3d: 4 30336 42624 30336 30336 call usrsetvert done :: usrsetvert gs_setup: 4032 unique labels shared pairwise times (avg, min, max): 1.11506e-05 1.07538e-05 1.1453e-05 crystal router : 2.78917e-05 2.74376e-05 2.83874e-05 all reduce : 6.8896e-05 6.84774e-05 6.92927e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 269940 256100 283780 buffer bytes (avg, min, max): 32256 23040 41472 setupds time 2.0265E-02 seconds 7 4 30336 1536 setvert3d: 6 96896 195200 96896 96896 call usrsetvert done :: usrsetvert gs_setup: 11200 unique labels shared pairwise times (avg, min, max): 1.44095e-05 1.43056e-05 1.45192e-05 crystal router : 3.94263e-05 3.90332e-05 3.98261e-05 all reduce : 9.67785e-05 9.63923e-05 9.71425e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 742004 703588 780420 buffer bytes (avg, min, max): 89600 64000 115200 setupds time 4.3436E-02 seconds 8 6 96896 1536 setvert3d: 8 201344 533120 201344 201344 call usrsetvert done :: usrsetvert gs_setup: 21952 unique labels shared pairwise times (avg, min, max): 5.80216e-05 4.95078e-05 6.16774e-05 crystal router : 7.1144e-05 7.08725e-05 7.14649e-05 all reduce : 0.000235607 0.000234486 0.000236793 used all_to_all method: pairwise handle bytes (avg, min, max): 1.45061e+06 1375332 1525892 buffer bytes (avg, min, max): 175616 125440 225792 setupds time 8.4090E-02 seconds 9 8 201344 1536 setvert3d: 10 343680 1130112 343680 343680 call usrsetvert done :: usrsetvert gs_setup: 36288 unique labels shared pairwise times (avg, min, max): 3.15373e-05 3.06691e-05 3.2104e-05 crystal router : 9.24712e-05 9.09459e-05 9.39815e-05 all reduce : 0.000254788 0.00025378 0.000255437 used all_to_all method: pairwise handle bytes (avg, min, max): 2.39576e+06 2271332 2520196 buffer bytes (avg, min, max): 290304 207360 373248 setupds time 1.3027E-01 seconds 10 10 343680 1536 setup h1 coarse grid, nx_crs= 2 call usrsetvert done :: usrsetvert gs_setup: 448 unique labels shared pairwise times (avg, min, max): 5.59047e-06 5.5171e-06 5.677e-06 crystal router : 3.78503e-06 3.7079e-06 3.8472e-06 all reduce : 5.5058e-06 5.4973e-06 5.5169e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 50812 44668 56956 buffer bytes (avg, min, max): 6144 5120 7168 gs_setup: 448 unique labels shared pairwise times (avg, min, max): 1.01072e-05 9.958e-06 1.01904e-05 crystal router : 4.22242e-06 4.1446e-06 4.331e-06 all reduce : 8.35538e-06 8.1712e-06 8.4627e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 27068 23868 30268 buffer bytes (avg, min, max): 4736 3840 5632 AMG version 2.01 AMG: 8 levels AMG Chebyshev smoother data: AMG level 1: 3 iterations with rho = 0.79256 AMG level 2: 2 iterations with rho = 0.668297 AMG level 3: 2 iterations with rho = 0.481307 AMG level 4: 2 iterations with rho = 0.409707 AMG level 5: 2 iterations with rho = 0.458605 AMG level 6: 3 iterations with rho = 0.696293 AMG level 7: 2 iterations with rho = 0.666743 AMG: 1664 rows AMG: preading through rows ... done gs_setup: 431 unique labels shared pairwise times (avg, min, max): 2.78895e-06 2.5582e-06 2.8915e-06 crystal router : 4.09068e-06 3.9897e-06 4.2042e-06 all reduce : 1.05099e-05 9.6558e-06 1.14097e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 3261 2620 3832 buffer bytes (avg, min, max): 1724 1408 2040 gs_setup: 664 unique labels shared pairwise times (avg, min, max): 3.73e-06 3.6492e-06 3.8419e-06 crystal router : 4.80688e-06 4.7581e-06 4.8544e-06 all reduce : 1.91924e-05 1.88961e-05 1.95428e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 5588 3840 7948 buffer bytes (avg, min, max): 3200 2072 4328 gs_setup: 311 unique labels shared pairwise times (avg, min, max): 3.59183e-06 3.4744e-06 3.6762e-06 crystal router : 3.48463e-06 3.4264e-06 3.5338e-06 all reduce : 7.03768e-06 6.9313e-06 7.1389e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 9301 8788 9740 buffer bytes (avg, min, max): 3588 2992 4048 gs_setup: 421 unique labels shared pairwise times (avg, min, max): 4.046e-06 3.8288e-06 4.2149e-06 crystal router : 5.71768e-06 5.6236e-06 5.8628e-06 all reduce : 9.28628e-06 9.1472e-06 9.4127e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 4913 3240 6956 buffer bytes (avg, min, max): 3036 2088 4128 gs_setup: 151 unique labels shared pairwise times (avg, min, max): 2.19068e-06 2.1424e-06 2.242e-06 crystal router : 3.61935e-06 3.5275e-06 3.683e-06 all reduce : 1.15655e-05 1.14062e-05 1.16404e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 1331 940 1700 buffer bytes (avg, min, max): 628 448 808 gs_setup: 194 unique labels shared pairwise times (avg, min, max): 3.61092e-06 3.5012e-06 3.7449e-06 crystal router : 4.24627e-06 4.2222e-06 4.2926e-06 all reduce : 5.85915e-06 5.651e-06 6.022e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 3380 3208 3588 buffer bytes (avg, min, max): 2160 2032 2368 gs_setup: 80 unique labels shared pairwise times (avg, min, max): 2.38705e-06 2.3152e-06 2.4211e-06 crystal router : 2.44917e-06 2.3604e-06 2.5157e-06 all reduce : 3.76915e-06 3.6987e-06 3.8185e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 985 788 1228 buffer bytes (avg, min, max): 452 320 648 gs_setup: 98 unique labels shared pairwise times (avg, min, max): 3.19185e-06 3.1425e-06 3.2323e-06 crystal router : 2.91045e-06 2.8317e-06 3.0279e-06 all reduce : 4.24988e-06 4.1918e-06 4.3256e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 5506 5136 5876 buffer bytes (avg, min, max): 2352 2192 2512 gs_setup: 33 unique labels shared pairwise times (avg, min, max): 2.20093e-06 2.1362e-06 2.3165e-06 crystal router : 3.15857e-06 3.0855e-06 3.2308e-06 all reduce : 4.0025e-06 3.9097e-06 4.0784e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 616 512 788 buffer bytes (avg, min, max): 232 160 376 gs_setup: 39 unique labels shared pairwise times (avg, min, max): 2.55118e-06 2.5145e-06 2.5821e-06 crystal router : 3.45955e-06 3.3809e-06 3.5407e-06 all reduce : 4.61387e-06 4.495e-06 4.7137e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 955 936 972 buffer bytes (avg, min, max): 468 392 536 gs_setup: 8 unique labels shared pairwise times (avg, min, max): 2.7896e-06 2.684e-06 2.8771e-06 crystal router : 3.3584e-06 3.2604e-06 3.4714e-06 all reduce : 3.8325e-06 3.7504e-06 3.9734e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 413 392 424 buffer bytes (avg, min, max): 84 64 96 gs_setup: 8 unique labels shared pairwise times (avg, min, max): 2.76598e-06 2.7364e-06 2.8357e-06 crystal router : 2.47192e-06 2.4054e-06 2.5145e-06 all reduce : 2.75563e-06 2.6928e-06 2.8295e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 916 860 972 buffer bytes (avg, min, max): 192 176 208 gs_setup: 1 unique labels shared pairwise times (avg, min, max): 7.2665e-07 6.456e-07 7.68e-07 crystal router : 2.4244e-06 2.3879e-06 2.4719e-06 all reduce : 2.57698e-06 2.5591e-06 2.5873e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 237 228 264 buffer bytes (avg, min, max): 12 8 24 gs_setup: 1 unique labels shared pairwise times (avg, min, max): 7.836e-07 6.3e-07 8.848e-07 crystal router : 2.57503e-06 2.4694e-06 2.6345e-06 all reduce : 2.86405e-06 2.8357e-06 2.9139e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 237 228 264 buffer bytes (avg, min, max): 12 8 24 gs_setup: 405 unique labels shared pairwise times (avg, min, max): 2.43873e-06 2.2721e-06 2.5217e-06 crystal router : 3.87707e-06 3.8341e-06 3.9225e-06 all reduce : 7.58878e-06 7.5007e-06 7.6681e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 3079 2020 4152 buffer bytes (avg, min, max): 1620 1024 2216 gs_setup: 235 unique labels shared pairwise times (avg, min, max): 3.03253e-06 2.9581e-06 3.1371e-06 crystal router : 4.62493e-06 4.5157e-06 4.7079e-06 all reduce : 6.30792e-06 6.2306e-06 6.4236e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 2456 1268 3872 buffer bytes (avg, min, max): 1368 600 2224 gs_setup: 232 unique labels shared pairwise times (avg, min, max): 3.3132e-06 3.2543e-06 3.3618e-06 crystal router : 3.97125e-06 3.9468e-06 3.9908e-06 all reduce : 9.85658e-06 9.7844e-06 9.8952e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 3335 2484 4152 buffer bytes (avg, min, max): 2076 1568 2664 gs_setup: 96 unique labels shared pairwise times (avg, min, max): 8.03052e-06 7.9335e-06 8.1011e-06 crystal router : 3.56828e-06 3.5204e-06 3.6189e-06 all reduce : 6.4523e-06 6.3963e-06 6.5105e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 5404 5100 5568 buffer bytes (avg, min, max): 2304 2256 2352 gs_setup: 59 unique labels shared pairwise times (avg, min, max): 3.0593e-06 2.967e-06 3.1159e-06 crystal router : 3.37507e-06 3.315e-06 3.443e-06 all reduce : 8.04967e-06 8.032e-06 8.0607e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 1295 1288 1304 buffer bytes (avg, min, max): 708 680 744 gs_setup: 31 unique labels shared pairwise times (avg, min, max): 2.94198e-06 2.8528e-06 2.9872e-06 crystal router : 2.7749e-06 2.6955e-06 2.8159e-06 all reduce : 4.59447e-06 4.5455e-06 4.6566e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 2089 1864 2336 buffer bytes (avg, min, max): 744 640 848 gs_setup: 7 unique labels shared pairwise times (avg, min, max): 2.88287e-06 2.8044e-06 2.9556e-06 crystal router : 2.52328e-06 2.4726e-06 2.5612e-06 all reduce : 2.83837e-06 2.7564e-06 2.9157e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 865 832 888 buffer bytes (avg, min, max): 168 160 176 done :: setup h1 coarse grid 2.36721729199780 sec call usrdat3 done :: usrdat3 set initial conditions Checking restart options: turbChannel0.f00001 nekuic (1) for ifld 1 Reading checkpoint data FILE: turbChannel0.f00001 0 2.0000E+02 done :: Read checkpoint data avg data-throughput = 2.5MBps io-nodes = 4 xyz min 0.0000 -1.0000 0.0000 uvwpt min NaN NaN NaN NaN 0.0000 PS min 0.99000E+22 xyz max 6.2832 1.0000 3.1416 uvwpt max NaN NaN NaN NaN 0.0000 PS max -0.99000E+22 Restart: recompute geom. factors. regenerate geometry data 1 NOTE: All elements deformed , param(59) ^=0 done :: regenerate geometry data 1 done :: set initial conditions call userchk 2.0000E+02 NaN NaN monitor Start collecting statistics ... done :: userchk gridpoints unique/tot: 533120 786432 dofs: 520576 533120 Initial time: 0.2000000E+03 Initialization successfully completed 13.736 sec Starting time loop ... WARNING: DT<0 or DTFS<0 Reset DT WARNING: Set DT=0.001 (arbitrarily) Final time step = 0.000000000000000E+000 HPF : 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.000000 Solving for fluid 1 1.00000E-04 NaN NaN NaN 1 Divergence 2 1.00000E-04 NaN NaN NaN 1 Divergence 3 1.00000E-04 NaN NaN NaN 1 Divergence 4 1.00000E-04 NaN NaN NaN 1 Divergence 5 1.00000E-04 NaN NaN NaN 1 Divergence 6 1.00000E-04 NaN NaN NaN 1 Divergence 7 1.00000E-04 NaN NaN NaN 1 Divergence 8 1.00000E-04 NaN NaN NaN 1 Divergence 9 1.00000E-04 NaN NaN NaN 1 Divergence 10 1.00000E-04 NaN NaN NaN 1 Divergence 11 1.00000E-04 NaN NaN NaN 1 Divergence 12 1.00000E-04 NaN NaN NaN 1 Divergence 13 1.00000E-04 NaN NaN NaN 1 Divergence 14 1.00000E-04 NaN NaN NaN 1 Divergence 15 1.00000E-04 NaN NaN NaN 1 Divergence 16 1.00000E-04 NaN NaN NaN 1 Divergence 17 1.00000E-04 NaN NaN NaN 1 Divergence 18 1.00000E-04 NaN NaN NaN 1 Divergence 19 1.00000E-04 NaN NaN NaN 1 Divergence 20 1.00000E-04 NaN NaN NaN 1 Divergence 21 1.00000E-04 NaN NaN NaN 1 Divergence 22 1.00000E-04 NaN NaN NaN 1 Divergence 23 1.00000E-04 NaN NaN NaN 1 Divergence 24 1.00000E-04 NaN NaN NaN 1 Divergence 25 1.00000E-04 NaN NaN NaN 1 Divergence 26 1.00000E-04 NaN NaN NaN 1 Divergence 27 1.00000E-04 NaN NaN NaN 1 Divergence 28 1.00000E-04 NaN NaN NaN 1 Divergence 29 1.00000E-04 NaN NaN NaN 1 Divergence 30 1.00000E-04 NaN NaN NaN 1 Divergence 31 1.00000E-04 NaN NaN NaN 1 Divergence 32 1.00000E-04 NaN NaN NaN 1 Divergence 33 1.00000E-04 NaN NaN NaN 1 Divergence 34 1.00000E-04 NaN NaN NaN 1 Divergence 35 1.00000E-04 NaN NaN NaN 1 Divergence 36 1.00000E-04 NaN NaN NaN 1 Divergence 37 1.00000E-04 NaN NaN NaN 1 Divergence 38 1.00000E-04 NaN NaN NaN 1 Divergence 39 1.00000E-04 NaN NaN NaN 1 Divergence 40 1.00000E-04 NaN NaN NaN 1 Divergence 41 1.00000E-04 NaN NaN NaN 1 Divergence 42 1.00000E-04 NaN NaN NaN 1 Divergence 43 1.00000E-04 NaN NaN NaN 1 Divergence 44 1.00000E-04 NaN NaN NaN 1 Divergence 45 1.00000E-04 NaN NaN NaN 1 Divergence 46 1.00000E-04 NaN NaN NaN 1 Divergence 47 1.00000E-04 NaN NaN NaN 1 Divergence 48 1.00000E-04 NaN NaN NaN 1 Divergence 49 1.00000E-04 NaN NaN NaN 1 Divergence 50 1.00000E-04 NaN NaN NaN 1 Divergence 51 1.00000E-04 NaN NaN NaN 1 Divergence 52 1.00000E-04 NaN NaN NaN 1 Divergence 53 1.00000E-04 NaN NaN NaN 1 Divergence 54 1.00000E-04 NaN NaN NaN 1 Divergence 55 1.00000E-04 NaN NaN NaN 1 Divergence 56 1.00000E-04 NaN NaN NaN 1 Divergence 57 1.00000E-04 NaN NaN NaN 1 Divergence 58 1.00000E-04 NaN NaN NaN 1 Divergence 59 1.00000E-04 NaN NaN NaN 1 Divergence 60 1.00000E-04 NaN NaN NaN 1 Divergence 61 1.00000E-04 NaN NaN NaN 1 Divergence 62 1.00000E-04 NaN NaN NaN 1 Divergence 63 1.00000E-04 NaN NaN NaN 1 Divergence 64 1.00000E-04 NaN NaN NaN 1 Divergence 65 1.00000E-04 NaN NaN NaN 1 Divergence 66 1.00000E-04 NaN NaN NaN 1 Divergence 67 1.00000E-04 NaN NaN NaN 1 Divergence 68 1.00000E-04 NaN NaN NaN 1 Divergence 69 1.00000E-04 NaN NaN NaN 1 Divergence 70 1.00000E-04 NaN NaN NaN 1 Divergence 71 1.00000E-04 NaN NaN NaN 1 Divergence 72 1.00000E-04 NaN NaN NaN 1 Divergence 73 1.00000E-04 NaN NaN NaN 1 Divergence 74 1.00000E-04 NaN NaN NaN 1 Divergence 75 1.00000E-04 NaN NaN NaN 1 Divergence 76 1.00000E-04 NaN NaN NaN 1 Divergence 77 1.00000E-04 NaN NaN NaN 1 Divergence 78 1.00000E-04 NaN NaN NaN 1 Divergence 79 1.00000E-04 NaN NaN NaN 1 Divergence 80 1.00000E-04 NaN NaN NaN 1 Divergence 81 1.00000E-04 NaN NaN NaN 1 Divergence 82 1.00000E-04 NaN NaN NaN 1 Divergence 83 1.00000E-04 NaN NaN NaN 1 Divergence 84 1.00000E-04 NaN NaN NaN 1 Divergence 85 1.00000E-04 NaN NaN NaN 1 Divergence 86 1.00000E-04 NaN NaN NaN 1 Divergence 87 1.00000E-04 NaN NaN NaN 1 Divergence 88 1.00000E-04 NaN NaN NaN 1 Divergence 89 1.00000E-04 NaN NaN NaN 1 Divergence 90 1.00000E-04 NaN NaN NaN 1 Divergence 91 1.00000E-04 NaN NaN NaN 1 Divergence 92 1.00000E-04 NaN NaN NaN 1 Divergence 93 1.00000E-04 NaN NaN NaN 1 Divergence 94 1.00000E-04 NaN NaN NaN 1 Divergence 95 1.00000E-04 NaN NaN NaN 1 Divergence 96 1.00000E-04 NaN NaN NaN 1 Divergence 97 1.00000E-04 NaN NaN NaN 1 Divergence 98 1.00000E-04 NaN NaN NaN 1 Divergence 99 1.00000E-04 NaN NaN NaN 1 Divergence 100 1.00000E-04 NaN NaN NaN 1 Divergence 101 1.00000E-04 NaN NaN NaN 1 Divergence 102 1.00000E-04 NaN NaN NaN 1 Divergence 103 1.00000E-04 NaN NaN NaN 1 Divergence 104 1.00000E-04 NaN NaN NaN 1 Divergence 105 1.00000E-04 NaN NaN NaN 1 Divergence 106 1.00000E-04 NaN NaN NaN 1 Divergence 107 1.00000E-04 NaN NaN NaN 1 Divergence 108 1.00000E-04 NaN NaN NaN 1 Divergence 109 1.00000E-04 NaN NaN NaN 1 Divergence 110 1.00000E-04 NaN NaN NaN 1 Divergence 111 1.00000E-04 NaN NaN NaN 1 Divergence 112 1.00000E-04 NaN NaN NaN 1 Divergence 113 1.00000E-04 NaN NaN NaN 1 Divergence 114 1.00000E-04 NaN NaN NaN 1 Divergence 115 1.00000E-04 NaN NaN NaN 1 Divergence 116 1.00000E-04 NaN NaN NaN 1 Divergence 117 1.00000E-04 NaN NaN NaN 1 Divergence 118 1.00000E-04 NaN NaN NaN 1 Divergence 119 1.00000E-04 NaN NaN NaN 1 Divergence 120 1.00000E-04 NaN NaN NaN 1 Divergence 121 1.00000E-04 NaN NaN NaN 1 Divergence 122 1.00000E-04 NaN NaN NaN 1 Divergence 123 1.00000E-04 NaN NaN NaN 1 Divergence 124 1.00000E-04 NaN NaN NaN 1 Divergence 125 1.00000E-04 NaN NaN NaN 1 Divergence 126 1.00000E-04 NaN NaN NaN 1 Divergence 127 1.00000E-04 NaN NaN NaN 1 Divergence 128 1.00000E-04 NaN NaN NaN 1 Divergence 129 1.00000E-04 NaN NaN NaN 1 Divergence 130 1.00000E-04 NaN NaN NaN 1 Divergence 131 1.00000E-04 NaN NaN NaN 1 Divergence 132 1.00000E-04 NaN NaN NaN 1 Divergence 133 1.00000E-04 NaN NaN NaN 1 Divergence 134 1.00000E-04 NaN NaN NaN 1 Divergence 135 1.00000E-04 NaN NaN NaN 1 Divergence 136 1.00000E-04 NaN NaN NaN 1 Divergence 137 1.00000E-04 NaN NaN NaN 1 Divergence 138 1.00000E-04 NaN NaN NaN 1 Divergence 139 1.00000E-04 NaN NaN NaN 1 Divergence 140 1.00000E-04 NaN NaN NaN 1 Divergence 141 1.00000E-04 NaN NaN NaN 1 Divergence 142 1.00000E-04 NaN NaN NaN 1 Divergence 143 1.00000E-04 NaN NaN NaN 1 Divergence 144 1.00000E-04 NaN NaN NaN 1 Divergence 145 1.00000E-04 NaN NaN NaN 1 Divergence 146 1.00000E-04 NaN NaN NaN 1 Divergence 147 1.00000E-04 NaN NaN NaN 1 Divergence 148 1.00000E-04 NaN NaN NaN 1 Divergence 149 1.00000E-04 NaN NaN NaN 1 Divergence 150 1.00000E-04 NaN NaN NaN 1 Divergence 151 1.00000E-04 NaN NaN NaN 1 Divergence 152 1.00000E-04 NaN NaN NaN 1 Divergence 153 1.00000E-04 NaN NaN NaN 1 Divergence 154 1.00000E-04 NaN NaN NaN 1 Divergence 155 1.00000E-04 NaN NaN NaN 1 Divergence 156 1.00000E-04 NaN NaN NaN 1 Divergence 157 1.00000E-04 NaN NaN NaN 1 Divergence 158 1.00000E-04 NaN NaN NaN 1 Divergence 159 1.00000E-04 NaN NaN NaN 1 Divergence 160 1.00000E-04 NaN NaN NaN 1 Divergence 161 1.00000E-04 NaN NaN NaN 1 Divergence 162 1.00000E-04 NaN NaN NaN 1 Divergence 163 1.00000E-04 NaN NaN NaN 1 Divergence 164 1.00000E-04 NaN NaN NaN 1 Divergence 165 1.00000E-04 NaN NaN NaN 1 Divergence 166 1.00000E-04 NaN NaN NaN 1 Divergence 167 1.00000E-04 NaN NaN NaN 1 Divergence 168 1.00000E-04 NaN NaN NaN 1 Divergence 169 1.00000E-04 NaN NaN NaN 1 Divergence 170 1.00000E-04 NaN NaN NaN 1 Divergence 171 1.00000E-04 NaN NaN NaN 1 Divergence 172 1.00000E-04 NaN NaN NaN 1 Divergence 173 1.00000E-04 NaN NaN NaN 1 Divergence 174 1.00000E-04 NaN NaN NaN 1 Divergence 175 1.00000E-04 NaN NaN NaN 1 Divergence 176 1.00000E-04 NaN NaN NaN 1 Divergence 177 1.00000E-04 NaN NaN NaN 1 Divergence 178 1.00000E-04 NaN NaN NaN 1 Divergence 179 1.00000E-04 NaN NaN NaN 1 Divergence 180 1.00000E-04 NaN NaN NaN 1 Divergence 181 1.00000E-04 NaN NaN NaN 1 Divergence 182 1.00000E-04 NaN NaN NaN 1 Divergence 183 1.00000E-04 NaN NaN NaN 1 Divergence 184 1.00000E-04 NaN NaN NaN 1 Divergence 185 1.00000E-04 NaN NaN NaN 1 Divergence 186 1.00000E-04 NaN NaN NaN 1 Divergence 187 1.00000E-04 NaN NaN NaN 1 Divergence 188 1.00000E-04 NaN NaN NaN 1 Divergence 189 1.00000E-04 NaN NaN NaN 1 Divergence 190 1.00000E-04 NaN NaN NaN 1 Divergence 191 1.00000E-04 NaN NaN NaN 1 Divergence 192 1.00000E-04 NaN NaN NaN 1 Divergence 193 1.00000E-04 NaN NaN NaN 1 Divergence 194 1.00000E-04 NaN NaN NaN 1 Divergence 195 1.00000E-04 NaN NaN NaN 1 Divergence 196 1.00000E-04 NaN NaN NaN 1 Divergence 197 1.00000E-04 NaN NaN NaN 1 Divergence 198 1.00000E-04 NaN NaN NaN 1 Divergence 199 1.00000E-04 NaN NaN NaN 1 Divergence 200 1.00000E-04 NaN NaN NaN 1 Divergence 201 1.00000E-04 NaN NaN NaN 1 Divergence 202 1.00000E-04 NaN NaN NaN 1 Divergence 203 1.00000E-04 NaN NaN NaN 1 Divergence 204 1.00000E-04 NaN NaN NaN 1 Divergence 205 1.00000E-04 NaN NaN NaN 1 Divergence 206 1.00000E-04 NaN NaN NaN 1 Divergence 207 1.00000E-04 NaN NaN NaN 1 Divergence 208 1.00000E-04 NaN NaN NaN 1 Divergence 209 1.00000E-04 NaN NaN NaN 1 Divergence 210 1.00000E-04 NaN NaN NaN 1 Divergence 211 1.00000E-04 NaN NaN NaN 1 Divergence 212 1.00000E-04 NaN NaN NaN 1 Divergence 213 1.00000E-04 NaN NaN NaN 1 Divergence 214 1.00000E-04 NaN NaN NaN 1 Divergence 215 1.00000E-04 NaN NaN NaN 1 Divergence 216 1.00000E-04 NaN NaN NaN 1 Divergence 217 1.00000E-04 NaN NaN NaN 1 Divergence 218 1.00000E-04 NaN NaN NaN 1 Divergence 219 1.00000E-04 NaN NaN NaN 1 Divergence 220 1.00000E-04 NaN NaN NaN 1 Divergence 221 1.00000E-04 NaN NaN NaN 1 Divergence 222 1.00000E-04 NaN NaN NaN 1 Divergence 223 1.00000E-04 NaN NaN NaN 1 Divergence 224 1.00000E-04 NaN NaN NaN 1 Divergence 225 1.00000E-04 NaN NaN NaN 1 Divergence 226 1.00000E-04 NaN NaN NaN 1 Divergence 227 1.00000E-04 NaN NaN NaN 1 Divergence 228 1.00000E-04 NaN NaN NaN 1 Divergence 229 1.00000E-04 NaN NaN NaN 1 Divergence 230 1.00000E-04 NaN NaN NaN 1 Divergence 231 1.00000E-04 NaN NaN NaN 1 Divergence 232 1.00000E-04 NaN NaN NaN 1 Divergence 233 1.00000E-04 NaN NaN NaN 1 Divergence 234 1.00000E-04 NaN NaN NaN 1 Divergence 235 1.00000E-04 NaN NaN NaN 1 Divergence 236 1.00000E-04 NaN NaN NaN 1 Divergence 237 1.00000E-04 NaN NaN NaN 1 Divergence 238 1.00000E-04 NaN NaN NaN 1 Divergence 239 1.00000E-04 NaN NaN NaN 1 Divergence 240 1.00000E-04 NaN NaN NaN 1 Divergence 241 1.00000E-04 NaN NaN NaN 1 Divergence 242 1.00000E-04 NaN NaN NaN 1 Divergence 243 1.00000E-04 NaN NaN NaN 1 Divergence 244 1.00000E-04 NaN NaN NaN 1 Divergence 245 1.00000E-04 NaN NaN NaN 1 Divergence 246 1.00000E-04 NaN NaN NaN 1 Divergence 247 1.00000E-04 NaN NaN NaN 1 Divergence 248 1.00000E-04 NaN NaN NaN 1 Divergence 249 1.00000E-04 NaN NaN NaN 1 Divergence 250 1.00000E-04 NaN NaN NaN 1 Divergence 251 1.00000E-04 NaN NaN NaN 1 Divergence 252 1.00000E-04 NaN NaN NaN 1 Divergence 253 1.00000E-04 NaN NaN NaN 1 Divergence 254 1.00000E-04 NaN NaN NaN 1 Divergence 255 1.00000E-04 NaN NaN NaN 1 Divergence 256 1.00000E-04 NaN NaN NaN 1 Divergence 257 1.00000E-04 NaN NaN NaN 1 Divergence 258 1.00000E-04 NaN NaN NaN 1 Divergence 259 1.00000E-04 NaN NaN NaN 1 Divergence 260 1.00000E-04 NaN NaN NaN 1 Divergence 261 1.00000E-04 NaN NaN NaN 1 Divergence 262 1.00000E-04 NaN NaN NaN 1 Divergence 263 1.00000E-04 NaN NaN NaN 1 Divergence 264 1.00000E-04 NaN NaN NaN 1 Divergence 265 1.00000E-04 NaN NaN NaN 1 Divergence 266 1.00000E-04 NaN NaN NaN 1 Divergence 267 1.00000E-04 NaN NaN NaN 1 Divergence 268 1.00000E-04 NaN NaN NaN 1 Divergence 269 1.00000E-04 NaN NaN NaN 1 Divergence 270 1.00000E-04 NaN NaN NaN 1 Divergence 271 1.00000E-04 NaN NaN NaN 1 Divergence 272 1.00000E-04 NaN NaN NaN 1 Divergence 273 1.00000E-04 NaN NaN NaN 1 Divergence 274 1.00000E-04 NaN NaN NaN 1 Divergence 275 1.00000E-04 NaN NaN NaN 1 Divergence 276 1.00000E-04 NaN NaN NaN 1 Divergence 277 1.00000E-04 NaN NaN NaN 1 Divergence 278 1.00000E-04 NaN NaN NaN 1 Divergence 279 1.00000E-04 NaN NaN NaN 1 Divergence 280 1.00000E-04 NaN NaN NaN 1 Divergence 281 1.00000E-04 NaN NaN NaN 1 Divergence 282 1.00000E-04 NaN NaN NaN 1 Divergence 283 1.00000E-04 NaN NaN NaN 1 Divergence 284 1.00000E-04 NaN NaN NaN 1 Divergence 285 1.00000E-04 NaN NaN NaN 1 Divergence 286 1.00000E-04 NaN NaN NaN 1 Divergence 287 1.00000E-04 NaN NaN NaN 1 Divergence 288 1.00000E-04 NaN NaN NaN 1 Divergence 289 1.00000E-04 NaN NaN NaN 1 Divergence 290 1.00000E-04 NaN NaN NaN 1 Divergence 291 1.00000E-04 NaN NaN NaN 1 Divergence 292 1.00000E-04 NaN NaN NaN 1 Divergence 293 1.00000E-04 NaN NaN NaN 1 Divergence 294 1.00000E-04 NaN NaN NaN 1 Divergence 295 1.00000E-04 NaN NaN NaN 1 Divergence 296 1.00000E-04 NaN NaN NaN 1 Divergence 297 1.00000E-04 NaN NaN NaN 1 Divergence 298 1.00000E-04 NaN NaN NaN 1 Divergence 299 1.00000E-04 NaN NaN NaN 1 Divergence 300 1.00000E-04 NaN NaN NaN 1 Divergence 301 1.00000E-04 NaN NaN NaN 1 Divergence 302 1.00000E-04 NaN NaN NaN 1 Divergence 303 1.00000E-04 NaN NaN NaN 1 Divergence 304 1.00000E-04 NaN NaN NaN 1 Divergence 305 1.00000E-04 NaN NaN NaN 1 Divergence 306 1.00000E-04 NaN NaN NaN 1 Divergence 307 1.00000E-04 NaN NaN NaN 1 Divergence 308 1.00000E-04 NaN NaN NaN 1 Divergence 309 1.00000E-04 NaN NaN NaN 1 Divergence 310 1.00000E-04 NaN NaN NaN 1 Divergence 311 1.00000E-04 NaN NaN NaN 1 Divergence 312 1.00000E-04 NaN NaN NaN 1 Divergence 313 1.00000E-04 NaN NaN NaN 1 Divergence 314 1.00000E-04 NaN NaN NaN 1 Divergence 315 1.00000E-04 NaN NaN NaN 1 Divergence 316 1.00000E-04 NaN NaN NaN 1 Divergence 317 1.00000E-04 NaN NaN NaN 1 Divergence 318 1.00000E-04 NaN NaN NaN 1 Divergence 319 1.00000E-04 NaN NaN NaN 1 Divergence 320 1.00000E-04 NaN NaN NaN 1 Divergence 321 1.00000E-04 NaN NaN NaN 1 Divergence 322 1.00000E-04 NaN NaN NaN 1 Divergence 323 1.00000E-04 NaN NaN NaN 1 Divergence 324 1.00000E-04 NaN NaN NaN 1 Divergence 325 1.00000E-04 NaN NaN NaN 1 Divergence 326 1.00000E-04 NaN NaN NaN 1 Divergence 327 1.00000E-04 NaN NaN NaN 1 Divergence 328 1.00000E-04 NaN NaN NaN 1 Divergence 329 1.00000E-04 NaN NaN NaN 1 Divergence 330 1.00000E-04 NaN NaN NaN 1 Divergence 331 1.00000E-04 NaN NaN NaN 1 Divergence 332 1.00000E-04 NaN NaN NaN 1 Divergence 333 1.00000E-04 NaN NaN NaN 1 Divergence 334 1.00000E-04 NaN NaN NaN 1 Divergence 335 1.00000E-04 NaN NaN NaN 1 Divergence 336 1.00000E-04 NaN NaN NaN 1 Divergence 337 1.00000E-04 NaN NaN NaN 1 Divergence 338 1.00000E-04 NaN NaN NaN 1 Divergence 339 1.00000E-04 NaN NaN NaN 1 Divergence 340 1.00000E-04 NaN NaN NaN 1 Divergence 341 1.00000E-04 NaN NaN NaN 1 Divergence 342 1.00000E-04 NaN NaN NaN 1 Divergence 343 1.00000E-04 NaN NaN NaN 1 Divergence 344 1.00000E-04 NaN NaN NaN 1 Divergence 345 1.00000E-04 NaN NaN NaN 1 Divergence 346 1.00000E-04 NaN NaN NaN 1 Divergence 347 1.00000E-04 NaN NaN NaN 1 Divergence 348 1.00000E-04 NaN NaN NaN 1 Divergence 349 1.00000E-04 NaN NaN NaN 1 Divergence 350 1.00000E-04 NaN NaN NaN 1 Divergence 351 1.00000E-04 NaN NaN NaN 1 Divergence 352 1.00000E-04 NaN NaN NaN 1 Divergence 353 1.00000E-04 NaN NaN NaN 1 Divergence 354 1.00000E-04 NaN NaN NaN 1 Divergence 355 1.00000E-04 NaN NaN NaN 1 Divergence 356 1.00000E-04 NaN NaN NaN 1 Divergence 357 1.00000E-04 NaN NaN NaN 1 Divergence 358 1.00000E-04 NaN NaN NaN 1 Divergence 359 1.00000E-04 NaN NaN NaN 1 Divergence 360 1.00000E-04 NaN NaN NaN 1 Divergence 361 1.00000E-04 NaN NaN NaN 1 Divergence 362 1.00000E-04 NaN NaN NaN 1 Divergence 363 1.00000E-04 NaN NaN NaN 1 Divergence 364 1.00000E-04 NaN NaN NaN 1 Divergence 365 1.00000E-04 NaN NaN NaN 1 Divergence 366 1.00000E-04 NaN NaN NaN 1 Divergence 367 1.00000E-04 NaN NaN NaN 1 Divergence 368 1.00000E-04 NaN NaN NaN 1 Divergence 369 1.00000E-04 NaN NaN NaN 1 Divergence 370 1.00000E-04 NaN NaN NaN 1 Divergence 371 1.00000E-04 NaN NaN NaN 1 Divergence 372 1.00000E-04 NaN NaN NaN 1 Divergence 373 1.00000E-04 NaN NaN NaN 1 Divergence 374 1.00000E-04 NaN NaN NaN 1 Divergence 375 1.00000E-04 NaN NaN NaN 1 Divergence 376 1.00000E-04 NaN NaN NaN 1 Divergence 377 1.00000E-04 NaN NaN NaN 1 Divergence 378 1.00000E-04 NaN NaN NaN 1 Divergence 379 1.00000E-04 NaN NaN NaN 1 Divergence 380 1.00000E-04 NaN NaN NaN 1 Divergence 381 1.00000E-04 NaN NaN NaN 1 Divergence 382 1.00000E-04 NaN NaN NaN 1 Divergence 383 1.00000E-04 NaN NaN NaN 1 Divergence 384 1.00000E-04 NaN NaN NaN 1 Divergence 385 1.00000E-04 NaN NaN NaN 1 Divergence 386 1.00000E-04 NaN NaN NaN 1 Divergence 387 1.00000E-04 NaN NaN NaN 1 Divergence 388 1.00000E-04 NaN NaN NaN 1 Divergence 389 1.00000E-04 NaN NaN NaN 1 Divergence 390 1.00000E-04 NaN NaN NaN 1 Divergence 391 1.00000E-04 NaN NaN NaN 1 Divergence 392 1.00000E-04 NaN NaN NaN 1 Divergence 393 1.00000E-04 NaN NaN NaN 1 Divergence 394 1.00000E-04 NaN NaN NaN 1 Divergence 395 1.00000E-04 NaN NaN NaN 1 Divergence 396 1.00000E-04 NaN NaN NaN 1 Divergence 397 1.00000E-04 NaN NaN NaN 1 Divergence 398 1.00000E-04 NaN NaN NaN 1 Divergence 399 1.00000E-04 NaN NaN NaN 1 Divergence 400 1.00000E-04 NaN NaN NaN 1 Divergence 401 1.00000E-04 NaN NaN NaN 1 Divergence 402 1.00000E-04 NaN NaN NaN 1 Divergence 403 1.00000E-04 NaN NaN NaN 1 Divergence 404 1.00000E-04 NaN NaN NaN 1 Divergence 405 1.00000E-04 NaN NaN NaN 1 Divergence 406 1.00000E-04 NaN NaN NaN 1 Divergence 407 1.00000E-04 NaN NaN NaN 1 Divergence 408 1.00000E-04 NaN NaN NaN 1 Divergence 409 1.00000E-04 NaN NaN NaN 1 Divergence 410 1.00000E-04 NaN NaN NaN 1 Divergence 411 1.00000E-04 NaN NaN NaN 1 Divergence 412 1.00000E-04 NaN NaN NaN 1 Divergence 413 1.00000E-04 NaN NaN NaN 1 Divergence 414 1.00000E-04 NaN NaN NaN 1 Divergence 415 1.00000E-04 NaN NaN NaN 1 Divergence 416 1.00000E-04 NaN NaN NaN 1 Divergence 417 1.00000E-04 NaN NaN NaN 1 Divergence 418 1.00000E-04 NaN NaN NaN 1 Divergence 419 1.00000E-04 NaN NaN NaN 1 Divergence 420 1.00000E-04 NaN NaN NaN 1 Divergence 421 1.00000E-04 NaN NaN NaN 1 Divergence 422 1.00000E-04 NaN NaN NaN 1 Divergence 423 1.00000E-04 NaN NaN NaN 1 Divergence 424 1.00000E-04 NaN NaN NaN 1 Divergence 425 1.00000E-04 NaN NaN NaN 1 Divergence 426 1.00000E-04 NaN NaN NaN 1 Divergence 427 1.00000E-04 NaN NaN NaN 1 Divergence 428 1.00000E-04 NaN NaN NaN 1 Divergence 429 1.00000E-04 NaN NaN NaN 1 Divergence 430 1.00000E-04 NaN NaN NaN 1 Divergence 431 1.00000E-04 NaN NaN NaN 1 Divergence 432 1.00000E-04 NaN NaN NaN 1 Divergence 433 1.00000E-04 NaN NaN NaN 1 Divergence 434 1.00000E-04 NaN NaN NaN 1 Divergence 435 1.00000E-04 NaN NaN NaN 1 Divergence 436 1.00000E-04 NaN NaN NaN 1 Divergence 437 1.00000E-04 NaN NaN NaN 1 Divergence 438 1.00000E-04 NaN NaN NaN 1 Divergence 439 1.00000E-04 NaN NaN NaN 1 Divergence 440 1.00000E-04 NaN NaN NaN 1 Divergence 441 1.00000E-04 NaN NaN NaN 1 Divergence 442 1.00000E-04 NaN NaN NaN 1 Divergence 443 1.00000E-04 NaN NaN NaN 1 Divergence 444 1.00000E-04 NaN NaN NaN 1 Divergence 445 1.00000E-04 NaN NaN NaN 1 Divergence 446 1.00000E-04 NaN NaN NaN 1 Divergence 447 1.00000E-04 NaN NaN NaN 1 Divergence 448 1.00000E-04 NaN NaN NaN 1 Divergence 449 1.00000E-04 NaN NaN NaN 1 Divergence 450 1.00000E-04 NaN NaN NaN 1 Divergence 451 1.00000E-04 NaN NaN NaN 1 Divergence 452 1.00000E-04 NaN NaN NaN 1 Divergence 453 1.00000E-04 NaN NaN NaN 1 Divergence 454 1.00000E-04 NaN NaN NaN 1 Divergence 455 1.00000E-04 NaN NaN NaN 1 Divergence 456 1.00000E-04 NaN NaN NaN 1 Divergence 457 1.00000E-04 NaN NaN NaN 1 Divergence 458 1.00000E-04 NaN NaN NaN 1 Divergence 459 1.00000E-04 NaN NaN NaN 1 Divergence 460 1.00000E-04 NaN NaN NaN 1 Divergence 461 1.00000E-04 NaN NaN NaN 1 Divergence 462 1.00000E-04 NaN NaN NaN 1 Divergence 463 1.00000E-04 NaN NaN NaN 1 Divergence 464 1.00000E-04 NaN NaN NaN 1 Divergence 465 1.00000E-04 NaN NaN NaN 1 Divergence 466 1.00000E-04 NaN NaN NaN 1 Divergence 467 1.00000E-04 NaN NaN NaN 1 Divergence 468 1.00000E-04 NaN NaN NaN 1 Divergence 469 1.00000E-04 NaN NaN NaN 1 Divergence 470 1.00000E-04 NaN NaN NaN 1 Divergence 471 1.00000E-04 NaN NaN NaN 1 Divergence 472 1.00000E-04 NaN NaN NaN 1 Divergence 473 1.00000E-04 NaN NaN NaN 1 Divergence 474 1.00000E-04 NaN NaN NaN 1 Divergence 475 1.00000E-04 NaN NaN NaN 1 Divergence 476 1.00000E-04 NaN NaN NaN 1 Divergence 477 1.00000E-04 NaN NaN NaN 1 Divergence 478 1.00000E-04 NaN NaN NaN 1 Divergence 479 1.00000E-04 NaN NaN NaN 1 Divergence 480 1.00000E-04 NaN NaN NaN 1 Divergence 481 1.00000E-04 NaN NaN NaN 1 Divergence 482 1.00000E-04 NaN NaN NaN 1 Divergence 483 1.00000E-04 NaN NaN NaN 1 Divergence 484 1.00000E-04 NaN NaN NaN 1 Divergence 485 1.00000E-04 NaN NaN NaN 1 Divergence 486 1.00000E-04 NaN NaN NaN 1 Divergence 487 1.00000E-04 NaN NaN NaN 1 Divergence 488 1.00000E-04 NaN NaN NaN 1 Divergence 489 1.00000E-04 NaN NaN NaN 1 Divergence 490 1.00000E-04 NaN NaN NaN 1 Divergence 491 1.00000E-04 NaN NaN NaN 1 Divergence 492 1.00000E-04 NaN NaN NaN 1 Divergence 493 1.00000E-04 NaN NaN NaN 1 Divergence 494 1.00000E-04 NaN NaN NaN 1 Divergence 495 1.00000E-04 NaN NaN NaN 1 Divergence 496 1.00000E-04 NaN NaN NaN 1 Divergence 497 1.00000E-04 NaN NaN NaN 1 Divergence 498 1.00000E-04 NaN NaN NaN 1 Divergence 499 1.00000E-04 NaN NaN NaN 1 Divergence 500 1.00000E-04 NaN NaN NaN 1 Divergence 1 PRES gmres 500 NaN NaN 1.0000E-04 1.3084E+01 2.1669E+01 F 1 Hmholtz VELX 1 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 2 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 3 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 4 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 5 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 6 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 7 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 8 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 9 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 10 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 11 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 12 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 13 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 14 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 15 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 16 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 17 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 18 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 19 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 20 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 21 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 22 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 23 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 24 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 25 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 26 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 27 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 28 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 29 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 30 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 31 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 32 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 33 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 34 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 35 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 36 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 37 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 38 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 39 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 40 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 41 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 42 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 43 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 44 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 45 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 46 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 47 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 48 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 49 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 50 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 51 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 52 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 53 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 54 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 55 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 56 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 57 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 58 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 59 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 60 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 61 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 62 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 63 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 64 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 65 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 66 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 67 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 68 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 69 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 70 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 71 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 72 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 73 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 74 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 75 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 76 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 77 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 78 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 79 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 80 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 81 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 82 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 83 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 84 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 85 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 86 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 87 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 88 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 89 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 90 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 91 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 92 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 93 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 94 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 95 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 96 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 97 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 98 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 99 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 100 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Error Hmholtz VELX 100 NaN NaN 1.0000E-07 1 Hmholtz VELY 1 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 2 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 3 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 4 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 5 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 6 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 7 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 8 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 9 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 10 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 11 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 12 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 13 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 14 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 15 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 16 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 17 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 18 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 19 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 20 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 21 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 22 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 23 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 24 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 25 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 26 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 27 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 28 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 29 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 30 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 31 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 32 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 33 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 34 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 35 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 36 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 37 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 38 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 39 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 40 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 41 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 42 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 43 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 44 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 45 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 46 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 47 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 48 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 49 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 50 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 51 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 52 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 53 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 54 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 55 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 56 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 57 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 58 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 59 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 60 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 61 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 62 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 63 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 64 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 65 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 66 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 67 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 68 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 69 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 70 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 71 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 72 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 73 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 74 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 75 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 76 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 77 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 78 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 79 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 80 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 81 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 82 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 83 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 84 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 85 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 86 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 87 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 88 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 89 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 90 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 91 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 92 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 93 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 94 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 95 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 96 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 97 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 98 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 99 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 100 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Error Hmholtz VELY 100 NaN NaN 1.0000E-07 1 Hmholtz VELZ 1 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 2 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 3 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 4 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 5 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 6 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 7 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 8 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 9 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 10 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 11 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 12 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 13 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 14 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 15 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 16 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 17 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 18 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 19 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 20 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 21 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 22 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 23 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 24 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 25 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 26 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 27 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 28 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 29 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 30 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 31 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 32 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 33 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 34 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 35 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 36 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 37 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 38 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 39 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 40 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 41 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 42 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 43 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 44 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 45 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 46 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 47 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 48 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 49 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 50 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 51 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 52 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 53 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 54 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 55 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 56 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 57 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 58 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 59 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 60 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 61 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 62 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 63 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 64 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 65 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 66 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 67 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 68 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 69 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 70 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 71 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 72 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 73 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 74 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 75 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 76 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 77 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 78 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 79 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 80 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 81 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 82 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 83 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 84 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 85 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 86 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 87 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 88 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 89 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 90 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 91 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 92 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 93 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 94 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 95 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 96 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 97 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 98 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 99 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 100 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Error Hmholtz VELZ 100 NaN NaN 1.0000E-07 1 1.00000E-04 1.04290E-15 1.48092E-15 7.04224E-01 1 Divergence 1 PRES gmres 1 1.0429E-15 1.4809E-15 1.0000E-04 2.3331E-02 5.0854E-02 F 1 Hmholtz VELX 1 9.9982E-01 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 2 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 3 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 4 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 5 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 6 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 7 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 8 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 9 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 10 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 11 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 12 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 13 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 14 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 15 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 16 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 17 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 18 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 19 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 20 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 21 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 22 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 23 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 24 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 25 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 26 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 27 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 28 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 29 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 30 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 31 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 32 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 33 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 34 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 35 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 36 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 37 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 38 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 39 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 40 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 41 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 42 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 43 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 44 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 45 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 46 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 47 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 48 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 49 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 50 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 51 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 52 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 53 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 54 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 55 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 56 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 57 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 58 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 59 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 60 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 61 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 62 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 63 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 64 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 65 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 66 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 67 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 68 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 69 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 70 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 71 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 72 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 73 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 74 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 75 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 76 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 77 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 78 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 79 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 80 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 81 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 82 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 83 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 84 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 85 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 86 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 87 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 88 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 89 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 90 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 91 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 92 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 93 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 94 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 95 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 96 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 97 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 98 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 99 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 100 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Error Hmholtz VELX 100 NaN 9.9982E-01 1.0000E-07 1 Hmholtz VELY 1 8.0937E-16 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 0 8.0937E-16 8.0937E-16 1.0000E-07 1 Hmholtz VELZ 1 7.1883E-16 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 0 7.1883E-16 7.1883E-16 1.0000E-07 1 volflow X NaN NaN NaN 6.2832E+00 L1/L2 DIV(V) NaN NaN L1/L2 QTL 0.0000E+00 0.0000E+00 L1/L2 DIV(V)-QTL NaN NaN 1 Fluid done 2.0000E+02 2.6895E+01 2.0000E+02 NaN NaN monitor filt amp 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.5000 filt trn 1.0000 1.0000 1.0000 1.0000 1.0000 1.0000 1.0000 0.5000 1 sfilt: NaN vortx 1 2.0000E+02 Write checkpoint FILE: /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel0.f00001 1 2.0000E+02 done :: Write checkpoint file size = 21. MB avg data-throughput = 11.3MB/s io-nodes = 4 end of time-step loop runtime statistics: init time 13.7358070529990 0.462004458987539 prep time 1 1.87108852800156 6.293414284007534E-002 pres time 1 21.7905451879997 0.732925921409712 crsl time 501 0.183691413072665 6.178468552291153E-003 crsl min 0.183063570999366 crsl max 0.260289230038325 crsl avg 0.221352905275126 hmhz time 6 4.94836180700077 0.166438361480831 eslv time 0 0.000000000000000E+000 0.000000000000000E+000 proj time 0 0.000000000000000E+000 0.000000000000000E+000 usvp time 2 8.829280013742391E-004 2.969732117129529E-005 usfq time 0 1.237174799825880E-002 4.161242742134884E-004 usbc time 1 2.739972998824669E-003 9.215910925933331E-005 usbc min 2.302368000528077E-003 usbc max 1.831457500156830E-002 usb avg 6.439937250434014E-003 mltd time 3 1.305026299814926E-002 4.389461553180925E-004 cdtp time 4 1.176028400368523E-002 3.955576565467353E-004 axhm time 945 6.36171776202173 0.213976649608845 advc time 1 0.178863899000135 6.016094909539131E-003 mxmf time 0.000000000000000E+000 0.000000000000000E+000 adc3 time 0.000000000000000E+000 0.000000000000000E+000 col2 time 0.000000000000000E+000 0.000000000000000E+000 col3 time 0.000000000000000E+000 0.000000000000000E+000 a2s2 time 0.000000000000000E+000 0.000000000000000E+000 add2 time 0.000000000000000E+000 0.000000000000000E+000 invc time 0.000000000000000E+000 0.000000000000000E+000 tgop time 2480 1.02037628088146 3.432039994398663E-002 dadd time 0 3.58888928988017 0.120712445096209 vdss time 4 6.298328000411857E-003 2.118445322600121E-004 vdss min 6.298328000411857E-003 vdss max 2.789256400137674E-002 vdss avg 2.080069274961716E-002 dsum time 1463 1.95680818695473 6.581732724317946E-002 dsum min 1.52674149705126 dsum max 2.28399024302780 dsum avg 1.90933237102490 ddsl time 0 0.000000000000000E+000 0.000000000000000E+000 # nid tusbc tdadd tcrsl tvdss tdsum tgop qqq F 0 2.7400E-03 3.5889E+00 1.8369E-01 6.2983E-03 1.9568E+00 1.0204E+00 qqq 1 2.3024E-03 3.7084E+00 2.5837E-01 2.7040E-02 1.8698E+00 1.7594E+00 qqq 2 1.8315E-02 3.7437E+00 2.6029E-01 2.1972E-02 1.5267E+00 1.9577E+00 qqq 3 2.4028E-03 3.6736E+00 1.8306E-01 2.7893E-02 2.2840E+00 1.0771E+00 qqq run successful: dying ... total elapsed time : 4.35605E+01 sec total solver time w/o IO : 2.78598E+01 sec time/timestep : 2.78598E+01 sec avg throughput per timestep : 4.78395E+03 gridpts/CPUs total max memory usage : 2.00808E+00 GB -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Tue Jan 23 10:16:43 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Tue, 23 Jan 2018 16:16:43 +0000 Subject: [Nek5000-users] Nek5000-users Digest, Vol 107, Issue 32 In-Reply-To: References: Message-ID: Hello, Thank you for the reply. I think it might due to the re-posting, the original file does not look as messy as it is now, I am reattaching it at the end here (Hopefully it looks good now). For the restart file, am I supposed to post-process it using Visit or other command prior to calling it? For the .re2 file here in the turbChannel, I am aware of that it is ASCII file. The only difference I noticed is that the one here is not readable using any software whereas others are readable. Thanks, Ming ********************Log file***************************** Number of processors: 4 REAL wdsize : 8 INTEGER wdsize : 4 Timer accuracy : 9.40E-07 Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.par general = [(null)] general:startfrom = [turbChannel0.f00001] general:stopat = [endTime] general:endtime = [200] general:dt = [0] general:timestepper = [bdf2] general:extrapolation = [OIFS] general:variabledt = [yes] general:targetcfl = [2.0] general:writecontrol = [runTime] general:writeinterval = [100.0] general:userparam01 = [100] general:userparam02 = [20] general:userparam03 = [1] general:filtering = [hpfrt] general:filterweight = [10] general:filtercutoffratio = [0.9] problemtype = [(null)] problemtype:variableproperties = [no] problemtype:equation = [incompNS] pressure = [(null)] pressure:preconditioner = [semg_amg] pressure:residualtol = [1e-04] pressure:residualproj = [yes] velocity = [(null)] velocity:residualtol = [1e-07] velocity:density = [1] velocity:viscosity = [-2950] Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.re2 mapping elements to processors Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.ma2 1 384 384 1536 1536 NELV 2 384 384 1536 1536 NELV 3 384 384 1536 1536 NELV 0 384 384 1536 1536 NELV RANK 0 IEG 44 45 49 50 51 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 236 237 241 242 243 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 428 429 433 434 435 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 620 621 625 626 627 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 812 813 817 818 819 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 1004 1005 1009 1010 1011 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1196 1197 1201 1202 1203 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1388 1389 1393 1394 1395 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 element load imbalance: 0 384 384 done :: mapping 0.29167 sec preading mesh preading bc for ifld 1 done :: read .re2 file 0.51 sec nelgt/nelgv/lelt: 1536 1536 387 lx1 /lx2 /lx3 : 8 8 8 setup mesh topology Right-handed check complete for 1536 elements. OK. setvert3d: 8 201344 533120 201344 201344 call usrsetvert done :: usrsetvert gs_setup: 21952 unique labels shared pairwise times (avg, min, max): 2.92127e-05 2.76451e-05 3.00083e-05 crystal router : 7.82046e-05 7.75443e-05 7.88275e-05 all reduce : 0.000228323 0.000227655 0.000228766 used all_to_all method: pairwise handle bytes (avg, min, max): 1.45061e+06 1375332 1525892 buffer bytes (avg, min, max): 175616 125440 225792 setupds time 9.2419E-02 seconds 0 8 201344 1536 8 max multiplicity done :: setup mesh topology call usrdat done :: usrdat generate geometry data NOTE: All elements deformed , param(59) ^=0 done :: generate geometry data call usrdat2 done :: usrdat2 regenerate geometry data 1 NOTE: All elements deformed , param(59) ^=0 done :: regenerate geometry data 1 verify mesh topology 0.000000000000000E+000 6.28318530717959 Xrange -1.00000000000000 1.00000000000000 Yrange 0.000000000000000E+000 3.14159265358979 Zrange done :: verify mesh topology IFTRAN = T IFFLOW = T IFHEAT = F IFSPLIT = T IFLOMACH = F IFUSERVP = F IFUSERMV = F IFPERT = F IFADJ = F IFSTRS = F IFCHAR = T IFCYCLIC = F IFAXIS = F IFMVBD = F IFMELT = F IFNEKNEK = F IFSYNC = F IFVCOR = T IFINTQ = F IFGEOM = F IFSURT = F IFWCNO = F IFTMSH for field 1 = F IFADVC for field 1 = T IFNONL for field 1 = F Dealiasing enabled, lxd= 8 Estimated eigenvalues EIGAA = 1.23913370009078 EIGGA = 1862221.21607236 EIGAE = 0.250000000000000 EIGAS = 1.681282119258565E-002 EIGGE = 1862221.21607236 EIGGS = 2.00000000000000 verify mesh topology 0.000000000000000E+000 6.28318530717959 Xrange -1.00000000000000 1.00000000000000 Yrange 0.000000000000000E+000 3.14159265358979 Zrange done :: verify mesh topology E-solver strategy: 0 itr mg_nx: 1 3 7 mg_ny: 1 3 7 mg_nz: 1 3 7 call usrsetvert done :: usrsetvert gs_setup: 448 unique labels shared pairwise times (avg, min, max): 7.93538e-06 7.8488e-06 8.0526e-06 crystal router : 6.85905e-06 6.72e-06 6.9978e-06 all reduce : 1.20532e-05 1.11753e-05 1.28944e-05 used all_to_all method: crystal router handle bytes (avg, min, max): 50812 44668 56956 buffer bytes (avg, min, max): 6144 5120 7168 setupds time 3.1089E-03 seconds 1 2 1664 1536 setvert3d: 4 30336 42624 30336 30336 call usrsetvert done :: usrsetvert gs_setup: 4032 unique labels shared pairwise times (avg, min, max): 8.37387e-06 8.2548e-06 8.5004e-06 crystal router : 1.86812e-05 1.83826e-05 1.89784e-05 all reduce : 4.4251e-05 4.40251e-05 4.44275e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 269940 256100 283780 buffer bytes (avg, min, max): 32256 23040 41472 setupds time 2.4576E-02 seconds 2 4 30336 1536 setvert3d: 4 30336 42624 30336 30336 call usrsetvert done :: usrsetvert gs_setup: 4032 unique labels shared pairwise times (avg, min, max): 8.65523e-06 8.5168e-06 8.7977e-06 crystal router : 1.94818e-05 1.93217e-05 1.96357e-05 all reduce : 5.97892e-05 5.95374e-05 5.99737e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 269940 256100 283780 buffer bytes (avg, min, max): 32256 23040 41472 setupds time 1.4160E-02 seconds 3 4 30336 1536 setvert3d: 6 96896 195200 96896 96896 call usrsetvert done :: usrsetvert gs_setup: 11200 unique labels shared pairwise times (avg, min, max): 1.61057e-05 1.58103e-05 1.62982e-05 crystal router : 3.86536e-05 3.8384e-05 3.89447e-05 all reduce : 8.92118e-05 8.88703e-05 8.94562e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 742004 703588 780420 buffer bytes (avg, min, max): 89600 64000 115200 setupds time 4.3098E-02 seconds 4 6 96896 1536 regenerate geometry data 1 NOTE: All elements deformed , param(59) ^=0 done :: regenerate geometry data 1 h1_mg_nx: 1 3 7 h1_mg_ny: 1 3 7 h1_mg_nz: 1 3 7 call usrsetvert done :: usrsetvert gs_setup: 448 unique labels shared pairwise times (avg, min, max): 4.10923e-06 2.5509e-06 4.7765e-06 crystal router : 3.94603e-06 3.7989e-06 4.0103e-06 all reduce : 6.54198e-06 6.442e-06 6.5947e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 50812 44668 56956 buffer bytes (avg, min, max): 6144 5120 7168 setupds time 1.6990E-03 seconds 5 2 1664 1536 setvert3d: 4 30336 42624 30336 30336 call usrsetvert done :: usrsetvert gs_setup: 4032 unique labels shared pairwise times (avg, min, max): 7.51525e-06 7.3863e-06 7.68e-06 crystal router : 1.7878e-05 1.76051e-05 1.81134e-05 all reduce : 5.29887e-05 5.27139e-05 5.32422e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 269940 256100 283780 buffer bytes (avg, min, max): 32256 23040 41472 setupds time 2.5044E-02 seconds 6 4 30336 1536 setvert3d: 4 30336 42624 30336 30336 call usrsetvert done :: usrsetvert gs_setup: 4032 unique labels shared pairwise times (avg, min, max): 1.11506e-05 1.07538e-05 1.1453e-05 crystal router : 2.78917e-05 2.74376e-05 2.83874e-05 all reduce : 6.8896e-05 6.84774e-05 6.92927e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 269940 256100 283780 buffer bytes (avg, min, max): 32256 23040 41472 setupds time 2.0265E-02 seconds 7 4 30336 1536 setvert3d: 6 96896 195200 96896 96896 call usrsetvert done :: usrsetvert gs_setup: 11200 unique labels shared pairwise times (avg, min, max): 1.44095e-05 1.43056e-05 1.45192e-05 crystal router : 3.94263e-05 3.90332e-05 3.98261e-05 all reduce : 9.67785e-05 9.63923e-05 9.71425e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 742004 703588 780420 buffer bytes (avg, min, max): 89600 64000 115200 setupds time 4.3436E-02 seconds 8 6 96896 1536 setvert3d: 8 201344 533120 201344 201344 call usrsetvert done :: usrsetvert gs_setup: 21952 unique labels shared pairwise times (avg, min, max): 5.80216e-05 4.95078e-05 6.16774e-05 crystal router : 7.1144e-05 7.08725e-05 7.14649e-05 all reduce : 0.000235607 0.000234486 0.000236793 used all_to_all method: pairwise handle bytes (avg, min, max): 1.45061e+06 1375332 1525892 buffer bytes (avg, min, max): 175616 125440 225792 setupds time 8.4090E-02 seconds 9 8 201344 1536 setvert3d: 10 343680 1130112 343680 343680 call usrsetvert done :: usrsetvert gs_setup: 36288 unique labels shared pairwise times (avg, min, max): 3.15373e-05 3.06691e-05 3.2104e-05 crystal router : 9.24712e-05 9.09459e-05 9.39815e-05 all reduce : 0.000254788 0.00025378 0.000255437 used all_to_all method: pairwise handle bytes (avg, min, max): 2.39576e+06 2271332 2520196 buffer bytes (avg, min, max): 290304 207360 373248 setupds time 1.3027E-01 seconds 10 10 343680 1536 setup h1 coarse grid, nx_crs= 2 call usrsetvert done :: usrsetvert gs_setup: 448 unique labels shared pairwise times (avg, min, max): 5.59047e-06 5.5171e-06 5.677e-06 crystal router : 3.78503e-06 3.7079e-06 3.8472e-06 all reduce : 5.5058e-06 5.4973e-06 5.5169e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 50812 44668 56956 buffer bytes (avg, min, max): 6144 5120 7168 gs_setup: 448 unique labels shared pairwise times (avg, min, max): 1.01072e-05 9.958e-06 1.01904e-05 crystal router : 4.22242e-06 4.1446e-06 4.331e-06 all reduce : 8.35538e-06 8.1712e-06 8.4627e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 27068 23868 30268 buffer bytes (avg, min, max): 4736 3840 5632 AMG version 2.01 AMG: 8 levels AMG Chebyshev smoother data: AMG level 1: 3 iterations with rho = 0.79256 AMG level 2: 2 iterations with rho = 0.668297 AMG level 3: 2 iterations with rho = 0.481307 AMG level 4: 2 iterations with rho = 0.409707 AMG level 5: 2 iterations with rho = 0.458605 AMG level 6: 3 iterations with rho = 0.696293 AMG level 7: 2 iterations with rho = 0.666743 AMG: 1664 rows AMG: preading through rows ... done gs_setup: 431 unique labels shared pairwise times (avg, min, max): 2.78895e-06 2.5582e-06 2.8915e-06 crystal router : 4.09068e-06 3.9897e-06 4.2042e-06 all reduce : 1.05099e-05 9.6558e-06 1.14097e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 3261 2620 3832 buffer bytes (avg, min, max): 1724 1408 2040 gs_setup: 664 unique labels shared pairwise times (avg, min, max): 3.73e-06 3.6492e-06 3.8419e-06 crystal router : 4.80688e-06 4.7581e-06 4.8544e-06 all reduce : 1.91924e-05 1.88961e-05 1.95428e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 5588 3840 7948 buffer bytes (avg, min, max): 3200 2072 4328 gs_setup: 311 unique labels shared pairwise times (avg, min, max): 3.59183e-06 3.4744e-06 3.6762e-06 crystal router : 3.48463e-06 3.4264e-06 3.5338e-06 all reduce : 7.03768e-06 6.9313e-06 7.1389e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 9301 8788 9740 buffer bytes (avg, min, max): 3588 2992 4048 gs_setup: 421 unique labels shared pairwise times (avg, min, max): 4.046e-06 3.8288e-06 4.2149e-06 crystal router : 5.71768e-06 5.6236e-06 5.8628e-06 all reduce : 9.28628e-06 9.1472e-06 9.4127e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 4913 3240 6956 buffer bytes (avg, min, max): 3036 2088 4128 gs_setup: 151 unique labels shared pairwise times (avg, min, max): 2.19068e-06 2.1424e-06 2.242e-06 crystal router : 3.61935e-06 3.5275e-06 3.683e-06 all reduce : 1.15655e-05 1.14062e-05 1.16404e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 1331 940 1700 buffer bytes (avg, min, max): 628 448 808 gs_setup: 194 unique labels shared pairwise times (avg, min, max): 3.61092e-06 3.5012e-06 3.7449e-06 crystal router : 4.24627e-06 4.2222e-06 4.2926e-06 all reduce : 5.85915e-06 5.651e-06 6.022e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 3380 3208 3588 buffer bytes (avg, min, max): 2160 2032 2368 gs_setup: 80 unique labels shared pairwise times (avg, min, max): 2.38705e-06 2.3152e-06 2.4211e-06 crystal router : 2.44917e-06 2.3604e-06 2.5157e-06 all reduce : 3.76915e-06 3.6987e-06 3.8185e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 985 788 1228 buffer bytes (avg, min, max): 452 320 648 gs_setup: 98 unique labels shared pairwise times (avg, min, max): 3.19185e-06 3.1425e-06 3.2323e-06 crystal router : 2.91045e-06 2.8317e-06 3.0279e-06 all reduce : 4.24988e-06 4.1918e-06 4.3256e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 5506 5136 5876 buffer bytes (avg, min, max): 2352 2192 2512 gs_setup: 33 unique labels shared pairwise times (avg, min, max): 2.20093e-06 2.1362e-06 2.3165e-06 crystal router : 3.15857e-06 3.0855e-06 3.2308e-06 all reduce : 4.0025e-06 3.9097e-06 4.0784e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 616 512 788 buffer bytes (avg, min, max): 232 160 376 gs_setup: 39 unique labels shared pairwise times (avg, min, max): 2.55118e-06 2.5145e-06 2.5821e-06 crystal router : 3.45955e-06 3.3809e-06 3.5407e-06 all reduce : 4.61387e-06 4.495e-06 4.7137e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 955 936 972 buffer bytes (avg, min, max): 468 392 536 gs_setup: 8 unique labels shared pairwise times (avg, min, max): 2.7896e-06 2.684e-06 2.8771e-06 crystal router : 3.3584e-06 3.2604e-06 3.4714e-06 all reduce : 3.8325e-06 3.7504e-06 3.9734e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 413 392 424 buffer bytes (avg, min, max): 84 64 96 gs_setup: 8 unique labels shared pairwise times (avg, min, max): 2.76598e-06 2.7364e-06 2.8357e-06 crystal router : 2.47192e-06 2.4054e-06 2.5145e-06 all reduce : 2.75563e-06 2.6928e-06 2.8295e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 916 860 972 buffer bytes (avg, min, max): 192 176 208 gs_setup: 1 unique labels shared pairwise times (avg, min, max): 7.2665e-07 6.456e-07 7.68e-07 crystal router : 2.4244e-06 2.3879e-06 2.4719e-06 all reduce : 2.57698e-06 2.5591e-06 2.5873e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 237 228 264 buffer bytes (avg, min, max): 12 8 24 gs_setup: 1 unique labels shared pairwise times (avg, min, max): 7.836e-07 6.3e-07 8.848e-07 crystal router : 2.57503e-06 2.4694e-06 2.6345e-06 all reduce : 2.86405e-06 2.8357e-06 2.9139e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 237 228 264 buffer bytes (avg, min, max): 12 8 24 gs_setup: 405 unique labels shared pairwise times (avg, min, max): 2.43873e-06 2.2721e-06 2.5217e-06 crystal router : 3.87707e-06 3.8341e-06 3.9225e-06 all reduce : 7.58878e-06 7.5007e-06 7.6681e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 3079 2020 4152 buffer bytes (avg, min, max): 1620 1024 2216 gs_setup: 235 unique labels shared pairwise times (avg, min, max): 3.03253e-06 2.9581e-06 3.1371e-06 crystal router : 4.62493e-06 4.5157e-06 4.7079e-06 all reduce : 6.30792e-06 6.2306e-06 6.4236e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 2456 1268 3872 buffer bytes (avg, min, max): 1368 600 2224 gs_setup: 232 unique labels shared pairwise times (avg, min, max): 3.3132e-06 3.2543e-06 3.3618e-06 crystal router : 3.97125e-06 3.9468e-06 3.9908e-06 all reduce : 9.85658e-06 9.7844e-06 9.8952e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 3335 2484 4152 buffer bytes (avg, min, max): 2076 1568 2664 gs_setup: 96 unique labels shared pairwise times (avg, min, max): 8.03052e-06 7.9335e-06 8.1011e-06 crystal router : 3.56828e-06 3.5204e-06 3.6189e-06 all reduce : 6.4523e-06 6.3963e-06 6.5105e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 5404 5100 5568 buffer bytes (avg, min, max): 2304 2256 2352 gs_setup: 59 unique labels shared pairwise times (avg, min, max): 3.0593e-06 2.967e-06 3.1159e-06 crystal router : 3.37507e-06 3.315e-06 3.443e-06 all reduce : 8.04967e-06 8.032e-06 8.0607e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 1295 1288 1304 buffer bytes (avg, min, max): 708 680 744 gs_setup: 31 unique labels shared pairwise times (avg, min, max): 2.94198e-06 2.8528e-06 2.9872e-06 crystal router : 2.7749e-06 2.6955e-06 2.8159e-06 all reduce : 4.59447e-06 4.5455e-06 4.6566e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 2089 1864 2336 buffer bytes (avg, min, max): 744 640 848 gs_setup: 7 unique labels shared pairwise times (avg, min, max): 2.88287e-06 2.8044e-06 2.9556e-06 crystal router : 2.52328e-06 2.4726e-06 2.5612e-06 all reduce : 2.83837e-06 2.7564e-06 2.9157e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 865 832 888 buffer bytes (avg, min, max): 168 160 176 done :: setup h1 coarse grid 2.36721729199780 sec call usrdat3 done :: usrdat3 set initial conditions Checking restart options: turbChannel0.f00001 nekuic (1) for ifld 1 Reading checkpoint data FILE: turbChannel0.f00001 0 2.0000E+02 done :: Read checkpoint data avg data-throughput = 2.5MBps io-nodes = 4 xyz min 0.0000 -1.0000 0.0000 uvwpt min NaN NaN NaN NaN 0.0000 PS min 0.99000E+22 xyz max 6.2832 1.0000 3.1416 uvwpt max NaN NaN NaN NaN 0.0000 PS max -0.99000E+22 Restart: recompute geom. factors. regenerate geometry data 1 NOTE: All elements deformed , param(59) ^=0 done :: regenerate geometry data 1 done :: set initial conditions call userchk 2.0000E+02 NaN NaN monitor Start collecting statistics ... done :: userchk gridpoints unique/tot: 533120 786432 dofs: 520576 533120 Initial time: 0.2000000E+03 Initialization successfully completed 13.736 sec Starting time loop ... WARNING: DT<0 or DTFS<0 Reset DT WARNING: Set DT=0.001 (arbitrarily) Final time step = 0.000000000000000E+000 HPF : 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.000000 Solving for fluid 1 1.00000E-04 NaN NaN NaN 1 Divergence 2 1.00000E-04 NaN NaN NaN 1 Divergence 3 1.00000E-04 NaN NaN NaN 1 Divergence 4 1.00000E-04 NaN NaN NaN 1 Divergence 5 1.00000E-04 NaN NaN NaN 1 Divergence 6 1.00000E-04 NaN NaN NaN 1 Divergence 7 1.00000E-04 NaN NaN NaN 1 Divergence 8 1.00000E-04 NaN NaN NaN 1 Divergence 9 1.00000E-04 NaN NaN NaN 1 Divergence 10 1.00000E-04 NaN NaN NaN 1 Divergence 11 1.00000E-04 NaN NaN NaN 1 Divergence 12 1.00000E-04 NaN NaN NaN 1 Divergence 13 1.00000E-04 NaN NaN NaN 1 Divergence 14 1.00000E-04 NaN NaN NaN 1 Divergence 15 1.00000E-04 NaN NaN NaN 1 Divergence 16 1.00000E-04 NaN NaN NaN 1 Divergence 17 1.00000E-04 NaN NaN NaN 1 Divergence 18 1.00000E-04 NaN NaN NaN 1 Divergence 19 1.00000E-04 NaN NaN NaN 1 Divergence 20 1.00000E-04 NaN NaN NaN 1 Divergence 21 1.00000E-04 NaN NaN NaN 1 Divergence 22 1.00000E-04 NaN NaN NaN 1 Divergence 23 1.00000E-04 NaN NaN NaN 1 Divergence 24 1.00000E-04 NaN NaN NaN 1 Divergence 25 1.00000E-04 NaN NaN NaN 1 Divergence 26 1.00000E-04 NaN NaN NaN 1 Divergence 27 1.00000E-04 NaN NaN NaN 1 Divergence 28 1.00000E-04 NaN NaN NaN 1 Divergence 29 1.00000E-04 NaN NaN NaN 1 Divergence 30 1.00000E-04 NaN NaN NaN 1 Divergence 31 1.00000E-04 NaN NaN NaN 1 Divergence 32 1.00000E-04 NaN NaN NaN 1 Divergence 33 1.00000E-04 NaN NaN NaN 1 Divergence 34 1.00000E-04 NaN NaN NaN 1 Divergence 35 1.00000E-04 NaN NaN NaN 1 Divergence 36 1.00000E-04 NaN NaN NaN 1 Divergence 37 1.00000E-04 NaN NaN NaN 1 Divergence 38 1.00000E-04 NaN NaN NaN 1 Divergence 39 1.00000E-04 NaN NaN NaN 1 Divergence 40 1.00000E-04 NaN NaN NaN 1 Divergence 41 1.00000E-04 NaN NaN NaN 1 Divergence 42 1.00000E-04 NaN NaN NaN 1 Divergence 43 1.00000E-04 NaN NaN NaN 1 Divergence 44 1.00000E-04 NaN NaN NaN 1 Divergence 45 1.00000E-04 NaN NaN NaN 1 Divergence 46 1.00000E-04 NaN NaN NaN 1 Divergence 47 1.00000E-04 NaN NaN NaN 1 Divergence 48 1.00000E-04 NaN NaN NaN 1 Divergence 49 1.00000E-04 NaN NaN NaN 1 Divergence 50 1.00000E-04 NaN NaN NaN 1 Divergence 51 1.00000E-04 NaN NaN NaN 1 Divergence 52 1.00000E-04 NaN NaN NaN 1 Divergence 53 1.00000E-04 NaN NaN NaN 1 Divergence 54 1.00000E-04 NaN NaN NaN 1 Divergence 55 1.00000E-04 NaN NaN NaN 1 Divergence 56 1.00000E-04 NaN NaN NaN 1 Divergence 57 1.00000E-04 NaN NaN NaN 1 Divergence 58 1.00000E-04 NaN NaN NaN 1 Divergence 59 1.00000E-04 NaN NaN NaN 1 Divergence 60 1.00000E-04 NaN NaN NaN 1 Divergence 61 1.00000E-04 NaN NaN NaN 1 Divergence 62 1.00000E-04 NaN NaN NaN 1 Divergence 63 1.00000E-04 NaN NaN NaN 1 Divergence 64 1.00000E-04 NaN NaN NaN 1 Divergence 65 1.00000E-04 NaN NaN NaN 1 Divergence 66 1.00000E-04 NaN NaN NaN 1 Divergence 67 1.00000E-04 NaN NaN NaN 1 Divergence 68 1.00000E-04 NaN NaN NaN 1 Divergence 69 1.00000E-04 NaN NaN NaN 1 Divergence 70 1.00000E-04 NaN NaN NaN 1 Divergence 71 1.00000E-04 NaN NaN NaN 1 Divergence 72 1.00000E-04 NaN NaN NaN 1 Divergence 73 1.00000E-04 NaN NaN NaN 1 Divergence 74 1.00000E-04 NaN NaN NaN 1 Divergence 75 1.00000E-04 NaN NaN NaN 1 Divergence 76 1.00000E-04 NaN NaN NaN 1 Divergence 77 1.00000E-04 NaN NaN NaN 1 Divergence 78 1.00000E-04 NaN NaN NaN 1 Divergence 79 1.00000E-04 NaN NaN NaN 1 Divergence 80 1.00000E-04 NaN NaN NaN 1 Divergence 81 1.00000E-04 NaN NaN NaN 1 Divergence 82 1.00000E-04 NaN NaN NaN 1 Divergence 83 1.00000E-04 NaN NaN NaN 1 Divergence 84 1.00000E-04 NaN NaN NaN 1 Divergence 85 1.00000E-04 NaN NaN NaN 1 Divergence 86 1.00000E-04 NaN NaN NaN 1 Divergence 87 1.00000E-04 NaN NaN NaN 1 Divergence 88 1.00000E-04 NaN NaN NaN 1 Divergence 89 1.00000E-04 NaN NaN NaN 1 Divergence 90 1.00000E-04 NaN NaN NaN 1 Divergence 91 1.00000E-04 NaN NaN NaN 1 Divergence 92 1.00000E-04 NaN NaN NaN 1 Divergence 93 1.00000E-04 NaN NaN NaN 1 Divergence 94 1.00000E-04 NaN NaN NaN 1 Divergence 95 1.00000E-04 NaN NaN NaN 1 Divergence 96 1.00000E-04 NaN NaN NaN 1 Divergence 97 1.00000E-04 NaN NaN NaN 1 Divergence 98 1.00000E-04 NaN NaN NaN 1 Divergence 99 1.00000E-04 NaN NaN NaN 1 Divergence 100 1.00000E-04 NaN NaN NaN 1 Divergence 101 1.00000E-04 NaN NaN NaN 1 Divergence 102 1.00000E-04 NaN NaN NaN 1 Divergence 103 1.00000E-04 NaN NaN NaN 1 Divergence 104 1.00000E-04 NaN NaN NaN 1 Divergence 105 1.00000E-04 NaN NaN NaN 1 Divergence 106 1.00000E-04 NaN NaN NaN 1 Divergence 107 1.00000E-04 NaN NaN NaN 1 Divergence 108 1.00000E-04 NaN NaN NaN 1 Divergence 109 1.00000E-04 NaN NaN NaN 1 Divergence 110 1.00000E-04 NaN NaN NaN 1 Divergence 111 1.00000E-04 NaN NaN NaN 1 Divergence 112 1.00000E-04 NaN NaN NaN 1 Divergence 113 1.00000E-04 NaN NaN NaN 1 Divergence 114 1.00000E-04 NaN NaN NaN 1 Divergence 115 1.00000E-04 NaN NaN NaN 1 Divergence 116 1.00000E-04 NaN NaN NaN 1 Divergence 117 1.00000E-04 NaN NaN NaN 1 Divergence 118 1.00000E-04 NaN NaN NaN 1 Divergence 119 1.00000E-04 NaN NaN NaN 1 Divergence 120 1.00000E-04 NaN NaN NaN 1 Divergence 121 1.00000E-04 NaN NaN NaN 1 Divergence 122 1.00000E-04 NaN NaN NaN 1 Divergence 123 1.00000E-04 NaN NaN NaN 1 Divergence 124 1.00000E-04 NaN NaN NaN 1 Divergence 125 1.00000E-04 NaN NaN NaN 1 Divergence 126 1.00000E-04 NaN NaN NaN 1 Divergence 127 1.00000E-04 NaN NaN NaN 1 Divergence 128 1.00000E-04 NaN NaN NaN 1 Divergence 129 1.00000E-04 NaN NaN NaN 1 Divergence 130 1.00000E-04 NaN NaN NaN 1 Divergence 131 1.00000E-04 NaN NaN NaN 1 Divergence 132 1.00000E-04 NaN NaN NaN 1 Divergence 133 1.00000E-04 NaN NaN NaN 1 Divergence 134 1.00000E-04 NaN NaN NaN 1 Divergence 135 1.00000E-04 NaN NaN NaN 1 Divergence 136 1.00000E-04 NaN NaN NaN 1 Divergence 137 1.00000E-04 NaN NaN NaN 1 Divergence 138 1.00000E-04 NaN NaN NaN 1 Divergence 139 1.00000E-04 NaN NaN NaN 1 Divergence 140 1.00000E-04 NaN NaN NaN 1 Divergence 141 1.00000E-04 NaN NaN NaN 1 Divergence 142 1.00000E-04 NaN NaN NaN 1 Divergence 143 1.00000E-04 NaN NaN NaN 1 Divergence 144 1.00000E-04 NaN NaN NaN 1 Divergence 145 1.00000E-04 NaN NaN NaN 1 Divergence 146 1.00000E-04 NaN NaN NaN 1 Divergence 147 1.00000E-04 NaN NaN NaN 1 Divergence 148 1.00000E-04 NaN NaN NaN 1 Divergence 149 1.00000E-04 NaN NaN NaN 1 Divergence 150 1.00000E-04 NaN NaN NaN 1 Divergence 151 1.00000E-04 NaN NaN NaN 1 Divergence 152 1.00000E-04 NaN NaN NaN 1 Divergence 153 1.00000E-04 NaN NaN NaN 1 Divergence 154 1.00000E-04 NaN NaN NaN 1 Divergence 155 1.00000E-04 NaN NaN NaN 1 Divergence 156 1.00000E-04 NaN NaN NaN 1 Divergence 157 1.00000E-04 NaN NaN NaN 1 Divergence 158 1.00000E-04 NaN NaN NaN 1 Divergence 159 1.00000E-04 NaN NaN NaN 1 Divergence 160 1.00000E-04 NaN NaN NaN 1 Divergence 161 1.00000E-04 NaN NaN NaN 1 Divergence 162 1.00000E-04 NaN NaN NaN 1 Divergence 163 1.00000E-04 NaN NaN NaN 1 Divergence 164 1.00000E-04 NaN NaN NaN 1 Divergence 165 1.00000E-04 NaN NaN NaN 1 Divergence 166 1.00000E-04 NaN NaN NaN 1 Divergence 167 1.00000E-04 NaN NaN NaN 1 Divergence 168 1.00000E-04 NaN NaN NaN 1 Divergence 169 1.00000E-04 NaN NaN NaN 1 Divergence 170 1.00000E-04 NaN NaN NaN 1 Divergence 171 1.00000E-04 NaN NaN NaN 1 Divergence 172 1.00000E-04 NaN NaN NaN 1 Divergence 173 1.00000E-04 NaN NaN NaN 1 Divergence 174 1.00000E-04 NaN NaN NaN 1 Divergence 175 1.00000E-04 NaN NaN NaN 1 Divergence 176 1.00000E-04 NaN NaN NaN 1 Divergence 177 1.00000E-04 NaN NaN NaN 1 Divergence 178 1.00000E-04 NaN NaN NaN 1 Divergence 179 1.00000E-04 NaN NaN NaN 1 Divergence 180 1.00000E-04 NaN NaN NaN 1 Divergence 181 1.00000E-04 NaN NaN NaN 1 Divergence 182 1.00000E-04 NaN NaN NaN 1 Divergence 183 1.00000E-04 NaN NaN NaN 1 Divergence 184 1.00000E-04 NaN NaN NaN 1 Divergence 185 1.00000E-04 NaN NaN NaN 1 Divergence 186 1.00000E-04 NaN NaN NaN 1 Divergence 187 1.00000E-04 NaN NaN NaN 1 Divergence 188 1.00000E-04 NaN NaN NaN 1 Divergence 189 1.00000E-04 NaN NaN NaN 1 Divergence 190 1.00000E-04 NaN NaN NaN 1 Divergence 191 1.00000E-04 NaN NaN NaN 1 Divergence 192 1.00000E-04 NaN NaN NaN 1 Divergence 193 1.00000E-04 NaN NaN NaN 1 Divergence 194 1.00000E-04 NaN NaN NaN 1 Divergence 195 1.00000E-04 NaN NaN NaN 1 Divergence 196 1.00000E-04 NaN NaN NaN 1 Divergence 197 1.00000E-04 NaN NaN NaN 1 Divergence 198 1.00000E-04 NaN NaN NaN 1 Divergence 199 1.00000E-04 NaN NaN NaN 1 Divergence 200 1.00000E-04 NaN NaN NaN 1 Divergence 201 1.00000E-04 NaN NaN NaN 1 Divergence 202 1.00000E-04 NaN NaN NaN 1 Divergence 203 1.00000E-04 NaN NaN NaN 1 Divergence 204 1.00000E-04 NaN NaN NaN 1 Divergence 205 1.00000E-04 NaN NaN NaN 1 Divergence 206 1.00000E-04 NaN NaN NaN 1 Divergence 207 1.00000E-04 NaN NaN NaN 1 Divergence 208 1.00000E-04 NaN NaN NaN 1 Divergence 209 1.00000E-04 NaN NaN NaN 1 Divergence 210 1.00000E-04 NaN NaN NaN 1 Divergence 211 1.00000E-04 NaN NaN NaN 1 Divergence 212 1.00000E-04 NaN NaN NaN 1 Divergence 213 1.00000E-04 NaN NaN NaN 1 Divergence 214 1.00000E-04 NaN NaN NaN 1 Divergence 215 1.00000E-04 NaN NaN NaN 1 Divergence 216 1.00000E-04 NaN NaN NaN 1 Divergence 217 1.00000E-04 NaN NaN NaN 1 Divergence 218 1.00000E-04 NaN NaN NaN 1 Divergence 219 1.00000E-04 NaN NaN NaN 1 Divergence 220 1.00000E-04 NaN NaN NaN 1 Divergence 221 1.00000E-04 NaN NaN NaN 1 Divergence 222 1.00000E-04 NaN NaN NaN 1 Divergence 223 1.00000E-04 NaN NaN NaN 1 Divergence 224 1.00000E-04 NaN NaN NaN 1 Divergence 225 1.00000E-04 NaN NaN NaN 1 Divergence 226 1.00000E-04 NaN NaN NaN 1 Divergence 227 1.00000E-04 NaN NaN NaN 1 Divergence 228 1.00000E-04 NaN NaN NaN 1 Divergence 229 1.00000E-04 NaN NaN NaN 1 Divergence 230 1.00000E-04 NaN NaN NaN 1 Divergence 231 1.00000E-04 NaN NaN NaN 1 Divergence 232 1.00000E-04 NaN NaN NaN 1 Divergence 233 1.00000E-04 NaN NaN NaN 1 Divergence 234 1.00000E-04 NaN NaN NaN 1 Divergence 235 1.00000E-04 NaN NaN NaN 1 Divergence 236 1.00000E-04 NaN NaN NaN 1 Divergence 237 1.00000E-04 NaN NaN NaN 1 Divergence 238 1.00000E-04 NaN NaN NaN 1 Divergence 239 1.00000E-04 NaN NaN NaN 1 Divergence 240 1.00000E-04 NaN NaN NaN 1 Divergence 241 1.00000E-04 NaN NaN NaN 1 Divergence 242 1.00000E-04 NaN NaN NaN 1 Divergence 243 1.00000E-04 NaN NaN NaN 1 Divergence 244 1.00000E-04 NaN NaN NaN 1 Divergence 245 1.00000E-04 NaN NaN NaN 1 Divergence 246 1.00000E-04 NaN NaN NaN 1 Divergence 247 1.00000E-04 NaN NaN NaN 1 Divergence 248 1.00000E-04 NaN NaN NaN 1 Divergence 249 1.00000E-04 NaN NaN NaN 1 Divergence 250 1.00000E-04 NaN NaN NaN 1 Divergence 251 1.00000E-04 NaN NaN NaN 1 Divergence 252 1.00000E-04 NaN NaN NaN 1 Divergence 253 1.00000E-04 NaN NaN NaN 1 Divergence 254 1.00000E-04 NaN NaN NaN 1 Divergence 255 1.00000E-04 NaN NaN NaN 1 Divergence 256 1.00000E-04 NaN NaN NaN 1 Divergence 257 1.00000E-04 NaN NaN NaN 1 Divergence 258 1.00000E-04 NaN NaN NaN 1 Divergence 259 1.00000E-04 NaN NaN NaN 1 Divergence 260 1.00000E-04 NaN NaN NaN 1 Divergence 261 1.00000E-04 NaN NaN NaN 1 Divergence 262 1.00000E-04 NaN NaN NaN 1 Divergence 263 1.00000E-04 NaN NaN NaN 1 Divergence 264 1.00000E-04 NaN NaN NaN 1 Divergence 265 1.00000E-04 NaN NaN NaN 1 Divergence 266 1.00000E-04 NaN NaN NaN 1 Divergence 267 1.00000E-04 NaN NaN NaN 1 Divergence 268 1.00000E-04 NaN NaN NaN 1 Divergence 269 1.00000E-04 NaN NaN NaN 1 Divergence 270 1.00000E-04 NaN NaN NaN 1 Divergence 271 1.00000E-04 NaN NaN NaN 1 Divergence 272 1.00000E-04 NaN NaN NaN 1 Divergence 273 1.00000E-04 NaN NaN NaN 1 Divergence 274 1.00000E-04 NaN NaN NaN 1 Divergence 275 1.00000E-04 NaN NaN NaN 1 Divergence 276 1.00000E-04 NaN NaN NaN 1 Divergence 277 1.00000E-04 NaN NaN NaN 1 Divergence 278 1.00000E-04 NaN NaN NaN 1 Divergence 279 1.00000E-04 NaN NaN NaN 1 Divergence 280 1.00000E-04 NaN NaN NaN 1 Divergence 281 1.00000E-04 NaN NaN NaN 1 Divergence 282 1.00000E-04 NaN NaN NaN 1 Divergence 283 1.00000E-04 NaN NaN NaN 1 Divergence 284 1.00000E-04 NaN NaN NaN 1 Divergence 285 1.00000E-04 NaN NaN NaN 1 Divergence 286 1.00000E-04 NaN NaN NaN 1 Divergence 287 1.00000E-04 NaN NaN NaN 1 Divergence 288 1.00000E-04 NaN NaN NaN 1 Divergence 289 1.00000E-04 NaN NaN NaN 1 Divergence 290 1.00000E-04 NaN NaN NaN 1 Divergence 291 1.00000E-04 NaN NaN NaN 1 Divergence 292 1.00000E-04 NaN NaN NaN 1 Divergence 293 1.00000E-04 NaN NaN NaN 1 Divergence 294 1.00000E-04 NaN NaN NaN 1 Divergence 295 1.00000E-04 NaN NaN NaN 1 Divergence 296 1.00000E-04 NaN NaN NaN 1 Divergence 297 1.00000E-04 NaN NaN NaN 1 Divergence 298 1.00000E-04 NaN NaN NaN 1 Divergence 299 1.00000E-04 NaN NaN NaN 1 Divergence 300 1.00000E-04 NaN NaN NaN 1 Divergence 301 1.00000E-04 NaN NaN NaN 1 Divergence 302 1.00000E-04 NaN NaN NaN 1 Divergence 303 1.00000E-04 NaN NaN NaN 1 Divergence 304 1.00000E-04 NaN NaN NaN 1 Divergence 305 1.00000E-04 NaN NaN NaN 1 Divergence 306 1.00000E-04 NaN NaN NaN 1 Divergence 307 1.00000E-04 NaN NaN NaN 1 Divergence 308 1.00000E-04 NaN NaN NaN 1 Divergence 309 1.00000E-04 NaN NaN NaN 1 Divergence 310 1.00000E-04 NaN NaN NaN 1 Divergence 311 1.00000E-04 NaN NaN NaN 1 Divergence 312 1.00000E-04 NaN NaN NaN 1 Divergence 313 1.00000E-04 NaN NaN NaN 1 Divergence 314 1.00000E-04 NaN NaN NaN 1 Divergence 315 1.00000E-04 NaN NaN NaN 1 Divergence 316 1.00000E-04 NaN NaN NaN 1 Divergence 317 1.00000E-04 NaN NaN NaN 1 Divergence 318 1.00000E-04 NaN NaN NaN 1 Divergence 319 1.00000E-04 NaN NaN NaN 1 Divergence 320 1.00000E-04 NaN NaN NaN 1 Divergence 321 1.00000E-04 NaN NaN NaN 1 Divergence 322 1.00000E-04 NaN NaN NaN 1 Divergence 323 1.00000E-04 NaN NaN NaN 1 Divergence 324 1.00000E-04 NaN NaN NaN 1 Divergence 325 1.00000E-04 NaN NaN NaN 1 Divergence 326 1.00000E-04 NaN NaN NaN 1 Divergence 327 1.00000E-04 NaN NaN NaN 1 Divergence 328 1.00000E-04 NaN NaN NaN 1 Divergence 329 1.00000E-04 NaN NaN NaN 1 Divergence 330 1.00000E-04 NaN NaN NaN 1 Divergence 331 1.00000E-04 NaN NaN NaN 1 Divergence 332 1.00000E-04 NaN NaN NaN 1 Divergence 333 1.00000E-04 NaN NaN NaN 1 Divergence 334 1.00000E-04 NaN NaN NaN 1 Divergence 335 1.00000E-04 NaN NaN NaN 1 Divergence 336 1.00000E-04 NaN NaN NaN 1 Divergence 337 1.00000E-04 NaN NaN NaN 1 Divergence 338 1.00000E-04 NaN NaN NaN 1 Divergence 339 1.00000E-04 NaN NaN NaN 1 Divergence 340 1.00000E-04 NaN NaN NaN 1 Divergence 341 1.00000E-04 NaN NaN NaN 1 Divergence 342 1.00000E-04 NaN NaN NaN 1 Divergence 343 1.00000E-04 NaN NaN NaN 1 Divergence 344 1.00000E-04 NaN NaN NaN 1 Divergence 345 1.00000E-04 NaN NaN NaN 1 Divergence 346 1.00000E-04 NaN NaN NaN 1 Divergence 347 1.00000E-04 NaN NaN NaN 1 Divergence 348 1.00000E-04 NaN NaN NaN 1 Divergence 349 1.00000E-04 NaN NaN NaN 1 Divergence 350 1.00000E-04 NaN NaN NaN 1 Divergence 351 1.00000E-04 NaN NaN NaN 1 Divergence 352 1.00000E-04 NaN NaN NaN 1 Divergence 353 1.00000E-04 NaN NaN NaN 1 Divergence 354 1.00000E-04 NaN NaN NaN 1 Divergence 355 1.00000E-04 NaN NaN NaN 1 Divergence 356 1.00000E-04 NaN NaN NaN 1 Divergence 357 1.00000E-04 NaN NaN NaN 1 Divergence 358 1.00000E-04 NaN NaN NaN 1 Divergence 359 1.00000E-04 NaN NaN NaN 1 Divergence 360 1.00000E-04 NaN NaN NaN 1 Divergence 361 1.00000E-04 NaN NaN NaN 1 Divergence 362 1.00000E-04 NaN NaN NaN 1 Divergence 363 1.00000E-04 NaN NaN NaN 1 Divergence 364 1.00000E-04 NaN NaN NaN 1 Divergence 365 1.00000E-04 NaN NaN NaN 1 Divergence 366 1.00000E-04 NaN NaN NaN 1 Divergence 367 1.00000E-04 NaN NaN NaN 1 Divergence 368 1.00000E-04 NaN NaN NaN 1 Divergence 369 1.00000E-04 NaN NaN NaN 1 Divergence 370 1.00000E-04 NaN NaN NaN 1 Divergence 371 1.00000E-04 NaN NaN NaN 1 Divergence 372 1.00000E-04 NaN NaN NaN 1 Divergence 373 1.00000E-04 NaN NaN NaN 1 Divergence 374 1.00000E-04 NaN NaN NaN 1 Divergence 375 1.00000E-04 NaN NaN NaN 1 Divergence 376 1.00000E-04 NaN NaN NaN 1 Divergence 377 1.00000E-04 NaN NaN NaN 1 Divergence 378 1.00000E-04 NaN NaN NaN 1 Divergence 379 1.00000E-04 NaN NaN NaN 1 Divergence 380 1.00000E-04 NaN NaN NaN 1 Divergence 381 1.00000E-04 NaN NaN NaN 1 Divergence 382 1.00000E-04 NaN NaN NaN 1 Divergence 383 1.00000E-04 NaN NaN NaN 1 Divergence 384 1.00000E-04 NaN NaN NaN 1 Divergence 385 1.00000E-04 NaN NaN NaN 1 Divergence 386 1.00000E-04 NaN NaN NaN 1 Divergence 387 1.00000E-04 NaN NaN NaN 1 Divergence 388 1.00000E-04 NaN NaN NaN 1 Divergence 389 1.00000E-04 NaN NaN NaN 1 Divergence 390 1.00000E-04 NaN NaN NaN 1 Divergence 391 1.00000E-04 NaN NaN NaN 1 Divergence 392 1.00000E-04 NaN NaN NaN 1 Divergence 393 1.00000E-04 NaN NaN NaN 1 Divergence 394 1.00000E-04 NaN NaN NaN 1 Divergence 395 1.00000E-04 NaN NaN NaN 1 Divergence 396 1.00000E-04 NaN NaN NaN 1 Divergence 397 1.00000E-04 NaN NaN NaN 1 Divergence 398 1.00000E-04 NaN NaN NaN 1 Divergence 399 1.00000E-04 NaN NaN NaN 1 Divergence 400 1.00000E-04 NaN NaN NaN 1 Divergence 401 1.00000E-04 NaN NaN NaN 1 Divergence 402 1.00000E-04 NaN NaN NaN 1 Divergence 403 1.00000E-04 NaN NaN NaN 1 Divergence 404 1.00000E-04 NaN NaN NaN 1 Divergence 405 1.00000E-04 NaN NaN NaN 1 Divergence 406 1.00000E-04 NaN NaN NaN 1 Divergence 407 1.00000E-04 NaN NaN NaN 1 Divergence 408 1.00000E-04 NaN NaN NaN 1 Divergence 409 1.00000E-04 NaN NaN NaN 1 Divergence 410 1.00000E-04 NaN NaN NaN 1 Divergence 411 1.00000E-04 NaN NaN NaN 1 Divergence 412 1.00000E-04 NaN NaN NaN 1 Divergence 413 1.00000E-04 NaN NaN NaN 1 Divergence 414 1.00000E-04 NaN NaN NaN 1 Divergence 415 1.00000E-04 NaN NaN NaN 1 Divergence 416 1.00000E-04 NaN NaN NaN 1 Divergence 417 1.00000E-04 NaN NaN NaN 1 Divergence 418 1.00000E-04 NaN NaN NaN 1 Divergence 419 1.00000E-04 NaN NaN NaN 1 Divergence 420 1.00000E-04 NaN NaN NaN 1 Divergence 421 1.00000E-04 NaN NaN NaN 1 Divergence 422 1.00000E-04 NaN NaN NaN 1 Divergence 423 1.00000E-04 NaN NaN NaN 1 Divergence 424 1.00000E-04 NaN NaN NaN 1 Divergence 425 1.00000E-04 NaN NaN NaN 1 Divergence 426 1.00000E-04 NaN NaN NaN 1 Divergence 427 1.00000E-04 NaN NaN NaN 1 Divergence 428 1.00000E-04 NaN NaN NaN 1 Divergence 429 1.00000E-04 NaN NaN NaN 1 Divergence 430 1.00000E-04 NaN NaN NaN 1 Divergence 431 1.00000E-04 NaN NaN NaN 1 Divergence 432 1.00000E-04 NaN NaN NaN 1 Divergence 433 1.00000E-04 NaN NaN NaN 1 Divergence 434 1.00000E-04 NaN NaN NaN 1 Divergence 435 1.00000E-04 NaN NaN NaN 1 Divergence 436 1.00000E-04 NaN NaN NaN 1 Divergence 437 1.00000E-04 NaN NaN NaN 1 Divergence 438 1.00000E-04 NaN NaN NaN 1 Divergence 439 1.00000E-04 NaN NaN NaN 1 Divergence 440 1.00000E-04 NaN NaN NaN 1 Divergence 441 1.00000E-04 NaN NaN NaN 1 Divergence 442 1.00000E-04 NaN NaN NaN 1 Divergence 443 1.00000E-04 NaN NaN NaN 1 Divergence 444 1.00000E-04 NaN NaN NaN 1 Divergence 445 1.00000E-04 NaN NaN NaN 1 Divergence 446 1.00000E-04 NaN NaN NaN 1 Divergence 447 1.00000E-04 NaN NaN NaN 1 Divergence 448 1.00000E-04 NaN NaN NaN 1 Divergence 449 1.00000E-04 NaN NaN NaN 1 Divergence 450 1.00000E-04 NaN NaN NaN 1 Divergence 451 1.00000E-04 NaN NaN NaN 1 Divergence 452 1.00000E-04 NaN NaN NaN 1 Divergence 453 1.00000E-04 NaN NaN NaN 1 Divergence 454 1.00000E-04 NaN NaN NaN 1 Divergence 455 1.00000E-04 NaN NaN NaN 1 Divergence 456 1.00000E-04 NaN NaN NaN 1 Divergence 457 1.00000E-04 NaN NaN NaN 1 Divergence 458 1.00000E-04 NaN NaN NaN 1 Divergence 459 1.00000E-04 NaN NaN NaN 1 Divergence 460 1.00000E-04 NaN NaN NaN 1 Divergence 461 1.00000E-04 NaN NaN NaN 1 Divergence 462 1.00000E-04 NaN NaN NaN 1 Divergence 463 1.00000E-04 NaN NaN NaN 1 Divergence 464 1.00000E-04 NaN NaN NaN 1 Divergence 465 1.00000E-04 NaN NaN NaN 1 Divergence 466 1.00000E-04 NaN NaN NaN 1 Divergence 467 1.00000E-04 NaN NaN NaN 1 Divergence 468 1.00000E-04 NaN NaN NaN 1 Divergence 469 1.00000E-04 NaN NaN NaN 1 Divergence 470 1.00000E-04 NaN NaN NaN 1 Divergence 471 1.00000E-04 NaN NaN NaN 1 Divergence 472 1.00000E-04 NaN NaN NaN 1 Divergence 473 1.00000E-04 NaN NaN NaN 1 Divergence 474 1.00000E-04 NaN NaN NaN 1 Divergence 475 1.00000E-04 NaN NaN NaN 1 Divergence 476 1.00000E-04 NaN NaN NaN 1 Divergence 477 1.00000E-04 NaN NaN NaN 1 Divergence 478 1.00000E-04 NaN NaN NaN 1 Divergence 479 1.00000E-04 NaN NaN NaN 1 Divergence 480 1.00000E-04 NaN NaN NaN 1 Divergence 481 1.00000E-04 NaN NaN NaN 1 Divergence 482 1.00000E-04 NaN NaN NaN 1 Divergence 483 1.00000E-04 NaN NaN NaN 1 Divergence 484 1.00000E-04 NaN NaN NaN 1 Divergence 485 1.00000E-04 NaN NaN NaN 1 Divergence 486 1.00000E-04 NaN NaN NaN 1 Divergence 487 1.00000E-04 NaN NaN NaN 1 Divergence 488 1.00000E-04 NaN NaN NaN 1 Divergence 489 1.00000E-04 NaN NaN NaN 1 Divergence 490 1.00000E-04 NaN NaN NaN 1 Divergence 491 1.00000E-04 NaN NaN NaN 1 Divergence 492 1.00000E-04 NaN NaN NaN 1 Divergence 493 1.00000E-04 NaN NaN NaN 1 Divergence 494 1.00000E-04 NaN NaN NaN 1 Divergence 495 1.00000E-04 NaN NaN NaN 1 Divergence 496 1.00000E-04 NaN NaN NaN 1 Divergence 497 1.00000E-04 NaN NaN NaN 1 Divergence 498 1.00000E-04 NaN NaN NaN 1 Divergence 499 1.00000E-04 NaN NaN NaN 1 Divergence 500 1.00000E-04 NaN NaN NaN 1 Divergence 1 PRES gmres 500 NaN NaN 1.0000E-04 1.3084E+01 2.1669E+01 F 1 Hmholtz VELX 1 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 2 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 3 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 4 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 5 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 6 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 7 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 8 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 9 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 10 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 11 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 12 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 13 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 14 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 15 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 16 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 17 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 18 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 19 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 20 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 21 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 22 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 23 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 24 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 25 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 26 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 27 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 28 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 29 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 30 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 31 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 32 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 33 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 34 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 35 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 36 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 37 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 38 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 39 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 40 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 41 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 42 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 43 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 44 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 45 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 46 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 47 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 48 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 49 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 50 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 51 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 52 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 53 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 54 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 55 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 56 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 57 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 58 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 59 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 60 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 61 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 62 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 63 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 64 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 65 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 66 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 67 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 68 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 69 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 70 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 71 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 72 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 73 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 74 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 75 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 76 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 77 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 78 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 79 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 80 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 81 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 82 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 83 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 84 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 85 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 86 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 87 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 88 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 89 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 90 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 91 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 92 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 93 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 94 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 95 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 96 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 97 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 98 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 99 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 100 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Error Hmholtz VELX 100 NaN NaN 1.0000E-07 1 Hmholtz VELY 1 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 2 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 3 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 4 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 5 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 6 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 7 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 8 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 9 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 10 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 11 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 12 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 13 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 14 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 15 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 16 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 17 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 18 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 19 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 20 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 21 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 22 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 23 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 24 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 25 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 26 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 27 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 28 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 29 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 30 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 31 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 32 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 33 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 34 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 35 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 36 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 37 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 38 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 39 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 40 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 41 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 42 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 43 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 44 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 45 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 46 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 47 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 48 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 49 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 50 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 51 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 52 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 53 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 54 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 55 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 56 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 57 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 58 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 59 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 60 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 61 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 62 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 63 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 64 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 65 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 66 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 67 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 68 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 69 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 70 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 71 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 72 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 73 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 74 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 75 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 76 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 77 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 78 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 79 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 80 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 81 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 82 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 83 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 84 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 85 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 86 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 87 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 88 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 89 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 90 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 91 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 92 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 93 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 94 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 95 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 96 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 97 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 98 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 99 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 100 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Error Hmholtz VELY 100 NaN NaN 1.0000E-07 1 Hmholtz VELZ 1 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 2 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 3 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 4 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 5 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 6 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 7 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 8 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 9 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 10 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 11 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 12 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 13 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 14 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 15 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 16 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 17 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 18 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 19 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 20 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 21 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 22 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 23 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 24 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 25 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 26 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 27 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 28 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 29 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 30 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 31 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 32 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 33 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 34 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 35 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 36 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 37 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 38 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 39 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 40 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 41 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 42 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 43 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 44 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 45 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 46 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 47 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 48 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 49 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 50 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 51 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 52 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 53 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 54 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 55 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 56 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 57 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 58 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 59 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 60 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 61 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 62 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 63 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 64 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 65 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 66 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 67 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 68 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 69 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 70 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 71 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 72 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 73 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 74 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 75 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 76 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 77 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 78 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 79 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 80 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 81 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 82 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 83 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 84 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 85 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 86 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 87 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 88 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 89 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 90 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 91 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 92 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 93 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 94 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 95 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 96 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 97 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 98 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 99 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 100 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Error Hmholtz VELZ 100 NaN NaN 1.0000E-07 1 1.00000E-04 1.04290E-15 1.48092E-15 7.04224E-01 1 Divergence 1 PRES gmres 1 1.0429E-15 1.4809E-15 1.0000E-04 2.3331E-02 5.0854E-02 F 1 Hmholtz VELX 1 9.9982E-01 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 2 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 3 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 4 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 5 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 6 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 7 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 8 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 9 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 10 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 11 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 12 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 13 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 14 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 15 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 16 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 17 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 18 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 19 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 20 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 21 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 22 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 23 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 24 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 25 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 26 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 27 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 28 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 29 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 30 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 31 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 32 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 33 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 34 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 35 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 36 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 37 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 38 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 39 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 40 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 41 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 42 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 43 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 44 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 45 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 46 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 47 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 48 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 49 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 50 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 51 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 52 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 53 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 54 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 55 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 56 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 57 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 58 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 59 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 60 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 61 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 62 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 63 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 64 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 65 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 66 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 67 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 68 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 69 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 70 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 71 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 72 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 73 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 74 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 75 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 76 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 77 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 78 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 79 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 80 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 81 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 82 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 83 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 84 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 85 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 86 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 87 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 88 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 89 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 90 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 91 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 92 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 93 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 94 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 95 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 96 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 97 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 98 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 99 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 100 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Error Hmholtz VELX 100 NaN 9.9982E-01 1.0000E-07 1 Hmholtz VELY 1 8.0937E-16 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 0 8.0937E-16 8.0937E-16 1.0000E-07 1 Hmholtz VELZ 1 7.1883E-16 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 0 7.1883E-16 7.1883E-16 1.0000E-07 1 volflow X NaN NaN NaN 6.2832E+00 L1/L2 DIV(V) NaN NaN L1/L2 QTL 0.0000E+00 0.0000E+00 L1/L2 DIV(V)-QTL NaN NaN 1 Fluid done 2.0000E+02 2.6895E+01 2.0000E+02 NaN NaN monitor filt amp 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.5000 filt trn 1.0000 1.0000 1.0000 1.0000 1.0000 1.0000 1.0000 0.5000 1 sfilt: NaN vortx 1 2.0000E+02 Write checkpoint FILE: /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel0.f00001 1 2.0000E+02 done :: Write checkpoint file size = 21. MB avg data-throughput = 11.3MB/s io-nodes = 4 end of time-step loop runtime statistics: init time 13.7358070529990 0.462004458987539 prep time 1 1.87108852800156 6.293414284007534E-002 pres time 1 21.7905451879997 0.732925921409712 crsl time 501 0.183691413072665 6.178468552291153E-003 crsl min 0.183063570999366 crsl max 0.260289230038325 crsl avg 0.221352905275126 hmhz time 6 4.94836180700077 0.166438361480831 eslv time 0 0.000000000000000E+000 0.000000000000000E+000 proj time 0 0.000000000000000E+000 0.000000000000000E+000 usvp time 2 8.829280013742391E-004 2.969732117129529E-005 usfq time 0 1.237174799825880E-002 4.161242742134884E-004 usbc time 1 2.739972998824669E-003 9.215910925933331E-005 usbc min 2.302368000528077E-003 usbc max 1.831457500156830E-002 usb avg 6.439937250434014E-003 mltd time 3 1.305026299814926E-002 4.389461553180925E-004 cdtp time 4 1.176028400368523E-002 3.955576565467353E-004 axhm time 945 6.36171776202173 0.213976649608845 advc time 1 0.178863899000135 6.016094909539131E-003 mxmf time 0.000000000000000E+000 0.000000000000000E+000 adc3 time 0.000000000000000E+000 0.000000000000000E+000 col2 time 0.000000000000000E+000 0.000000000000000E+000 col3 time 0.000000000000000E+000 0.000000000000000E+000 a2s2 time 0.000000000000000E+000 0.000000000000000E+000 add2 time 0.000000000000000E+000 0.000000000000000E+000 invc time 0.000000000000000E+000 0.000000000000000E+000 tgop time 2480 1.02037628088146 3.432039994398663E-002 dadd time 0 3.58888928988017 0.120712445096209 vdss time 4 6.298328000411857E-003 2.118445322600121E-004 vdss min 6.298328000411857E-003 vdss max 2.789256400137674E-002 vdss avg 2.080069274961716E-002 dsum time 1463 1.95680818695473 6.581732724317946E-002 dsum min 1.52674149705126 dsum max 2.28399024302780 dsum avg 1.90933237102490 ddsl time 0 0.000000000000000E+000 0.000000000000000E+000 # nid tusbc tdadd tcrsl tvdss tdsum tgop qqq F 0 2.7400E-03 3.5889E+00 1.8369E-01 6.2983E-03 1.9568E+00 1.0204E+00 qqq 1 2.3024E-03 3.7084E+00 2.5837E-01 2.7040E-02 1.8698E+00 1.7594E+00 qqq 2 1.8315E-02 3.7437E+00 2.6029E-01 2.1972E-02 1.5267E+00 1.9577E+00 qqq 3 2.4028E-03 3.6736E+00 1.8306E-01 2.7893E-02 2.2840E+00 1.0771E+00 qqq run successful: dying ... total elapsed time : 4.35605E+01 sec total solver time w/o IO : 2.78598E+01 sec time/timestep : 2.78598E+01 sec avg throughput per timestep : 4.78395E+03 gridpts/CPUs total max memory usage : 2.00808E+00 GB ---------------------------------------------------------------------- Message: 1 Date: Tue, 23 Jan 2018 13:23:59 +0100 From: nek5000-users at lists.mcs.anl.gov To: nek5000-users at lists.mcs.anl.gov Subject: Re: [Nek5000-users] Example turbChannel restart issue Message-ID: Content-Type: text/plain; charset=utf-8 Looks like the data in your restart file is messed up. Can you please double check with VisIt. Note, .re2 is a binary not an ASCII file. What makes you thinking that the format of other .re2 files is different? -----Original message----- > From:nek5000-users at lists.mcs.anl.gov > Sent: Tuesday 23rd January 2018 1:24 > To: nek5000-users at lists.mcs.anl.gov > Subject: Re: [Nek5000-users] Example turbChannel restart issue > > Dear Nek team, > Currently I am working on the example turbChannel (NEK5000 v17.0) and have successfully generated some statistics results using the default settings. Now I would like to restart from where I stopped so this is what I did: In the .par file, > I activated the line startFrom = turbChannel0.f00001, where turbChannel0.f00001 is one of two files generated from the previous simulation. However, this did not work and produced error, > i.e. NAN. I also tried to use another file, turbChannel0.f00002 and I got the same error message. The complete logfile is at the end of this email. I am wondering is there anything else I need to modify other than what I did? Or the way I did was not correct? > Another thing I got to mention is that, in the latest version of turbChannel (Nek5000 v17.0), the file .re2 is not readable; more specifically, it does not retain the same format as other .re2 or .rea files in other examples, and looks > messy and contains unreadable characters. So the Reynolds number in my case was changed in the .par file. > Thank you for your time and help! > Regards, > Ming > *****************Complete Logfile***************************** > Number of processors:?????????? ????? 4 > REAL??? wdsize????? ????:?????????? ????????? 8 > INTEGER wdsize????? :????????? ??????????? 4 > Timer accuracy???? ???: ????????????????????? 9.40E-07 > ?Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.par???????????????????????? ??????????????????????????????????????????????? > general = [(null)] > general:startfrom = [turbChannel0.f00001] > general:stopat = [endTime] > general:endtime = [200] > general:dt = [0] > general:timestepper = [bdf2] > general:extrapolation = [OIFS] > general:variabledt = [yes] > general:targetcfl = [2.0] > general:writecontrol = [runTime] > general:writeinterval = [100.0] > general:userparam01 = [100] > general:userparam02 = [20] > general:userparam03 = [1] > general:filtering = [hpfrt] > general:filterweight = [10] > general:filtercutoffratio = [0.9] > problemtype = [(null)] > problemtype:variableproperties = [no] > problemtype:equation = [incompNS] > pressure = [(null)] > pressure:preconditioner = [semg_amg] > pressure:residualtol = [1e-04] > pressure:residualproj = [yes] > velocity = [(null)] > velocity:residualtol = [1e-07] > velocity:density = [1] > velocity:viscosity = [-2950] > Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.re2??????????????????????????????????????????????????????????????????????? > ?mapping elements to processors > Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.ma2??????????????????????????????????????????????????????????????????????? > ???????????1???????? 384???????? 384??????? 1536??????? 1536? NELV > ?????????? 2???????? 384???????? 384??????? 1536??????? 1536? NELV > ?????????? 3???????? 384???????? 384??????? 1536??????? 1536? NELV > ?????????? 0???????? 384???????? 384??????? 1536??????? 1536? NELV > RANK???? 0 IEG????? 44????? 45????? 49????? 50????? 51????? 54????? 55????? 56 > ????????? ???????????57????? 58????? 59????? 60????? 61????? 62????? 63????? 64 > ???????????????????? 65????? 66????? 67????? 68????? 69????? 70????? 71????? 72 > ???????????????????? 73????? 74????? 75????? 76????? 77????? 78????? 79????? 80 > ???????????????????? 81?? ???82????? 83????? 84????? 85????? 86????? 87????? 88 > ???????????????????? 89????? 90????? 91????? 92????? 93????? 94????? 95????? 96 > ??????????????????? 236???? 237???? 241???? 242???? 243???? 246???? 247???? 248 > ??????????????????? 249???? 250???? 251???? 252???? 253???? 254???? 255???? 256 > ??????????????????? 257???? 258???? 259???? 260???? 261???? 262???? 263???? 264 > ??????????????????? 265???? 266???? 267???? 268???? 269???? 270???? 271???? 272 > ??????????????? ????273???? 274???? 275???? 276???? 277???? 278???? 279???? 280 > ??????????????????? 281???? 282???? 283???? 284???? 285???? 286???? 287???? 288 > ??????????????????? 428???? 429???? 433???? 434???? 435???? 438???? 439???? 440 > ??????????????????? 441???? 442 ????443???? 444???? 445???? 446???? 447???? 448 > ??????????????????? 449???? 450???? 451???? 452???? 453???? 454???? 455???? 456 > ??????????????????? 457???? 458???? 459???? 460???? 461???? 462???? 463???? 464 > ??????????????????? 465???? 466???? 467???? 468 ????469???? 470???? 471???? 472 > ??????????????????? 473???? 474???? 475???? 476???? 477???? 478???? 479???? 480 > ??????????????????? 620???? 621???? 625???? 626???? 627???? 630???? 631???? 632 > ??????????????????? 633???? 634???? 635???? 636???? 637???? 638 ????639???? 640 > ??????????????????? 641???? 642???? 643???? 644???? 645???? 646???? 647???? 648 > ??????????????????? 649???? 650???? 651???? 652???? 653???? 654???? 655???? 656 > ??????????????????? 657???? 658???? 659???? 660???? 661???? 662???? 663???? 664 > ??????????????????? 665???? 666???? 667???? 668???? 669???? 670???? 671???? 672 > ??????????????????? 812???? 813???? 817???? 818???? 819???? 822???? 823???? 824 > ??????????????????? 825???? 826???? 827???? 828???? 829???? 830???? 831???? 832 > ??????????????? ????833???? 834???? 835???? 836???? 837???? 838???? 839???? 840 > ??????????????????? 841???? 842???? 843???? 844???? 845???? 846???? 847???? 848 > ??????????????????? 849???? 850???? 851???? 852???? 853???? 854???? 855???? 856 > ??????????????????? 857???? 858 ????859???? 860???? 861???? 862???? 863???? 864 > ?????????????????? 1004??? 1005??? 1009??? 1010??? 1011??? 1014??? 1015??? 1016 > ?????????????????? 1017??? 1018??? 1019??? 1020??? 1021??? 1022??? 1023??? 1024 > ?????????????????? 1025??? 1026??? 1027??? 1028 ???1029??? 1030??? 1031??? 1032 > ?????????????????? 1033??? 1034??? 1035??? 1036??? 1037??? 1038??? 1039??? 1040 > ?????????????????? 1041??? 1042??? 1043??? 1044??? 1045??? 1046??? 1047??? 1048 > ?????????????????? 1049??? 1050??? 1051??? 1052??? 1053??? 1054??? 1055??? 1056 > ?????????????????? 1196??? 1197??? 1201??? 1202??? 1203??? 1206??? 1207??? 1208 > ?????????????????? 1209??? 1210??? 1211??? 1212??? 1213??? 1214??? 1215??? 1216 > ??????????????? ???1217??? 1218??? 1219??? 1220??? 1221??? 1222??? 1223??? 1224 > ?????????????????? 1225??? 1226??? 1227??? 1228??? 1229??? 1230??? 1231??? 1232 > ?????????????????? 1233??? 1234??? 1235??? 1236??? 1237??? 1238??? 1239??? 1240 > ?????????????????? 1241??? 1242 ???1243??? 1244??? 1245??? 1246??? 1247??? 1248 > ?????????????????? 1388??? 1389??? 1393??? 1394??? 1395??? 1398??? 1399??? 1400 > ?????????????????? 1401??? 1402??? 1403??? 1404??? 1405??? 1406??? 1407??? 1408 > ?????????????????? 1409??? 1410??? 1411??? 1412 ???1413??? 1414??? 1415??? 1416 > ?????????????????? 1417??? 1418??? 1419??? 1420??? 1421??? 1422??? 1423??? 1424 > ?????????????????? 1425??? 1426??? 1427??? 1428??? 1429??? 1430??? 1431??? 1432 > ?????????????????? 1433??? 1434??? 1435??? 1436??? 1437??? 1438 ???1439??? 1440 > ?element load imbalance:??????????? 0???????? 384???????? 384 > done :: mapping?? 0.29167???? sec > ??preading mesh > ??preading bc for ifld?????????? 1 > done :: read .re2 file?? 0.51???? sec > nelgt/nelgv/lelt:??????? 1536??????? 1536? ???????387 > lx1? /lx2? /lx3 :?????????? 8?????????? 8?????????? 8 > setup mesh topology > ?? Right-handed check complete for??? 1536 elements. OK. > ?? setvert3d:?? 8????? 201344????? 533120????? 201344????? 201344 > call usrsetvert > done :: usrsetvert > gs_setup: 21952 unique labels shared > ?? pairwise times (avg, min, max): 2.92127e-05 2.76451e-05 3.00083e-05 > ?? crystal router??????????????? : 7.82046e-05 7.75443e-05 7.88275e-05 > ?? all reduce??????????????????? : 0.000228323 0.000227655 0.000228766 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 1.45061e06 1375332 1525892 > ?? buffer bytes (avg, min, max): 175616 125440 225792 > ?? setupds time 9.2419E-02 seconds?? 0? 8????? 201344??????? 1536 > ?????????? 8? max multiplicity > done :: setup mesh topology > ?call usrdat > done :: usrdat > generate geometry data > NOTE: All elements deformed , param(59) ^=0 > done :: generate geometry data > ?call usrdat2 > done :: usrdat2 > regenerate geometry data?????????? 1 > NOTE: All elements deformed , param(59) ^=0 > done :: regenerate geometry data?????????? 1 > ?verify mesh topology > ? 0.000000000000000E000?? 6.28318530717959?????? Xrange > ? -1.00000000000000??????? 1.00000000000000?????? Yrange > ? 0.000000000000000E000?? 3.14159265358979?????? Zrange > done :: verify mesh topology > ?IFTRAN?? = T > IFFLOW?? = T > IFHEAT?? = F > IFSPLIT? = T > IFLOMACH = F > IFUSERVP = F > IFUSERMV = F > IFPERT?? = F > IFADJ??? = F > IFSTRS?? = F > IFCHAR?? = T > IFCYCLIC = F > IFAXIS?? = F > IFMVBD?? = F > IFMELT?? = F > IFNEKNEK = F > IFSYNC?? = F > ?IFVCOR?? = T > IFINTQ?? = F > IFGEOM?? = F > IFSURT?? = F > IFWCNO?? = F > ?IFTMSH for field?????????? 1??? =? F > IFADVC for field?????????? 1??? =? T > IFNONL for field?????????? 1??? =? F > ?Dealiasing enabled, lxd=?????????? 8 > ?Estimated eigenvalues > EIGAA =??? 1.23913370009078???? > ?EIGGA =??? 1862221.21607236???? > ?EIGAE =?? 0.250000000000000???? > ?EIGAS =?? 1.681282119258565E-002 > EIGGE =??? 1862221.21607236???? > ?EIGGS =??? 2.00000000000000???? > ?verify mesh topology > ? 0.000000000000000E000?? 6.28318530717959?????? Xrange > ? -1.00000000000000??????? 1.00000000000000?????? Yrange > ? 0.000000000000000E000?? 3.14159265358979?????? Zrange > done :: verify mesh topology > ??E-solver strategy:? 0 itr > mg_nx:?????????? 1???????? ??3?????????? 7 > mg_ny:?????????? 1?????????? 3?????????? 7 > mg_nz:?????????? 1?????????? 3?????????? 7 > call usrsetvert > done :: usrsetvert > gs_setup: 448 unique labels shared > ?? pairwise times (avg, min, max): 7.93538e-06 7.8488e-06 8.0526e-06 > ?? crystal router??????????????? : 6.85905e-06 6.72e-06 6.9978e-06 > ?? all reduce??????????????????? : 1.20532e-05 1.11753e-05 1.28944e-05 > ?? used all_to_all method: crystal router > ?? handle bytes (avg, min, max): 50812 44668 56956 > ?? buffer bytes (avg, min, max): 6144 5120 7168 > ?? setupds time 3.1089E-03 seconds?? 1? 2??????? 1664??????? 1536 > ?? setvert3d:?? 4?????? 30336?????? 42624?????? 30336?????? 30336 > call usrsetvert > done :: usrsetvert > gs_setup: 4032 unique labels shared > ? ?pairwise times (avg, min, max): 8.37387e-06 8.2548e-06 8.5004e-06 > ?? crystal router??????????????? : 1.86812e-05 1.83826e-05 1.89784e-05 > ?? all reduce??????????????????? : 4.4251e-05 4.40251e-05 4.44275e-05 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 269940 256100 283780 > ?? buffer bytes (avg, min, max): 32256 23040 41472 > ?? setupds time 2.4576E-02 seconds?? 2? 4?????? 30336??????? 1536 > ?? setvert3d:?? 4?????? 30336?????? 42624?????? 30336?????? 30336 > call usrsetvert > done :: usrsetvert > gs_setup: 4032 unique labels shared > ?? pairwise times (avg, min, max): 8.65523e-06 8.5168e-06 8.7977e-06 > ?? crystal router??????????????? : 1.94818e-05 1.93217e-05 1.96357e-05 > ?? all reduce??????????????????? : 5.97892e-05 5.95374e-05 5.99737e-05 > ? ?used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 269940 256100 283780 > ?? buffer bytes (avg, min, max): 32256 23040 41472 > ?? setupds time 1.4160E-02 seconds?? 3? 4?????? 30336??????? 1536 > ?? setvert3d:?? 6?????? 96896????? 195200?????? 96896?????? 96896 > call usrsetvert > done :: usrsetvert > gs_setup: 11200 unique labels shared > ?? pairwise times (avg, min, max): 1.61057e-05 1.58103e-05 1.62982e-05 > ?? crystal router??????????????? : 3.86536e-05 3.8384e-05 3.89447e-05 > ?? all reduce??????????????????? : 8.92118e-05 8.88703e-05 8.94562e-05 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 742004 703588 780420 > ?? buffer bytes (avg, min, max): 89600 64000 115200 > ?? setupds time 4.3098E-02 seconds?? 4? 6?????? 96896??????? 1536 > regenerate geometry data?????????? 1 > NOTE: All elements deformed , param(59) ^=0 > done :: regenerate geometry data?????????? 1 > ?h1_mg_nx:?????????? 1?????????? 3?????????? 7 > h1_mg_ny:?????????? 1????? ?????3?????????? 7 > h1_mg_nz:?????????? 1?????????? 3?????????? 7 > call usrsetvert > done :: usrsetvert > gs_setup: 448 unique labels shared > ?? pairwise times (avg, min, max): 4.10923e-06 2.5509e-06 4.7765e-06 > ?? crystal router??????????????? : 3.94603e-06 3.7989e-06 4.0103e-06 > ?? all reduce??????????????????? : 6.54198e-06 6.442e-06 6.5947e-06 > ?? used all_to_all method: crystal router > ?? handle bytes (avg, min, max): 50812 44668 56956 > ?? buffer bytes (avg, min, max): 6144 5120 7168 > ?? setupds time 1.6990E-03 seconds?? 5? 2??????? 1664??????? 1536 > ?? setvert3d:?? 4?????? 30336?????? 42624?????? 30336?????? 30336 > call usrsetvert > done :: usrsetvert > gs_setup: 4032 unique labels shared > ?? pairwise times (avg, min, max): 7.51525e-06 7.3863e-06 7.68e-06 > ?? crystal router??????????????? : 1.7878e-05 1.76051e-05 1.81134e-05 > ?? all reduce??????????????????? : 5.29887e-05 5.27139e-05 5.32422e-05 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 269940 256100 283780 > ?? buffer bytes (avg, min, max): 32256 23040 41472 > ?? setupds time 2.5044E-02 seconds?? 6? 4?????? 30336??????? 1536 > ?? setvert3d:?? 4?????? 30336?????? 42624?????? 30336?????? 30336 > call usrsetvert > done :: usrsetvert > gs_setup: 4032 unique labels shared > ?? pairwise times (avg, min, max): 1.11506e-05 1.07538e-05 1.1453e-05 > ?? crystal router??????????????? : 2.78917e-05 2.74376e-05 2.83874e-05 > ?? all reduce??????????????????? : 6.8896e-05 6.84774e-05 6.92927e-05 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 269940 256100 283780 > ?? buffer bytes (avg, min, max): 32256 23040 41472 > ?? setupds time 2.0265E-02 seconds?? 7? 4?????? 30336??????? 1536 > ?? setvert3d:?? 6?????? 96896????? 195200?????? 96896?????? 96896 > call usrsetvert > done :: usrsetvert > gs_setup: 11200 unique labels shared > ?? pairwise times (avg, min, max): 1.44095e-05 1.43056e-05 1.45192e-05 > ?? crystal router??????????????? : 3.94263e-05 3.90332e-05 3.98261e-05 > ?? all reduce??????????????????? : 9.67785e-05 9.63923e-05 9.71425e-05 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 742004 703588 780420 > ?? buffer bytes (avg, min, max): 89600 64000 115200 > ?? setupds time 4.3436E-02 seconds?? 8? 6?????? 96896??????? 1536 > ?? setvert3d:?? 8????? 201344????? 533120????? 201344????? 201344 > call usrsetvert > done :: usrsetvert > gs_setup: 21952 unique labels shared > ?? pairwise times (avg, min, max): 5.80216e-05 4.95078e-05 6.16774e-05 > ?? crystal router??????????????? : 7.1144e-05 7.08725e-05 7.14649e-05 > ?? all reduce???????? ???????????: 0.000235607 0.000234486 0.000236793 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 1.45061e06 1375332 1525892 > ?? buffer bytes (avg, min, max): 175616 125440 225792 > ?? setupds time 8.4090E-02 seconds?? 9? 8????? 201344?? ?????1536 > ?? setvert3d:? 10????? 343680???? 1130112????? 343680????? 343680 > call usrsetvert > done :: usrsetvert > gs_setup: 36288 unique labels shared > ?? pairwise times (avg, min, max): 3.15373e-05 3.06691e-05 3.2104e-05 > ?? crystal router??????????????? : 9.24712e-05 9.09459e-05 9.39815e-05 > ?? all reduce??????????????????? : 0.000254788 0.00025378 0.000255437 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 2.39576e06 2271332 2520196 > ?? buffer bytes (avg, min, max): 290304 207360 373248 > ?? setupds time 1.3027E-01 seconds? 10 10????? 343680??????? 1536 > setup h1 coarse grid, nx_crs=?????????? 2 > call usrsetvert > done :: usrsetvert > gs_setup: 448 unique labels shared > ?? pairwise times (avg, min, max): 5.59047e-06 5.5171e-06 5.677e-06 > ?? crystal router??????????????? : 3.78503e-06 3.7079e-06 3.8472e-06 > ?? all reduce??????????????????? : 5.5058e-06 5.4973e-06 5.5169e-06 > ?? used all_to_all method: crystal router > ?? handle bytes (avg, min, max): 50812 44668 56956 > ?? buffer bytes (avg, min, max): 6144 5120 7168 > gs_setup: 448 unique labels shared > ?? pairwise times (avg, min, max): 1.01072e-05 9.958e-06 1.01904e-05 > ?? crystal router??????????????? : 4.22242e-06 4.1446e-06 4.331e-06 > ?? all reduce ???????????????????: 8.35538e-06 8.1712e-06 8.4627e-06 > ?? used all_to_all method: crystal router > ?? handle bytes (avg, min, max): 27068 23868 30268 > ?? buffer bytes (avg, min, max): 4736 3840 5632 > AMG version 2.01 > AMG: 8 levels > AMG Chebyshev smoother data: > AMG? level 1: 3 iterations with rho = 0.79256 > AMG? level 2: 2 iterations with rho = 0.668297 > AMG? level 3: 2 iterations with rho = 0.481307 > AMG? level 4: 2 iterations with rho = 0.409707 > AMG? level 5: 2 iterations with rho = 0.458605 > AMG? level 6: 3 iterations with rho = 0.696293 > AMG? level 7: 2 iterations with rho = 0.666743 > AMG: 1664 rows > AMG: preading through rows ... done > gs_setup: 431 unique labels shared > ?? pairwise times (avg, min, max): 2.78895e-06 2.5582e-06 2.8915e-06 > ?? crystal router??????????????? : 4.09068e-06 3.9897e-06 4.2042e-06 > ?? all reduce??????????????????? : 1.05099e-05 9.6558e-06 1.14097e-05 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 3261 2620 3832 > ?? buffer bytes (avg, min, max): 1724 1408 2040 > gs_setup: 664 unique labels shared > ?? pairwise times (avg, min, max): 3.73e-06 3.6492e-06 3.8419e-06 > ?? crystal router??????????????? : 4.80688e-06 4.7581e-06 4.8544e-06 > ?? all reduce??????????????????? : 1.91924e-05 1.88961e-05 1.95428e-05 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 5588 3840 7948 > ?? buffer bytes (avg, min, max): 3200 2072 4328 > gs_setup: 311 unique labels shared > ?? pairwise times (avg, min, max): 3.59183e-06 3.4744e-06 3.6762e-06 > ?? crystal router????????? ??????: 3.48463e-06 3.4264e-06 3.5338e-06 > ?? all reduce??????????????????? : 7.03768e-06 6.9313e-06 7.1389e-06 > ?? used all_to_all method: crystal router > ?? handle bytes (avg, min, max): 9301 8788 9740 > ?? buffer bytes (avg, min, max): 3588 2992 4048 > gs_setup: 421 unique labels shared > ?? pairwise times (avg, min, max): 4.046e-06 3.8288e-06 4.2149e-06 > ?? crystal router??????????????? : 5.71768e-06 5.6236e-06 5.8628e-06 > ?? all reduce??????????????????? : 9.28628e-06 9.1472e-06 9.4127e-06 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 4913 3240 6956 > ?? buffer bytes (avg, min, max): 3036 2088 4128 > gs_setup: 151 unique labels shared > ?? pairwise times (avg, min, max): 2.19068e-06 2.1424e-06 2.242e-06 > ?? crystal router??? ????????????: 3.61935e-06 3.5275e-06 3.683e-06 > ?? all reduce??????????????????? : 1.15655e-05 1.14062e-05 1.16404e-05 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 1331 940 1700 > ?? buffer bytes (avg, min, max): 628 448 808 > gs_setup: 194 unique labels shared > ?? pairwise times (avg, min, max): 3.61092e-06 3.5012e-06 3.7449e-06 > ?? crystal router??????????????? : 4.24627e-06 4.2222e-06 4.2926e-06 > ?? all reduce??????????????????? : 5.85915e-06 5.651e-06 6.022e-06 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 3380 3208 3588 > ?? buffer bytes (avg, min, max): 2160 2032 2368 > gs_setup: 80 unique labels shared > ?? pairwise times (avg, min, max): 2.38705e-06 2.3152e-06 2.4211e-06 > ?? crystal router??????????????? : 2.44917e-06 2.3604e-06 2.5157e-06 > ?? all reduce??????????????????? : 3.76915e-06 3.6987e-06 3.8185e-06 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 985 788 1228 > ?? buffer bytes (avg, min, max): 452 320 648 > gs_setup: 98 unique labels shared > ?? pairwise times (avg, min, max): 3.19185e-06 3.1425e-06 3.2323e-06 > ?? crystal router??????????????? : 2.91045e-06 2.8317e-06 3.0279e-06 > ?? all reduce??????????????????? : 4.24988e-06 4.1918e-06 4.3256e-06 > ?? used all_to_all method: crystal router > ?? handle bytes (avg, min, max): 5506 5136 5876 > ?? buffer bytes (avg, min, max): 2352 2192 2512 > gs_setup: 33 unique labels shared > ?? pairwise times (avg, min, max): 2.20093e-06 2.1362e-06 2.3165e-06 > ?? crystal router??????????????? : 3.15857e-06 3.0855e-06 3.2308e-06 > ?? all reduce??????????????????? : 4.0025e-06 3.9097e-06 4.0784e-06 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 616 512 788 > ?? buffer bytes (avg, min, max): 232 160 376 > gs_setup: 39 unique labels shared > ?? pairwise times (avg, min, max): 2.55118e-06 2.5145e-06 2.5821e-06 > ?? crystal router??????????????? : 3.45955e-06 3.3809e-06 3.5407e-06 > ?? all reduce??????????????????? : 4.61387e-06 4.495e-06 4.7137e-06 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 955 936 972 > ?? buffer bytes (avg, min, max): 468 392 536 > gs_setup: 8 unique labels shared > ?? pairwise times (avg, min, max): 2.7896e-06 2.684e-06 2.8771e-06 > ?? crystal router??????????????? : 3.3584e-06 3.2604e-06 3.4714e-06 > ?? all reduce?????????????? ?????: 3.8325e-06 3.7504e-06 3.9734e-06 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 413 392 424 > ?? buffer bytes (avg, min, max): 84 64 96 > gs_setup: 8 unique labels shared > ?? pairwise times (avg, min, max): 2.76598e-06 2.7364e-06 2.8357e-06 > ?? crystal router??????????????? : 2.47192e-06 2.4054e-06 2.5145e-06 > ?? all reduce??????????????????? : 2.75563e-06 2.6928e-06 2.8295e-06 > ?? used all_to_all method: crystal router > ?? handle bytes (avg, min, max): 916 860 972 > ?? buffer bytes (avg, min, max): 192 176 208 > gs_setup: 1 unique labels shared > ?? pairwise times (avg, min, max): 7.2665e-07 6.456e-07 7.68e-07 > ?? crystal router??????????????? : 2.4244e-06 2.3879e-06 2.4719e-06 > ?? all reduce??????????????????? : 2.57698e-06 2.5591e-06 2.5873e-06 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 237 228 264 > ?? buffer bytes (avg, min, max): 12 8 24 > gs_setup: 1 unique labels shared > ?? pairwise times (avg, min, max): 7.836e-07 6.3e-07 8.848e-07 > ?? crystal router??????????????? : 2.57503e-06 2.4694e-06 2.6345e-06 > ?? all reduce??????????????????? : 2.86405e-06 2.8357e-06 2.9139e-06 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 237 228 264 > ?? buffer bytes (avg, min, max): 12 8 24 > gs_setup: 405 unique labels shared > ?? pairwise times (avg, min, max): 2.43873e-06 2.2721e-06 2.5217e-06 > ?? crystal router??????????????? : 3.87707e-06 3.8341e-06 3.9225e-06 > ?? all reduce??????????????????? : 7.58878e-06 7.5007e-06 7.6681e-06 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 3079 2020 4152 > ?? buffer bytes (avg, min, max): 1620 1024 2216 > gs_setup: 235 unique labels shared > ?? pairwise times (avg, min, max): 3.03253e-06 2.9581e-06 3.1371e-06 > ?? crystal router??????????????? : 4.62493e-06 4.5157e-06 4.7079e-06 > ?? all reduce??????????????????? : 6.30792e-06 6.2306e-06 6.4236e-06 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 2456 1268 3872 > ?? buffer bytes (avg, min, max): 1368 600 2224 > gs_setup: 232 unique labels shared > ?? pairwise times (avg, min, max): 3.3132e-06 3.2543e-06 3.3618e-06 > ?? crystal router??????????????? : 3.97125e-06 3.9468e-06 3.9908e-06 > ?? all reduce??????????????????? : 9.85658e-06 9.7844e-06 9.8952e-06 > ?? used all_to_all method: pairwise > ?? handle bytes (avg, min, max): 3335 2484 4152 > ?? buffer bytes (avg, min, max): 2076 1568 2664 > gs_setup: 96 unique labels shared > ?? pairwise times (avg, min, max): 8.03052e-06 7.9335e-06 8.1011e-06 > ?? crystal router??????????????? : 3.56828e-06 3.5204e-06 3.6189e-06 > ?? all reduce??????????????????? : 6.4523e-06 6.3963e-06 6.5105e-06 > ?? used all_to_all method: crystal router > ?? handle bytes (avg, min, max): 5404 5100 5568 > ?? buffer bytes (avg, min, max): 2304 2256 2352 > gs_setup: 59 unique labels shared > ?? pairwise times (avg, min, max): 3.0593e-06 2.967e-06 3.1159e-06 > ?? crystal router??????????????? : 3.37507e-06 3.315e-06 3.443e-06 > ?? all reduce??????????????????? : 8.04967e-06 8.032e-06 8.0607e-06 > ?? used all_to_all method: pairwise > ??handle bytes (avg, min, max): 1295 1288 1304 > ?? buffer bytes (avg, min, max): 708 680 744 > gs_setup: 31 unique labels shared > ?? pairwise times (avg, min, max): 2.94198e-06 2.8528e-06 2.9872e-06 > ?? crystal router??????????????? : 2.7749e-06 2.6955e-06 2.8159e-06 > ?? all reduce??????????????????? : 4.59447e-06 4.5455e-06 4.6566e-06 > ?? used all_to_all method: crystal router > ?? handle bytes (avg, min, max): 2089 1864 2336 > ?? buffer bytes (avg, min, max): 744 640 848 > gs_setup: 7 unique labels shared > ?? pairwise times (avg, min, max): 2.88287e-06 2.8044e-06 2.9556e-06 > ?? crystal router??????????????? : 2.52328e-06 2.4726e-06 2.5612e-06 > ?? all reduce??????????????????? : 2.83837e-06 2.7564e-06 2.9157e-06 > ?? used all_to_all method: crystal router > ?? handle bytes (avg, min, max): 865 832 888 > ?? buffer bytes (avg, min, max): 168 160 176 > done :: setup h1 coarse grid??? 2.36721729199780?????? sec > ?call usrdat3 > done :: usrdat3 > set initial conditions > Checking restart options: turbChannel0.f00001??????? ????????????????????????????????????????????????????????????????????????????????????????????????????????? > ?nekuic (1) for ifld??????????? 1 > Reading checkpoint data > ???????FILE: > turbChannel0.f00001???????????????????????????????????????????????????????? ??? > ??????? 0? 2.0000E02 done :: Read checkpoint data > ????????????????????????????? avg data-throughput =???? 2.5MBps > ????????????????????????????? io-nodes =???? 4 > xyz min???? 0.0000????? -1.0000 ??????0.0000??? > ?uvwpt min????????? NaN????????? NaN????????? NaN????????? NaN?? 0.0000??? > ?PS min???? 0.99000E22 > xyz max???? 6.2832?????? 1.0000?????? 3.1416??? > ?uvwpt max????????? NaN????????? NaN????????? NaN????????? NaN?? 0.0000??? > ?PS max??? -0.99000E22 > Restart: recompute geom. factors. > regenerate geometry data?????????? 1 > NOTE: All elements deformed , param(59) ^=0 > done :: regenerate geometry data?????????? 1 > ?done :: set initial conditions > ?call userchk > ?? 2.0000E02????????? NaN????????? NaN monitor > Start collecting statistics ... > done :: userchk > gridpoints unique/tot:??????? 533120?????? 786432 > ? dofs:??????????????? 520576??????????????? 533120 > ?Initial time: 0.2000000E03 > Initialization successfully completed??? 13.736???? sec > Starting time loop ... > WARNING: DT<0 or DTFS<0 > ????????? Reset DT????? > ?WARNING: Set DT=0.001 (arbitrarily) > Final time step =?? 0.000000000000000E000 > ?? HPF : 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.000000 > ???????????? Solving for fluid > ??? 1 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ??? 2 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ??? 3 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ??? 4 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ??? 5 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ??? 6 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ??? 7 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ??? 8 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ??? 9 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 10 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ?? 11 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 12 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 13 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ??14 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 15 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 16 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 17 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 18 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 19 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 20 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? ?21 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 22 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 23 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 24 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 25 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 26 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 27 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 28 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 29 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 30 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 31 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 32 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 33 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 34 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 35 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 36 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 37 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 38 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ?? 39 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 40 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 41 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ??42 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 43 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 44 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 45 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 46 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 47 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 48 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? ?49 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 50 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 51 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 52 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 53 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 54 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 55 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 56 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 57 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 58 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 59 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 60 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 61 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 62 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 63 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 64 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 65 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 66 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ?? 67 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 68 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 69 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ??70 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 71 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 72 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 73 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 74 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 75 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 76 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? ?77 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 78 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 79 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 80 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 81 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 82 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 83 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 84 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 85 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 86 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 87 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 88 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 89 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 90 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 91 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 92 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 93 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 94 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ?? 95 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 96 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 97 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ??98 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?? 99 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 100 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 101 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 102 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 103 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 104 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 105 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 106 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 107 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 108 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 109 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 110 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 111 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 112 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 113 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 114 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 115 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 116 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 117 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 118 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 119 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 120 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 121 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 122 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 123 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 124 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 125 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ? 126 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 127 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 128 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?129 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 130 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 131 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 132 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 133 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 134 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 135 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 136 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 137 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 138 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 139 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 140 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 141 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 142 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 143 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 144 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 145 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 146 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 147 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 148 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 149 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 150 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 151 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 152 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 153 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ? 154 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 155 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 156 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?157 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 158 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 159 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 160 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 161 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 162 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 163 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 164 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 165 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 166 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 167 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 168 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 169 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 170 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 171 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 172 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 173 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 174 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 175 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 176 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 177 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 178 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 179 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 180 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 181 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ? 182 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 183 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 184 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?185 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 186 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 187 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 188 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 189 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 190 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 191 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 192 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 193 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 194 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 195 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 196 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 197 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 198 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 199 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 200 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 201 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 202 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 203 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 204 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 205 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 206 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 207 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 208 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 209 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 210 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 211 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 212 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ? 213 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 214 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 215 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?216 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 217 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 218 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 219 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 220 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 221 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 222 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 223 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 224 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 225 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 226 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 227 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 228 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 229 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 230 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 231 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 232 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 233 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 234 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 235 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 236 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 237 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 238 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 239 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 240 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ? 241 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 242 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 243 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?244 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 245 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 246 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 247 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 248 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 249 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 250 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 251 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 252 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 253 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 254 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 255 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 256 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 257 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 258 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 259 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 260 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 261 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 262 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 263 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 264 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 265 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 266 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 267 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 268 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ? 269 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 270 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 271 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?272 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 273 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 274 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 275 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 276 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 277 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 278 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 279 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 280 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 281 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 282 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 283 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 284 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 285 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 286 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 287 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 288 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 289 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 290 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 291 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 292 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 293 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 294 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 295 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 296 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 297 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 298 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 299 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ? 300 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 301 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 302 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?303 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 304 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 305 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 306 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 307 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 308 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 309 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 310 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 311 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 312 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 313 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 314 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 315 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 316 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 317 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 318 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 319 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 320 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 321 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 322 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 323 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 324 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 325 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 326 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 327 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ? 328 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 329 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 330 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?331 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 332 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 333 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 334 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 335 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 336 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 337 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 338 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 339 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 340 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 341 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 342 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 343 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 344 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 345 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 346 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 347 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 348 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 349 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 350 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 351 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 352 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 353 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 354 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 355 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ? 356 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 357 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 358 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?359 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 360 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 361 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 362 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 363 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 364 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 365 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 366 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 367 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 368 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 369 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 370 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 371 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 372 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 373 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 374 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 375 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 376 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 377 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 378 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 379 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 380 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 381 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 382 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 383 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 384 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 385 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 386 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ? 387 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 388 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 389 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?390 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 391 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 392 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 393 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 394 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 395 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 396 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 397 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 398 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 399 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 400 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 401 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 402 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 403 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 404 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 405 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 406 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 407 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 408 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 409 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 410 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 411 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 412 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 413 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 414 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ? 415 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 416 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 417 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?418 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 419 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 420 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 421 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 422 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 423 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 424 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 425 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 426 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 427 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 428 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 429 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 430 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 431 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 432 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 433 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 434 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 435 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 436 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 437 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 438 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 439 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 440 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 441 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 442 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ? 443 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 444 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 445 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?446 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 447 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 448 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 449 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 450 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 451 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 452 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 453 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 454 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 455 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 456 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 457 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 458 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 459 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 460 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 461 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 462 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 463 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 464 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 465 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 466 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 467 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 468 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 469 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 470 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 471 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 472 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 473 1.00000E-04???????? NaN??????? ?NaN???????? NaN?????? 1 Divergence > ? 474 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 475 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 476 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ?477 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 478 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 479 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 480 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 481 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 482 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 483 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 484 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 485 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 486 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 487 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 488 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 489 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 490 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 491 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 492 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 493 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 494 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 495 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 496 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 497 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 498 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 499 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ? 500 1.00000E-04???????? NaN???????? NaN???????? NaN?????? 1 Divergence > ????????? 1? PRES gmres?????? 500??? ??????NaN????????? NaN?? 1.0000E-04?? 1.3084E01?? 2.1669E01??? F > ????????? 1? Hmholtz VELX?????? 1????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 2????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ???????? ?1? Hmholtz VELX?????? 3????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 4????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 5????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 6????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 7????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 8????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 9????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 10????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 11????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 12????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 13????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 14????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 15????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 16????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX??? ??17????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 18????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 19????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 20????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 21????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 22????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ?????????1? Hmholtz VELX????? 23????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 24????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 25????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 26????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 27????????? NaN?? 3.3898E-04?? 1.0000E-07??? ?Infinity?? F > ????????? 1? Hmholtz VELX????? 28????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 29????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 30????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 31????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 32????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 33????????? NaN? ?3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 34????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 35????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 36 ?????????NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 37????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 38????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 39????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 40????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 41????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????? ????1? Hmholtz VELX????? 42????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 43????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 44????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 45????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 46????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 47????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 48????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 49????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 50????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 51????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 52????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 53?????? ???NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 54????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 55????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 56????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 57????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 58????????? NaN?? 3.3898E-04?? 1.0000E-07??? ?Infinity?? F > ????????? 1? Hmholtz VELX????? 59????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 60????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 61????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 62????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 63????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 64????????? NaN? ?3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 65????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 66????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 67 ?????????NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 68????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 69????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 70????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 71????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 72????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????? ????1? Hmholtz VELX????? 73????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 74????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 75????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 76????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 77????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 78????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 79????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 80????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 81????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 82????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 83????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 84????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 85????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 86????????? NaN?? 3.3898E-04?? 1.0000E-07??? ?Infinity?? F > ????????? 1? Hmholtz VELX????? 87????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 88????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 89????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 90????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 91????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 92????????? NaN? ?3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 93????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 94????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 95 ?????????NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 96????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 97????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 98????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 99????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX???? 100????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????? ????1? Error Hmholtz VELX???? 100????????? NaN????????? NaN?? 1.0000E-07 > ????????? 1? Hmholtz VELY?????? 1????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY?????? 2????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ?? ???????1? Hmholtz VELY?????? 3????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY?????? 4????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY?????? 5????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY?????? 6????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY?????? 7????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY?????? 8????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY?????? 9????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 10????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 11????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 12????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 13????????? NaN?? 3.3898E-04?? 1.0000E-07??? ?Infinity?? F > ????????? 1? Hmholtz VELY????? 14????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 15????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 16????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 17????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 18????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 19????????? NaN? ?3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 20????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 21????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 22 ?????????NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 23????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 24????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 25????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 26????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 27????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????? ????1? Hmholtz VELY????? 28????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 29????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 30????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 31????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 32????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 33????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 34????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 35????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 36????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 37????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 38????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 39?????? ???NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 40????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 41????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 42????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 43????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 44????????? NaN?? 3.3898E-04?? 1.0000E-07??? ?Infinity?? F > ????????? 1? Hmholtz VELY????? 45????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 46????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 47????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 48????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 49????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 50????????? NaN? ?3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 51????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 52????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 53 ?????????NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 54????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 55????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 56????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 57????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 58????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????? ????1? Hmholtz VELY????? 59????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 60????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 61????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 62????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 63????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 64????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 65????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 66????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 67????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 68????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 69????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 70????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 71????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 72????????? NaN?? 3.3898E-04?? 1.0000E-07??? ?Infinity?? F > ????????? 1? Hmholtz VELY????? 73????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 74????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 75????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 76????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 77????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 78????????? NaN? ?3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 79????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 80????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 81 ?????????NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 82????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 83????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 84????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 85????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 86????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????? ????1? Hmholtz VELY????? 87????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 88????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 89????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 90????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 91????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 92????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 93????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 94????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 95????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 96????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 97????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 98????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY????? 99????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY???? 100????????? NaN?? 3.3898E-04?? 1.0000E-07??? ?Infinity?? F > ????????? 1? Error Hmholtz VELY???? 100????????? NaN????????? NaN?? 1.0000E-07 > ????????? 1? Hmholtz VELZ?????? 1????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ?????? 2????????? NaN?? 3.3898E-04?? 1.0000E-07 ????Infinity?? F > ????????? 1? Hmholtz VELZ?????? 3????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ?????? 4????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ?????? 5????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ?????? 6????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ?????? 7????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ?????? 8????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ?????? 9????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 10????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 11????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 12????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 13????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 14????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 15????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 16????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ?? ???????1? Hmholtz VELZ????? 17????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 18????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 19????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 20????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 21????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 22????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 23????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 24????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 25????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 26????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 27????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 28????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 29????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 30????????? NaN?? 3.3898E-04?? 1.0000E-07??? ?Infinity?? F > ????????? 1? Hmholtz VELZ????? 31????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 32????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 33????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 34????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 35????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 36????????? NaN? ?3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 37????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 38????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 39 ?????????NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 40????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 41????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 42????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 43????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 44????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????? ????1? Hmholtz VELZ????? 45????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 46????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 47????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 48????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 49????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 50????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 51????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 52????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 53????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 54????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 55????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 56????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 57????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 58????????? NaN?? 3.3898E-04?? 1.0000E-07??? ?Infinity?? F > ????????? 1? Hmholtz VELZ????? 59????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 60????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 61????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 62????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 63????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 64????????? NaN? ?3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 65????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 66????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 67 ?????????NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 68????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 69????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 70????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 71????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 72????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????? ????1? Hmholtz VELZ????? 73????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 74????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 75????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 76????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 77????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 78????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 79????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 80????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 81????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 82????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 83????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 84????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 85????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 86????????? NaN?? 3.3898E-04?? 1.0000E-07??? ?Infinity?? F > ????????? 1? Hmholtz VELZ????? 87????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 88????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 89????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 90????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 91????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 92????????? NaN? ?3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 93????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 94????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 95 ?????????NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 96????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 97????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 98????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ????? 99????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ???? 100????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????? ????1? Error Hmholtz VELZ???? 100????????? NaN????????? NaN?? 1.0000E-07 > ??? 1 1.00000E-04 1.04290E-15 1.48092E-15 7.04224E-01?????? 1 Divergence > ????????? 1? PRES gmres???????? 1?? 1.0429E-15?? 1.4809E-15?? 1.0000E-04?? 2.3331E-02?? 5.0854E-02??? F > ????? ????1? Hmholtz VELX?????? 1?? 9.9982E-01?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 2????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 3????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 4????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 5????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 6????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 7????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 8????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX?????? 9????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 10????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 11????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 12????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 13????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 14????????? NaN?? 3.3898E-04?? 1.0000E-07??? ?Infinity?? F > ????????? 1? Hmholtz VELX????? 15????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 16????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 17????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 18????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 19????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 20????????? NaN? ?3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 21????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 22????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 23 ?????????NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 24????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 25????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 26????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 27????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 28????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????? ????1? Hmholtz VELX????? 29????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 30????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 31????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 32????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 33????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 34????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 35????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 36????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 37????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 38????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 39????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 40????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 41????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 42????????? NaN?? 3.3898E-04?? 1.0000E-07??? ?Infinity?? F > ????????? 1? Hmholtz VELX????? 43????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 44????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 45????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 46????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 47????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 48????????? NaN? ?3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 49????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 50????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 51 ?????????NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 52????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 53????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 54????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 55????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 56????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????? ????1? Hmholtz VELX????? 57????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 58????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 59????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 60????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 61????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 62????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 63????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 64????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 65????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 66????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 67????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 68????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 69????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 70????????? NaN?? 3.3898E-04?? 1.0000E-07??? ?Infinity?? F > ????????? 1? Hmholtz VELX????? 71????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 72????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 73????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 74????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 75????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 76????????? NaN? ?3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 77????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 78????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 79 ?????????NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 80????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 81????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 82????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 83????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 84????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????? ????1? Hmholtz VELX????? 85????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 86????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 87????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 88????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 89????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 90????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 91????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 92????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 93????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 94????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 95????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 96?????? ???NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 97????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 98????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX????? 99????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELX???? 100????????? NaN?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Error Hmholtz VELX???? 100????????? NaN?? 9.9982E-01?? 1.0000E-07 > ????????? 1? Hmholtz VELY?????? 1?? 8.0937E-16?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELY?????? 0?? 8.0937E-16?? 8.0937E-16?? 1.0000E-07 > ????????? 1? Hmholtz VELZ?????? 1?? 7.1883E-16?? 3.3898E-04?? 1.0000E-07???? Infinity?? F > ????????? 1? Hmholtz VELZ?????? 0?? 7.1883E-16?? 7.1883E-16?? 1.0000E-07 > ????????? 1? volflow X???????????????????? NaN????????? NaN????????? NaN?? 6.2832E00 > ???????????? L1/L2 DIV(V)????????????????? NaN????????? NaN > ???????????? L1/L2 QTL????????????? 0.0000E00?? 0.0000E00 > ???????????? L1/L2 DIV(V)-QTL????????????? NaN????????? NaN > ????????? 1? Fluid done? 2.0000E02? 2.6895E01 > ?? 2.0000E02????????? NaN????????? NaN monitor > filt amp 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.5000 > filt trn 1.0000 1.0000 1.0000 1.0000 1.0000 1.0000 1.0000 0.5000 > ?????? 1 sfilt:???????? NaN???? vortx > ??????? 1? 2.0000E02 Write checkpoint > ?????? FILE: > /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel0.f00001?????????????? > ??????? 1? 2.0000E02 done :: Write checkpoint > ????????????????????????????? file size =????? 21.??? MB > ????????????????????????????? avg data-throughput =??? 11.3MB/s > ????????????????????????????? io-nodes =???? 4 > end of time-step loop > runtime statistics: > init time?? 13.7358070529990?????? 0.462004458987539???? > ?prep time?????????? 1?? 1.87108852800156?????? 6.293414284007534E-002 > pres time?????????? 1?? 21.7905451879997?????? 0.732925921409712???? > ?crsl time? ???????501? 0.183691413072665?????? 6.178468552291153E-003 > crsl min?? 0.183063570999366???? > ?crsl max?? 0.260289230038325???? > ?crsl avg?? 0.221352905275126???? > ?hmhz time?????????? 6?? 4.94836180700077?????? 0.166438361480831???? > ?eslv time?????????? 0? 0.000000000000000E000? 0.000000000000000E000 > proj time?????????? 0? 0.000000000000000E000? 0.000000000000000E000 > usvp time?????????? 2? 8.829280013742391E-004? 2.969732117129529E-005 > usfq time?????????? 0? 1.237174799825880E-002? 4.161242742134884E-004 > usbc time?????????? 1? 2.739972998824669E-003? 9.215910925933331E-005 > usbc min?? 2.302368000528077E-003 > usbc max?? 1.831457500156830E-002 > usb? avg?? 6.439937250434014E-003 > mltd time?????????? 3? 1.305026299814926E-002? 4.389461553180925E-004 > cdtp time?????????? 4? 1.176028400368523E-002? 3.955576565467353E-004 > axhm time???????? 945?? 6.36171776202173?????? 0.213976649608845???? > ?advc time?????????? 1? 0.178863899000135?????? 6.016094909539131E-003 > mxmf time? 0.000000000000000E000? 0.000000000000000E000 > adc3 time? 0.000000000000000E000? 0.000000000000000E000 > col2 time? 0.000000000000000E000? 0.000000000000000E000 > col3 time? 0.000000000000000E000? 0.000000000000000E000 > a2s2 time? 0.000000000000000E000? 0.000000000000000E000 > add2 time? 0.000000000000000E000? 0.000000000000000E000 > invc time? 0.000000000000000E000? 0.000000000000000E000 > tgop time??????? 2480?? 1.02037628088146?????? 3.432039994398663E-002 > dadd time?????????? 0?? 3.58888928988017?????? 0.120712445096209? ??? > ?vdss time?????????? 4? 6.298328000411857E-003? 2.118445322600121E-004 > vdss min?? 6.298328000411857E-003 > vdss max?? 2.789256400137674E-002 > vdss avg?? 2.080069274961716E-002 > dsum time??????? 1463?? 1.95680818695473?????? 6.581732724317946E-002 > dsum min??? 1.52674149705126???? > ?dsum max??? 2.28399024302780???? > ?dsum avg??? 1.90933237102490???? > ?ddsl time?????????? 0? 0.000000000000000E000? 0.000000000000000E000 > #? nid?????? tusbc?????? tdadd?????? tcrsl?????? tvdss?????? tdsum??????? tgop??? qqq??? F > ?????????? 0? 2.7400E-03? 3.5889E00? 1.8369E-01? 6.2983E-03? 1.9568E00? 1.0204E00 qqq > ?????????? 1? 2.3024E-03? 3.7084E00? 2.5837E-01? 2.7040E-02? 1.8698E00? 1.7594E00 qqq > ?????????? 2? 1.8315E-02? 3.7437E00? 2.6029E-01? 2.1972E-02? 1.5267E00? 1.9577E00 qqq > ?????????? 3? 2.4028E-03? 3.6736E00? 1.8306E-01? 2.7893E-02? 2.2840E00? 1.0771E00 qqq > run successful: dying ... > total elapsed time???????????? :?? 4.35605E01 sec > total solver time w/o IO?????? :?? 2.78598E01 sec > time/timestep????????????????? :?? 2.78598E01 sec > avg throughput per timestep??? :?? 4.78395E03 gridpts/CPUs > total max memory usage???????? :?? 2.00808E00 GB > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.mcs.anl.gov%2Fmailman%2Flistinfo%2Fnek5000-users&data=02%7C01%7C17mt9%40queensu.ca%7C4a33f7d21f374a1300a508d5627328b9%7Cd61ecb3b38b142d582c4efb2838b925c%7C1%7C0%7C636523169127286868&sdata=9Sc91gAV5avzLirpPDvXG%2FEoEPkvQdv5ZXyApzD0uMM%3D&reserved=0 ------------------------------ Subject: Digest Footer _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.mcs.anl.gov%2Fmailman%2Flistinfo%2Fnek5000-users&data=02%7C01%7C17mt9%40queensu.ca%7C4a33f7d21f374a1300a508d5627328b9%7Cd61ecb3b38b142d582c4efb2838b925c%7C1%7C0%7C636523169127286868&sdata=9Sc91gAV5avzLirpPDvXG%2FEoEPkvQdv5ZXyApzD0uMM%3D&reserved=0 ------------------------------ End of Nek5000-users Digest, Vol 107, Issue 32 ********************************************** From nek5000-users at lists.mcs.anl.gov Tue Jan 23 11:14:50 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Tue, 23 Jan 2018 17:14:50 +0000 Subject: [Nek5000-users] ffx ffy ffz in usr Message-ID: Hi Nek, Is there anyone know whether the ffx ffy and ffz are pressure gradient? And why it is set to be (u_t/u_b)^2 and sometimes set to be 0? What's difference between those curcumstance and what else we can do to let them to be equal? Kind regards, Zhai -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Tue Jan 23 11:23:26 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Tue, 23 Jan 2018 17:23:26 +0000 Subject: [Nek5000-users] ffx ffy ffz in usr In-Reply-To: References: Message-ID: Thai, if you are referring to ffx, ffy and ffz from the usr file they are accelerations applied to the x, y and z momentum equations, respectively. What is the meaning of u_t and u_b? Marco > On Jan 23, 2018, at 12:14 PM, nek5000-users at lists.mcs.anl.gov wrote: > > Hi Nek, > > Is there anyone know whether the ffx ffy and ffz are pressure gradient? And why it is set to be (u_t/u_b)^2 and sometimes set to be 0? What's difference between those curcumstance and what else we can do to let them to be equal? > > Kind regards, > > Zhai > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users From nek5000-users at lists.mcs.anl.gov Tue Jan 23 11:36:59 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Tue, 23 Jan 2018 18:36:59 +0100 Subject: [Nek5000-users] ffx ffy ffz in usr In-Reply-To: References: Message-ID: I guess u_t is the friction velocity u_tau and u_b the bulk velocity (for a channel). So that just means that the forcing ffx in the streamwise direction will lead to a specific friction Reynolds number (fixed pressure gradient) in channel flow. In other cases, where there is no external pressure gradient (like boundary layers), you do not need to use ffx to drive the flow. Philipp On 2018-01-23 18:23, nek5000-users at lists.mcs.anl.gov wrote: > Thai, > > if you are referring to ffx, ffy and ffz from the usr file they are > accelerations applied to the x, y and z momentum equations, > respectively. > > What is the meaning of u_t and u_b? > > Marco > > >> On Jan 23, 2018, at 12:14 PM, nek5000-users at lists.mcs.anl.gov >> wrote: >> >> Hi Nek, >> >> Is there anyone know whether the ffx ffy and ffz are pressure >> gradient? And why it is set to be (u_t/u_b)^2 and sometimes set to >> be 0? What's difference between those curcumstance and what else we >> can do to let them to be equal? >> >> Kind regards, >> >> Zhai _______________________________________________ Nek5000-users >> mailing list Nek5000-users at lists.mcs.anl.gov >> https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > > _______________________________________________ Nek5000-users mailing > list Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > From nek5000-users at lists.mcs.anl.gov Tue Jan 23 12:44:27 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Tue, 23 Jan 2018 19:44:27 +0100 Subject: [Nek5000-users] Example turbChannel restart issue In-Reply-To: References: Message-ID: I think your restart file is messed up not your logfile. No need to attach it again. Please run visnek and then visit to check your restart file. Again the re2 is binary _not_ ascii that?s why it?s not human readable. On 23 Jan 2018, at 18:11, "nek5000-users at lists.mcs.anl.gov " > wrote: Hello, ? Thank you for the reply. I think it might due to the re-posting, the original file does not look as messy as it is now, I am reattaching it at the end here (Hopefully it looks good now). For the restart file, am I supposed to post-process it using Visit or other command prior to calling it? ? For the .re2 file here in the turbChannel, I am aware of that it is ASCII file. The only difference I noticed is that the one here is not readable using any software whereas others are readable. ? Thanks, ? Ming ? -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Tue Jan 23 15:43:13 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Tue, 23 Jan 2018 21:43:13 +0000 Subject: [Nek5000-users] ffx ffy ffz in usr Message-ID: Hi Philipp, Yes, they are shear velocity and bulk velocity. Can I say if the ffx, ffy or ffz equal to (u_t/u_b)^2, the flow is specified as a fixed pressure gradient in the channel, and parameter(54) and para(55) in rea file are fixed as 0. Otherwise, if the all ffx, ffy and ffz are 0, the flow is fixed at flow rate rather than pressure gradient? Cheers, Zhai -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Tue Jan 23 11:20:43 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Tue, 23 Jan 2018 17:20:43 +0000 Subject: [Nek5000-users] Example turbChannel restart issue In-Reply-To: References: Message-ID: You will have to call the visnek script on the .par file to generate a file readable by Visit. If you input file is NAME.par or NAME.rea, at command line type: visnek NAME It should generate a file NAME.nek5000 that you can read with Visit. Marco On Jan 23, 2018, at 11:08 AM, nek5000-users at lists.mcs.anl.gov wrote: Hello, Thank you for the reply. I think it might due to the re-posting, the original file does not look as messy as it is now, I am reattaching it at the end here (Hopefully it looks good now). For the restart file, am I supposed to post-process it using Visit or other command prior to calling it? For the .re2 file here in the turbChannel, I am aware of that it is ASCII file. The only difference I noticed is that the one here is not readable using any software whereas others are readable. Thanks, Ming ********************Log file***************************** Number of processors: 4 REAL wdsize : 8 INTEGER wdsize : 4 Timer accuracy : 9.40E-07 Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.par general = [(null)] general:startfrom = [turbChannel0.f00001] general:stopat = [endTime] general:endtime = [200] general:dt = [0] general:timestepper = [bdf2] general:extrapolation = [OIFS] general:variabledt = [yes] general:targetcfl = [2.0] general:writecontrol = [runTime] general:writeinterval = [100.0] general:userparam01 = [100] general:userparam02 = [20] general:userparam03 = [1] general:filtering = [hpfrt] general:filterweight = [10] general:filtercutoffratio = [0.9] problemtype = [(null)] problemtype:variableproperties = [no] problemtype:equation = [incompNS] pressure = [(null)] pressure:preconditioner = [semg_amg] pressure:residualtol = [1e-04] pressure:residualproj = [yes] velocity = [(null)] velocity:residualtol = [1e-07] velocity:density = [1] velocity:viscosity = [-2950] Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.re2 mapping elements to processors Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.ma2 1 384 384 1536 1536 NELV 2 384 384 1536 1536 NELV 3 384 384 1536 1536 NELV 0 384 384 1536 1536 NELV RANK 0 IEG 44 45 49 50 51 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 236 237 241 242 243 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 428 429 433 434 435 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 620 621 625 626 627 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 812 813 817 818 819 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 1004 1005 1009 1010 1011 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1196 1197 1201 1202 1203 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1388 1389 1393 1394 1395 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 element load imbalance: 0 384 384 done :: mapping 0.29167 sec preading mesh preading bc for ifld 1 done :: read .re2 file 0.51 sec nelgt/nelgv/lelt: 1536 1536 387 lx1 /lx2 /lx3 : 8 8 8 setup mesh topology Right-handed check complete for 1536 elements. OK. setvert3d: 8 201344 533120 201344 201344 call usrsetvert done :: usrsetvert gs_setup: 21952 unique labels shared pairwise times (avg, min, max): 2.92127e-05 2.76451e-05 3.00083e-05 crystal router : 7.82046e-05 7.75443e-05 7.88275e-05 all reduce : 0.000228323 0.000227655 0.000228766 used all_to_all method: pairwise handle bytes (avg, min, max): 1.45061e+06 1375332 1525892 buffer bytes (avg, min, max): 175616 125440 225792 setupds time 9.2419E-02 seconds 0 8 201344 1536 8 max multiplicity done :: setup mesh topology call usrdat done :: usrdat generate geometry data NOTE: All elements deformed , param(59) ^=0 done :: generate geometry data call usrdat2 done :: usrdat2 regenerate geometry data 1 NOTE: All elements deformed , param(59) ^=0 done :: regenerate geometry data 1 verify mesh topology 0.000000000000000E+000 6.28318530717959 Xrange -1.00000000000000 1.00000000000000 Yrange 0.000000000000000E+000 3.14159265358979 Zrange done :: verify mesh topology IFTRAN = T IFFLOW = T IFHEAT = F IFSPLIT = T IFLOMACH = F IFUSERVP = F IFUSERMV = F IFPERT = F IFADJ = F IFSTRS = F IFCHAR = T IFCYCLIC = F IFAXIS = F IFMVBD = F IFMELT = F IFNEKNEK = F IFSYNC = F IFVCOR = T IFINTQ = F IFGEOM = F IFSURT = F IFWCNO = F IFTMSH for field 1 = F IFADVC for field 1 = T IFNONL for field 1 = F Dealiasing enabled, lxd= 8 Estimated eigenvalues EIGAA = 1.23913370009078 EIGGA = 1862221.21607236 EIGAE = 0.250000000000000 EIGAS = 1.681282119258565E-002 EIGGE = 1862221.21607236 EIGGS = 2.00000000000000 verify mesh topology 0.000000000000000E+000 6.28318530717959 Xrange -1.00000000000000 1.00000000000000 Yrange 0.000000000000000E+000 3.14159265358979 Zrange done :: verify mesh topology E-solver strategy: 0 itr mg_nx: 1 3 7 mg_ny: 1 3 7 mg_nz: 1 3 7 call usrsetvert done :: usrsetvert gs_setup: 448 unique labels shared pairwise times (avg, min, max): 7.93538e-06 7.8488e-06 8.0526e-06 crystal router : 6.85905e-06 6.72e-06 6.9978e-06 all reduce : 1.20532e-05 1.11753e-05 1.28944e-05 used all_to_all method: crystal router handle bytes (avg, min, max): 50812 44668 56956 buffer bytes (avg, min, max): 6144 5120 7168 setupds time 3.1089E-03 seconds 1 2 1664 1536 setvert3d: 4 30336 42624 30336 30336 call usrsetvert done :: usrsetvert gs_setup: 4032 unique labels shared pairwise times (avg, min, max): 8.37387e-06 8.2548e-06 8.5004e-06 crystal router : 1.86812e-05 1.83826e-05 1.89784e-05 all reduce : 4.4251e-05 4.40251e-05 4.44275e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 269940 256100 283780 buffer bytes (avg, min, max): 32256 23040 41472 setupds time 2.4576E-02 seconds 2 4 30336 1536 setvert3d: 4 30336 42624 30336 30336 call usrsetvert done :: usrsetvert gs_setup: 4032 unique labels shared pairwise times (avg, min, max): 8.65523e-06 8.5168e-06 8.7977e-06 crystal router : 1.94818e-05 1.93217e-05 1.96357e-05 all reduce : 5.97892e-05 5.95374e-05 5.99737e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 269940 256100 283780 buffer bytes (avg, min, max): 32256 23040 41472 setupds time 1.4160E-02 seconds 3 4 30336 1536 setvert3d: 6 96896 195200 96896 96896 call usrsetvert done :: usrsetvert gs_setup: 11200 unique labels shared pairwise times (avg, min, max): 1.61057e-05 1.58103e-05 1.62982e-05 crystal router : 3.86536e-05 3.8384e-05 3.89447e-05 all reduce : 8.92118e-05 8.88703e-05 8.94562e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 742004 703588 780420 buffer bytes (avg, min, max): 89600 64000 115200 setupds time 4.3098E-02 seconds 4 6 96896 1536 regenerate geometry data 1 NOTE: All elements deformed , param(59) ^=0 done :: regenerate geometry data 1 h1_mg_nx: 1 3 7 h1_mg_ny: 1 3 7 h1_mg_nz: 1 3 7 call usrsetvert done :: usrsetvert gs_setup: 448 unique labels shared pairwise times (avg, min, max): 4.10923e-06 2.5509e-06 4.7765e-06 crystal router : 3.94603e-06 3.7989e-06 4.0103e-06 all reduce : 6.54198e-06 6.442e-06 6.5947e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 50812 44668 56956 buffer bytes (avg, min, max): 6144 5120 7168 setupds time 1.6990E-03 seconds 5 2 1664 1536 setvert3d: 4 30336 42624 30336 30336 call usrsetvert done :: usrsetvert gs_setup: 4032 unique labels shared pairwise times (avg, min, max): 7.51525e-06 7.3863e-06 7.68e-06 crystal router : 1.7878e-05 1.76051e-05 1.81134e-05 all reduce : 5.29887e-05 5.27139e-05 5.32422e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 269940 256100 283780 buffer bytes (avg, min, max): 32256 23040 41472 setupds time 2.5044E-02 seconds 6 4 30336 1536 setvert3d: 4 30336 42624 30336 30336 call usrsetvert done :: usrsetvert gs_setup: 4032 unique labels shared pairwise times (avg, min, max): 1.11506e-05 1.07538e-05 1.1453e-05 crystal router : 2.78917e-05 2.74376e-05 2.83874e-05 all reduce : 6.8896e-05 6.84774e-05 6.92927e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 269940 256100 283780 buffer bytes (avg, min, max): 32256 23040 41472 setupds time 2.0265E-02 seconds 7 4 30336 1536 setvert3d: 6 96896 195200 96896 96896 call usrsetvert done :: usrsetvert gs_setup: 11200 unique labels shared pairwise times (avg, min, max): 1.44095e-05 1.43056e-05 1.45192e-05 crystal router : 3.94263e-05 3.90332e-05 3.98261e-05 all reduce : 9.67785e-05 9.63923e-05 9.71425e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 742004 703588 780420 buffer bytes (avg, min, max): 89600 64000 115200 setupds time 4.3436E-02 seconds 8 6 96896 1536 setvert3d: 8 201344 533120 201344 201344 call usrsetvert done :: usrsetvert gs_setup: 21952 unique labels shared pairwise times (avg, min, max): 5.80216e-05 4.95078e-05 6.16774e-05 crystal router : 7.1144e-05 7.08725e-05 7.14649e-05 all reduce : 0.000235607 0.000234486 0.000236793 used all_to_all method: pairwise handle bytes (avg, min, max): 1.45061e+06 1375332 1525892 buffer bytes (avg, min, max): 175616 125440 225792 setupds time 8.4090E-02 seconds 9 8 201344 1536 setvert3d: 10 343680 1130112 343680 343680 call usrsetvert done :: usrsetvert gs_setup: 36288 unique labels shared pairwise times (avg, min, max): 3.15373e-05 3.06691e-05 3.2104e-05 crystal router : 9.24712e-05 9.09459e-05 9.39815e-05 all reduce : 0.000254788 0.00025378 0.000255437 used all_to_all method: pairwise handle bytes (avg, min, max): 2.39576e+06 2271332 2520196 buffer bytes (avg, min, max): 290304 207360 373248 setupds time 1.3027E-01 seconds 10 10 343680 1536 setup h1 coarse grid, nx_crs= 2 call usrsetvert done :: usrsetvert gs_setup: 448 unique labels shared pairwise times (avg, min, max): 5.59047e-06 5.5171e-06 5.677e-06 crystal router : 3.78503e-06 3.7079e-06 3.8472e-06 all reduce : 5.5058e-06 5.4973e-06 5.5169e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 50812 44668 56956 buffer bytes (avg, min, max): 6144 5120 7168 gs_setup: 448 unique labels shared pairwise times (avg, min, max): 1.01072e-05 9.958e-06 1.01904e-05 crystal router : 4.22242e-06 4.1446e-06 4.331e-06 all reduce : 8.35538e-06 8.1712e-06 8.4627e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 27068 23868 30268 buffer bytes (avg, min, max): 4736 3840 5632 AMG version 2.01 AMG: 8 levels AMG Chebyshev smoother data: AMG level 1: 3 iterations with rho = 0.79256 AMG level 2: 2 iterations with rho = 0.668297 AMG level 3: 2 iterations with rho = 0.481307 AMG level 4: 2 iterations with rho = 0.409707 AMG level 5: 2 iterations with rho = 0.458605 AMG level 6: 3 iterations with rho = 0.696293 AMG level 7: 2 iterations with rho = 0.666743 AMG: 1664 rows AMG: preading through rows ... done gs_setup: 431 unique labels shared pairwise times (avg, min, max): 2.78895e-06 2.5582e-06 2.8915e-06 crystal router : 4.09068e-06 3.9897e-06 4.2042e-06 all reduce : 1.05099e-05 9.6558e-06 1.14097e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 3261 2620 3832 buffer bytes (avg, min, max): 1724 1408 2040 gs_setup: 664 unique labels shared pairwise times (avg, min, max): 3.73e-06 3.6492e-06 3.8419e-06 crystal router : 4.80688e-06 4.7581e-06 4.8544e-06 all reduce : 1.91924e-05 1.88961e-05 1.95428e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 5588 3840 7948 buffer bytes (avg, min, max): 3200 2072 4328 gs_setup: 311 unique labels shared pairwise times (avg, min, max): 3.59183e-06 3.4744e-06 3.6762e-06 crystal router : 3.48463e-06 3.4264e-06 3.5338e-06 all reduce : 7.03768e-06 6.9313e-06 7.1389e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 9301 8788 9740 buffer bytes (avg, min, max): 3588 2992 4048 gs_setup: 421 unique labels shared pairwise times (avg, min, max): 4.046e-06 3.8288e-06 4.2149e-06 crystal router : 5.71768e-06 5.6236e-06 5.8628e-06 all reduce : 9.28628e-06 9.1472e-06 9.4127e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 4913 3240 6956 buffer bytes (avg, min, max): 3036 2088 4128 gs_setup: 151 unique labels shared pairwise times (avg, min, max): 2.19068e-06 2.1424e-06 2.242e-06 crystal router : 3.61935e-06 3.5275e-06 3.683e-06 all reduce : 1.15655e-05 1.14062e-05 1.16404e-05 used all_to_all method: pairwise handle bytes (avg, min, max): 1331 940 1700 buffer bytes (avg, min, max): 628 448 808 gs_setup: 194 unique labels shared pairwise times (avg, min, max): 3.61092e-06 3.5012e-06 3.7449e-06 crystal router : 4.24627e-06 4.2222e-06 4.2926e-06 all reduce : 5.85915e-06 5.651e-06 6.022e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 3380 3208 3588 buffer bytes (avg, min, max): 2160 2032 2368 gs_setup: 80 unique labels shared pairwise times (avg, min, max): 2.38705e-06 2.3152e-06 2.4211e-06 crystal router : 2.44917e-06 2.3604e-06 2.5157e-06 all reduce : 3.76915e-06 3.6987e-06 3.8185e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 985 788 1228 buffer bytes (avg, min, max): 452 320 648 gs_setup: 98 unique labels shared pairwise times (avg, min, max): 3.19185e-06 3.1425e-06 3.2323e-06 crystal router : 2.91045e-06 2.8317e-06 3.0279e-06 all reduce : 4.24988e-06 4.1918e-06 4.3256e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 5506 5136 5876 buffer bytes (avg, min, max): 2352 2192 2512 gs_setup: 33 unique labels shared pairwise times (avg, min, max): 2.20093e-06 2.1362e-06 2.3165e-06 crystal router : 3.15857e-06 3.0855e-06 3.2308e-06 all reduce : 4.0025e-06 3.9097e-06 4.0784e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 616 512 788 buffer bytes (avg, min, max): 232 160 376 gs_setup: 39 unique labels shared pairwise times (avg, min, max): 2.55118e-06 2.5145e-06 2.5821e-06 crystal router : 3.45955e-06 3.3809e-06 3.5407e-06 all reduce : 4.61387e-06 4.495e-06 4.7137e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 955 936 972 buffer bytes (avg, min, max): 468 392 536 gs_setup: 8 unique labels shared pairwise times (avg, min, max): 2.7896e-06 2.684e-06 2.8771e-06 crystal router : 3.3584e-06 3.2604e-06 3.4714e-06 all reduce : 3.8325e-06 3.7504e-06 3.9734e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 413 392 424 buffer bytes (avg, min, max): 84 64 96 gs_setup: 8 unique labels shared pairwise times (avg, min, max): 2.76598e-06 2.7364e-06 2.8357e-06 crystal router : 2.47192e-06 2.4054e-06 2.5145e-06 all reduce : 2.75563e-06 2.6928e-06 2.8295e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 916 860 972 buffer bytes (avg, min, max): 192 176 208 gs_setup: 1 unique labels shared pairwise times (avg, min, max): 7.2665e-07 6.456e-07 7.68e-07 crystal router : 2.4244e-06 2.3879e-06 2.4719e-06 all reduce : 2.57698e-06 2.5591e-06 2.5873e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 237 228 264 buffer bytes (avg, min, max): 12 8 24 gs_setup: 1 unique labels shared pairwise times (avg, min, max): 7.836e-07 6.3e-07 8.848e-07 crystal router : 2.57503e-06 2.4694e-06 2.6345e-06 all reduce : 2.86405e-06 2.8357e-06 2.9139e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 237 228 264 buffer bytes (avg, min, max): 12 8 24 gs_setup: 405 unique labels shared pairwise times (avg, min, max): 2.43873e-06 2.2721e-06 2.5217e-06 crystal router : 3.87707e-06 3.8341e-06 3.9225e-06 all reduce : 7.58878e-06 7.5007e-06 7.6681e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 3079 2020 4152 buffer bytes (avg, min, max): 1620 1024 2216 gs_setup: 235 unique labels shared pairwise times (avg, min, max): 3.03253e-06 2.9581e-06 3.1371e-06 crystal router : 4.62493e-06 4.5157e-06 4.7079e-06 all reduce : 6.30792e-06 6.2306e-06 6.4236e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 2456 1268 3872 buffer bytes (avg, min, max): 1368 600 2224 gs_setup: 232 unique labels shared pairwise times (avg, min, max): 3.3132e-06 3.2543e-06 3.3618e-06 crystal router : 3.97125e-06 3.9468e-06 3.9908e-06 all reduce : 9.85658e-06 9.7844e-06 9.8952e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 3335 2484 4152 buffer bytes (avg, min, max): 2076 1568 2664 gs_setup: 96 unique labels shared pairwise times (avg, min, max): 8.03052e-06 7.9335e-06 8.1011e-06 crystal router : 3.56828e-06 3.5204e-06 3.6189e-06 all reduce : 6.4523e-06 6.3963e-06 6.5105e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 5404 5100 5568 buffer bytes (avg, min, max): 2304 2256 2352 gs_setup: 59 unique labels shared pairwise times (avg, min, max): 3.0593e-06 2.967e-06 3.1159e-06 crystal router : 3.37507e-06 3.315e-06 3.443e-06 all reduce : 8.04967e-06 8.032e-06 8.0607e-06 used all_to_all method: pairwise handle bytes (avg, min, max): 1295 1288 1304 buffer bytes (avg, min, max): 708 680 744 gs_setup: 31 unique labels shared pairwise times (avg, min, max): 2.94198e-06 2.8528e-06 2.9872e-06 crystal router : 2.7749e-06 2.6955e-06 2.8159e-06 all reduce : 4.59447e-06 4.5455e-06 4.6566e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 2089 1864 2336 buffer bytes (avg, min, max): 744 640 848 gs_setup: 7 unique labels shared pairwise times (avg, min, max): 2.88287e-06 2.8044e-06 2.9556e-06 crystal router : 2.52328e-06 2.4726e-06 2.5612e-06 all reduce : 2.83837e-06 2.7564e-06 2.9157e-06 used all_to_all method: crystal router handle bytes (avg, min, max): 865 832 888 buffer bytes (avg, min, max): 168 160 176 done :: setup h1 coarse grid 2.36721729199780 sec call usrdat3 done :: usrdat3 set initial conditions Checking restart options: turbChannel0.f00001 nekuic (1) for ifld 1 Reading checkpoint data FILE: turbChannel0.f00001 0 2.0000E+02 done :: Read checkpoint data avg data-throughput = 2.5MBps io-nodes = 4 xyz min 0.0000 -1.0000 0.0000 uvwpt min NaN NaN NaN NaN 0.0000 PS min 0.99000E+22 xyz max 6.2832 1.0000 3.1416 uvwpt max NaN NaN NaN NaN 0.0000 PS max -0.99000E+22 Restart: recompute geom. factors. regenerate geometry data 1 NOTE: All elements deformed , param(59) ^=0 done :: regenerate geometry data 1 done :: set initial conditions call userchk 2.0000E+02 NaN NaN monitor Start collecting statistics ... done :: userchk gridpoints unique/tot: 533120 786432 dofs: 520576 533120 Initial time: 0.2000000E+03 Initialization successfully completed 13.736 sec Starting time loop ... WARNING: DT<0 or DTFS<0 Reset DT WARNING: Set DT=0.001 (arbitrarily) Final time step = 0.000000000000000E+000 HPF : 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.000000 Solving for fluid 1 1.00000E-04 NaN NaN NaN 1 Divergence 2 1.00000E-04 NaN NaN NaN 1 Divergence 3 1.00000E-04 NaN NaN NaN 1 Divergence 4 1.00000E-04 NaN NaN NaN 1 Divergence 5 1.00000E-04 NaN NaN NaN 1 Divergence 6 1.00000E-04 NaN NaN NaN 1 Divergence 7 1.00000E-04 NaN NaN NaN 1 Divergence 8 1.00000E-04 NaN NaN NaN 1 Divergence 9 1.00000E-04 NaN NaN NaN 1 Divergence 10 1.00000E-04 NaN NaN NaN 1 Divergence 11 1.00000E-04 NaN NaN NaN 1 Divergence 12 1.00000E-04 NaN NaN NaN 1 Divergence 13 1.00000E-04 NaN NaN NaN 1 Divergence 14 1.00000E-04 NaN NaN NaN 1 Divergence 15 1.00000E-04 NaN NaN NaN 1 Divergence 16 1.00000E-04 NaN NaN NaN 1 Divergence 17 1.00000E-04 NaN NaN NaN 1 Divergence 18 1.00000E-04 NaN NaN NaN 1 Divergence 19 1.00000E-04 NaN NaN NaN 1 Divergence 20 1.00000E-04 NaN NaN NaN 1 Divergence 21 1.00000E-04 NaN NaN NaN 1 Divergence 22 1.00000E-04 NaN NaN NaN 1 Divergence 23 1.00000E-04 NaN NaN NaN 1 Divergence 24 1.00000E-04 NaN NaN NaN 1 Divergence 25 1.00000E-04 NaN NaN NaN 1 Divergence 26 1.00000E-04 NaN NaN NaN 1 Divergence 27 1.00000E-04 NaN NaN NaN 1 Divergence 28 1.00000E-04 NaN NaN NaN 1 Divergence 29 1.00000E-04 NaN NaN NaN 1 Divergence 30 1.00000E-04 NaN NaN NaN 1 Divergence 31 1.00000E-04 NaN NaN NaN 1 Divergence 32 1.00000E-04 NaN NaN NaN 1 Divergence 33 1.00000E-04 NaN NaN NaN 1 Divergence 34 1.00000E-04 NaN NaN NaN 1 Divergence 35 1.00000E-04 NaN NaN NaN 1 Divergence 36 1.00000E-04 NaN NaN NaN 1 Divergence 37 1.00000E-04 NaN NaN NaN 1 Divergence 38 1.00000E-04 NaN NaN NaN 1 Divergence 39 1.00000E-04 NaN NaN NaN 1 Divergence 40 1.00000E-04 NaN NaN NaN 1 Divergence 41 1.00000E-04 NaN NaN NaN 1 Divergence 42 1.00000E-04 NaN NaN NaN 1 Divergence 43 1.00000E-04 NaN NaN NaN 1 Divergence 44 1.00000E-04 NaN NaN NaN 1 Divergence 45 1.00000E-04 NaN NaN NaN 1 Divergence 46 1.00000E-04 NaN NaN NaN 1 Divergence 47 1.00000E-04 NaN NaN NaN 1 Divergence 48 1.00000E-04 NaN NaN NaN 1 Divergence 49 1.00000E-04 NaN NaN NaN 1 Divergence 50 1.00000E-04 NaN NaN NaN 1 Divergence 51 1.00000E-04 NaN NaN NaN 1 Divergence 52 1.00000E-04 NaN NaN NaN 1 Divergence 53 1.00000E-04 NaN NaN NaN 1 Divergence 54 1.00000E-04 NaN NaN NaN 1 Divergence 55 1.00000E-04 NaN NaN NaN 1 Divergence 56 1.00000E-04 NaN NaN NaN 1 Divergence 57 1.00000E-04 NaN NaN NaN 1 Divergence 58 1.00000E-04 NaN NaN NaN 1 Divergence 59 1.00000E-04 NaN NaN NaN 1 Divergence 60 1.00000E-04 NaN NaN NaN 1 Divergence 61 1.00000E-04 NaN NaN NaN 1 Divergence 62 1.00000E-04 NaN NaN NaN 1 Divergence 63 1.00000E-04 NaN NaN NaN 1 Divergence 64 1.00000E-04 NaN NaN NaN 1 Divergence 65 1.00000E-04 NaN NaN NaN 1 Divergence 66 1.00000E-04 NaN NaN NaN 1 Divergence 67 1.00000E-04 NaN NaN NaN 1 Divergence 68 1.00000E-04 NaN NaN NaN 1 Divergence 69 1.00000E-04 NaN NaN NaN 1 Divergence 70 1.00000E-04 NaN NaN NaN 1 Divergence 71 1.00000E-04 NaN NaN NaN 1 Divergence 72 1.00000E-04 NaN NaN NaN 1 Divergence 73 1.00000E-04 NaN NaN NaN 1 Divergence 74 1.00000E-04 NaN NaN NaN 1 Divergence 75 1.00000E-04 NaN NaN NaN 1 Divergence 76 1.00000E-04 NaN NaN NaN 1 Divergence 77 1.00000E-04 NaN NaN NaN 1 Divergence 78 1.00000E-04 NaN NaN NaN 1 Divergence 79 1.00000E-04 NaN NaN NaN 1 Divergence 80 1.00000E-04 NaN NaN NaN 1 Divergence 81 1.00000E-04 NaN NaN NaN 1 Divergence 82 1.00000E-04 NaN NaN NaN 1 Divergence 83 1.00000E-04 NaN NaN NaN 1 Divergence 84 1.00000E-04 NaN NaN NaN 1 Divergence 85 1.00000E-04 NaN NaN NaN 1 Divergence 86 1.00000E-04 NaN NaN NaN 1 Divergence 87 1.00000E-04 NaN NaN NaN 1 Divergence 88 1.00000E-04 NaN NaN NaN 1 Divergence 89 1.00000E-04 NaN NaN NaN 1 Divergence 90 1.00000E-04 NaN NaN NaN 1 Divergence 91 1.00000E-04 NaN NaN NaN 1 Divergence 92 1.00000E-04 NaN NaN NaN 1 Divergence 93 1.00000E-04 NaN NaN NaN 1 Divergence 94 1.00000E-04 NaN NaN NaN 1 Divergence 95 1.00000E-04 NaN NaN NaN 1 Divergence 96 1.00000E-04 NaN NaN NaN 1 Divergence 97 1.00000E-04 NaN NaN NaN 1 Divergence 98 1.00000E-04 NaN NaN NaN 1 Divergence 99 1.00000E-04 NaN NaN NaN 1 Divergence 100 1.00000E-04 NaN NaN NaN 1 Divergence 101 1.00000E-04 NaN NaN NaN 1 Divergence 102 1.00000E-04 NaN NaN NaN 1 Divergence 103 1.00000E-04 NaN NaN NaN 1 Divergence 104 1.00000E-04 NaN NaN NaN 1 Divergence 105 1.00000E-04 NaN NaN NaN 1 Divergence 106 1.00000E-04 NaN NaN NaN 1 Divergence 107 1.00000E-04 NaN NaN NaN 1 Divergence 108 1.00000E-04 NaN NaN NaN 1 Divergence 109 1.00000E-04 NaN NaN NaN 1 Divergence 110 1.00000E-04 NaN NaN NaN 1 Divergence 111 1.00000E-04 NaN NaN NaN 1 Divergence 112 1.00000E-04 NaN NaN NaN 1 Divergence 113 1.00000E-04 NaN NaN NaN 1 Divergence 114 1.00000E-04 NaN NaN NaN 1 Divergence 115 1.00000E-04 NaN NaN NaN 1 Divergence 116 1.00000E-04 NaN NaN NaN 1 Divergence 117 1.00000E-04 NaN NaN NaN 1 Divergence 118 1.00000E-04 NaN NaN NaN 1 Divergence 119 1.00000E-04 NaN NaN NaN 1 Divergence 120 1.00000E-04 NaN NaN NaN 1 Divergence 121 1.00000E-04 NaN NaN NaN 1 Divergence 122 1.00000E-04 NaN NaN NaN 1 Divergence 123 1.00000E-04 NaN NaN NaN 1 Divergence 124 1.00000E-04 NaN NaN NaN 1 Divergence 125 1.00000E-04 NaN NaN NaN 1 Divergence 126 1.00000E-04 NaN NaN NaN 1 Divergence 127 1.00000E-04 NaN NaN NaN 1 Divergence 128 1.00000E-04 NaN NaN NaN 1 Divergence 129 1.00000E-04 NaN NaN NaN 1 Divergence 130 1.00000E-04 NaN NaN NaN 1 Divergence 131 1.00000E-04 NaN NaN NaN 1 Divergence 132 1.00000E-04 NaN NaN NaN 1 Divergence 133 1.00000E-04 NaN NaN NaN 1 Divergence 134 1.00000E-04 NaN NaN NaN 1 Divergence 135 1.00000E-04 NaN NaN NaN 1 Divergence 136 1.00000E-04 NaN NaN NaN 1 Divergence 137 1.00000E-04 NaN NaN NaN 1 Divergence 138 1.00000E-04 NaN NaN NaN 1 Divergence 139 1.00000E-04 NaN NaN NaN 1 Divergence 140 1.00000E-04 NaN NaN NaN 1 Divergence 141 1.00000E-04 NaN NaN NaN 1 Divergence 142 1.00000E-04 NaN NaN NaN 1 Divergence 143 1.00000E-04 NaN NaN NaN 1 Divergence 144 1.00000E-04 NaN NaN NaN 1 Divergence 145 1.00000E-04 NaN NaN NaN 1 Divergence 146 1.00000E-04 NaN NaN NaN 1 Divergence 147 1.00000E-04 NaN NaN NaN 1 Divergence 148 1.00000E-04 NaN NaN NaN 1 Divergence 149 1.00000E-04 NaN NaN NaN 1 Divergence 150 1.00000E-04 NaN NaN NaN 1 Divergence 151 1.00000E-04 NaN NaN NaN 1 Divergence 152 1.00000E-04 NaN NaN NaN 1 Divergence 153 1.00000E-04 NaN NaN NaN 1 Divergence 154 1.00000E-04 NaN NaN NaN 1 Divergence 155 1.00000E-04 NaN NaN NaN 1 Divergence 156 1.00000E-04 NaN NaN NaN 1 Divergence 157 1.00000E-04 NaN NaN NaN 1 Divergence 158 1.00000E-04 NaN NaN NaN 1 Divergence 159 1.00000E-04 NaN NaN NaN 1 Divergence 160 1.00000E-04 NaN NaN NaN 1 Divergence 161 1.00000E-04 NaN NaN NaN 1 Divergence 162 1.00000E-04 NaN NaN NaN 1 Divergence 163 1.00000E-04 NaN NaN NaN 1 Divergence 164 1.00000E-04 NaN NaN NaN 1 Divergence 165 1.00000E-04 NaN NaN NaN 1 Divergence 166 1.00000E-04 NaN NaN NaN 1 Divergence 167 1.00000E-04 NaN NaN NaN 1 Divergence 168 1.00000E-04 NaN NaN NaN 1 Divergence 169 1.00000E-04 NaN NaN NaN 1 Divergence 170 1.00000E-04 NaN NaN NaN 1 Divergence 171 1.00000E-04 NaN NaN NaN 1 Divergence 172 1.00000E-04 NaN NaN NaN 1 Divergence 173 1.00000E-04 NaN NaN NaN 1 Divergence 174 1.00000E-04 NaN NaN NaN 1 Divergence 175 1.00000E-04 NaN NaN NaN 1 Divergence 176 1.00000E-04 NaN NaN NaN 1 Divergence 177 1.00000E-04 NaN NaN NaN 1 Divergence 178 1.00000E-04 NaN NaN NaN 1 Divergence 179 1.00000E-04 NaN NaN NaN 1 Divergence 180 1.00000E-04 NaN NaN NaN 1 Divergence 181 1.00000E-04 NaN NaN NaN 1 Divergence 182 1.00000E-04 NaN NaN NaN 1 Divergence 183 1.00000E-04 NaN NaN NaN 1 Divergence 184 1.00000E-04 NaN NaN NaN 1 Divergence 185 1.00000E-04 NaN NaN NaN 1 Divergence 186 1.00000E-04 NaN NaN NaN 1 Divergence 187 1.00000E-04 NaN NaN NaN 1 Divergence 188 1.00000E-04 NaN NaN NaN 1 Divergence 189 1.00000E-04 NaN NaN NaN 1 Divergence 190 1.00000E-04 NaN NaN NaN 1 Divergence 191 1.00000E-04 NaN NaN NaN 1 Divergence 192 1.00000E-04 NaN NaN NaN 1 Divergence 193 1.00000E-04 NaN NaN NaN 1 Divergence 194 1.00000E-04 NaN NaN NaN 1 Divergence 195 1.00000E-04 NaN NaN NaN 1 Divergence 196 1.00000E-04 NaN NaN NaN 1 Divergence 197 1.00000E-04 NaN NaN NaN 1 Divergence 198 1.00000E-04 NaN NaN NaN 1 Divergence 199 1.00000E-04 NaN NaN NaN 1 Divergence 200 1.00000E-04 NaN NaN NaN 1 Divergence 201 1.00000E-04 NaN NaN NaN 1 Divergence 202 1.00000E-04 NaN NaN NaN 1 Divergence 203 1.00000E-04 NaN NaN NaN 1 Divergence 204 1.00000E-04 NaN NaN NaN 1 Divergence 205 1.00000E-04 NaN NaN NaN 1 Divergence 206 1.00000E-04 NaN NaN NaN 1 Divergence 207 1.00000E-04 NaN NaN NaN 1 Divergence 208 1.00000E-04 NaN NaN NaN 1 Divergence 209 1.00000E-04 NaN NaN NaN 1 Divergence 210 1.00000E-04 NaN NaN NaN 1 Divergence 211 1.00000E-04 NaN NaN NaN 1 Divergence 212 1.00000E-04 NaN NaN NaN 1 Divergence 213 1.00000E-04 NaN NaN NaN 1 Divergence 214 1.00000E-04 NaN NaN NaN 1 Divergence 215 1.00000E-04 NaN NaN NaN 1 Divergence 216 1.00000E-04 NaN NaN NaN 1 Divergence 217 1.00000E-04 NaN NaN NaN 1 Divergence 218 1.00000E-04 NaN NaN NaN 1 Divergence 219 1.00000E-04 NaN NaN NaN 1 Divergence 220 1.00000E-04 NaN NaN NaN 1 Divergence 221 1.00000E-04 NaN NaN NaN 1 Divergence 222 1.00000E-04 NaN NaN NaN 1 Divergence 223 1.00000E-04 NaN NaN NaN 1 Divergence 224 1.00000E-04 NaN NaN NaN 1 Divergence 225 1.00000E-04 NaN NaN NaN 1 Divergence 226 1.00000E-04 NaN NaN NaN 1 Divergence 227 1.00000E-04 NaN NaN NaN 1 Divergence 228 1.00000E-04 NaN NaN NaN 1 Divergence 229 1.00000E-04 NaN NaN NaN 1 Divergence 230 1.00000E-04 NaN NaN NaN 1 Divergence 231 1.00000E-04 NaN NaN NaN 1 Divergence 232 1.00000E-04 NaN NaN NaN 1 Divergence 233 1.00000E-04 NaN NaN NaN 1 Divergence 234 1.00000E-04 NaN NaN NaN 1 Divergence 235 1.00000E-04 NaN NaN NaN 1 Divergence 236 1.00000E-04 NaN NaN NaN 1 Divergence 237 1.00000E-04 NaN NaN NaN 1 Divergence 238 1.00000E-04 NaN NaN NaN 1 Divergence 239 1.00000E-04 NaN NaN NaN 1 Divergence 240 1.00000E-04 NaN NaN NaN 1 Divergence 241 1.00000E-04 NaN NaN NaN 1 Divergence 242 1.00000E-04 NaN NaN NaN 1 Divergence 243 1.00000E-04 NaN NaN NaN 1 Divergence 244 1.00000E-04 NaN NaN NaN 1 Divergence 245 1.00000E-04 NaN NaN NaN 1 Divergence 246 1.00000E-04 NaN NaN NaN 1 Divergence 247 1.00000E-04 NaN NaN NaN 1 Divergence 248 1.00000E-04 NaN NaN NaN 1 Divergence 249 1.00000E-04 NaN NaN NaN 1 Divergence 250 1.00000E-04 NaN NaN NaN 1 Divergence 251 1.00000E-04 NaN NaN NaN 1 Divergence 252 1.00000E-04 NaN NaN NaN 1 Divergence 253 1.00000E-04 NaN NaN NaN 1 Divergence 254 1.00000E-04 NaN NaN NaN 1 Divergence 255 1.00000E-04 NaN NaN NaN 1 Divergence 256 1.00000E-04 NaN NaN NaN 1 Divergence 257 1.00000E-04 NaN NaN NaN 1 Divergence 258 1.00000E-04 NaN NaN NaN 1 Divergence 259 1.00000E-04 NaN NaN NaN 1 Divergence 260 1.00000E-04 NaN NaN NaN 1 Divergence 261 1.00000E-04 NaN NaN NaN 1 Divergence 262 1.00000E-04 NaN NaN NaN 1 Divergence 263 1.00000E-04 NaN NaN NaN 1 Divergence 264 1.00000E-04 NaN NaN NaN 1 Divergence 265 1.00000E-04 NaN NaN NaN 1 Divergence 266 1.00000E-04 NaN NaN NaN 1 Divergence 267 1.00000E-04 NaN NaN NaN 1 Divergence 268 1.00000E-04 NaN NaN NaN 1 Divergence 269 1.00000E-04 NaN NaN NaN 1 Divergence 270 1.00000E-04 NaN NaN NaN 1 Divergence 271 1.00000E-04 NaN NaN NaN 1 Divergence 272 1.00000E-04 NaN NaN NaN 1 Divergence 273 1.00000E-04 NaN NaN NaN 1 Divergence 274 1.00000E-04 NaN NaN NaN 1 Divergence 275 1.00000E-04 NaN NaN NaN 1 Divergence 276 1.00000E-04 NaN NaN NaN 1 Divergence 277 1.00000E-04 NaN NaN NaN 1 Divergence 278 1.00000E-04 NaN NaN NaN 1 Divergence 279 1.00000E-04 NaN NaN NaN 1 Divergence 280 1.00000E-04 NaN NaN NaN 1 Divergence 281 1.00000E-04 NaN NaN NaN 1 Divergence 282 1.00000E-04 NaN NaN NaN 1 Divergence 283 1.00000E-04 NaN NaN NaN 1 Divergence 284 1.00000E-04 NaN NaN NaN 1 Divergence 285 1.00000E-04 NaN NaN NaN 1 Divergence 286 1.00000E-04 NaN NaN NaN 1 Divergence 287 1.00000E-04 NaN NaN NaN 1 Divergence 288 1.00000E-04 NaN NaN NaN 1 Divergence 289 1.00000E-04 NaN NaN NaN 1 Divergence 290 1.00000E-04 NaN NaN NaN 1 Divergence 291 1.00000E-04 NaN NaN NaN 1 Divergence 292 1.00000E-04 NaN NaN NaN 1 Divergence 293 1.00000E-04 NaN NaN NaN 1 Divergence 294 1.00000E-04 NaN NaN NaN 1 Divergence 295 1.00000E-04 NaN NaN NaN 1 Divergence 296 1.00000E-04 NaN NaN NaN 1 Divergence 297 1.00000E-04 NaN NaN NaN 1 Divergence 298 1.00000E-04 NaN NaN NaN 1 Divergence 299 1.00000E-04 NaN NaN NaN 1 Divergence 300 1.00000E-04 NaN NaN NaN 1 Divergence 301 1.00000E-04 NaN NaN NaN 1 Divergence 302 1.00000E-04 NaN NaN NaN 1 Divergence 303 1.00000E-04 NaN NaN NaN 1 Divergence 304 1.00000E-04 NaN NaN NaN 1 Divergence 305 1.00000E-04 NaN NaN NaN 1 Divergence 306 1.00000E-04 NaN NaN NaN 1 Divergence 307 1.00000E-04 NaN NaN NaN 1 Divergence 308 1.00000E-04 NaN NaN NaN 1 Divergence 309 1.00000E-04 NaN NaN NaN 1 Divergence 310 1.00000E-04 NaN NaN NaN 1 Divergence 311 1.00000E-04 NaN NaN NaN 1 Divergence 312 1.00000E-04 NaN NaN NaN 1 Divergence 313 1.00000E-04 NaN NaN NaN 1 Divergence 314 1.00000E-04 NaN NaN NaN 1 Divergence 315 1.00000E-04 NaN NaN NaN 1 Divergence 316 1.00000E-04 NaN NaN NaN 1 Divergence 317 1.00000E-04 NaN NaN NaN 1 Divergence 318 1.00000E-04 NaN NaN NaN 1 Divergence 319 1.00000E-04 NaN NaN NaN 1 Divergence 320 1.00000E-04 NaN NaN NaN 1 Divergence 321 1.00000E-04 NaN NaN NaN 1 Divergence 322 1.00000E-04 NaN NaN NaN 1 Divergence 323 1.00000E-04 NaN NaN NaN 1 Divergence 324 1.00000E-04 NaN NaN NaN 1 Divergence 325 1.00000E-04 NaN NaN NaN 1 Divergence 326 1.00000E-04 NaN NaN NaN 1 Divergence 327 1.00000E-04 NaN NaN NaN 1 Divergence 328 1.00000E-04 NaN NaN NaN 1 Divergence 329 1.00000E-04 NaN NaN NaN 1 Divergence 330 1.00000E-04 NaN NaN NaN 1 Divergence 331 1.00000E-04 NaN NaN NaN 1 Divergence 332 1.00000E-04 NaN NaN NaN 1 Divergence 333 1.00000E-04 NaN NaN NaN 1 Divergence 334 1.00000E-04 NaN NaN NaN 1 Divergence 335 1.00000E-04 NaN NaN NaN 1 Divergence 336 1.00000E-04 NaN NaN NaN 1 Divergence 337 1.00000E-04 NaN NaN NaN 1 Divergence 338 1.00000E-04 NaN NaN NaN 1 Divergence 339 1.00000E-04 NaN NaN NaN 1 Divergence 340 1.00000E-04 NaN NaN NaN 1 Divergence 341 1.00000E-04 NaN NaN NaN 1 Divergence 342 1.00000E-04 NaN NaN NaN 1 Divergence 343 1.00000E-04 NaN NaN NaN 1 Divergence 344 1.00000E-04 NaN NaN NaN 1 Divergence 345 1.00000E-04 NaN NaN NaN 1 Divergence 346 1.00000E-04 NaN NaN NaN 1 Divergence 347 1.00000E-04 NaN NaN NaN 1 Divergence 348 1.00000E-04 NaN NaN NaN 1 Divergence 349 1.00000E-04 NaN NaN NaN 1 Divergence 350 1.00000E-04 NaN NaN NaN 1 Divergence 351 1.00000E-04 NaN NaN NaN 1 Divergence 352 1.00000E-04 NaN NaN NaN 1 Divergence 353 1.00000E-04 NaN NaN NaN 1 Divergence 354 1.00000E-04 NaN NaN NaN 1 Divergence 355 1.00000E-04 NaN NaN NaN 1 Divergence 356 1.00000E-04 NaN NaN NaN 1 Divergence 357 1.00000E-04 NaN NaN NaN 1 Divergence 358 1.00000E-04 NaN NaN NaN 1 Divergence 359 1.00000E-04 NaN NaN NaN 1 Divergence 360 1.00000E-04 NaN NaN NaN 1 Divergence 361 1.00000E-04 NaN NaN NaN 1 Divergence 362 1.00000E-04 NaN NaN NaN 1 Divergence 363 1.00000E-04 NaN NaN NaN 1 Divergence 364 1.00000E-04 NaN NaN NaN 1 Divergence 365 1.00000E-04 NaN NaN NaN 1 Divergence 366 1.00000E-04 NaN NaN NaN 1 Divergence 367 1.00000E-04 NaN NaN NaN 1 Divergence 368 1.00000E-04 NaN NaN NaN 1 Divergence 369 1.00000E-04 NaN NaN NaN 1 Divergence 370 1.00000E-04 NaN NaN NaN 1 Divergence 371 1.00000E-04 NaN NaN NaN 1 Divergence 372 1.00000E-04 NaN NaN NaN 1 Divergence 373 1.00000E-04 NaN NaN NaN 1 Divergence 374 1.00000E-04 NaN NaN NaN 1 Divergence 375 1.00000E-04 NaN NaN NaN 1 Divergence 376 1.00000E-04 NaN NaN NaN 1 Divergence 377 1.00000E-04 NaN NaN NaN 1 Divergence 378 1.00000E-04 NaN NaN NaN 1 Divergence 379 1.00000E-04 NaN NaN NaN 1 Divergence 380 1.00000E-04 NaN NaN NaN 1 Divergence 381 1.00000E-04 NaN NaN NaN 1 Divergence 382 1.00000E-04 NaN NaN NaN 1 Divergence 383 1.00000E-04 NaN NaN NaN 1 Divergence 384 1.00000E-04 NaN NaN NaN 1 Divergence 385 1.00000E-04 NaN NaN NaN 1 Divergence 386 1.00000E-04 NaN NaN NaN 1 Divergence 387 1.00000E-04 NaN NaN NaN 1 Divergence 388 1.00000E-04 NaN NaN NaN 1 Divergence 389 1.00000E-04 NaN NaN NaN 1 Divergence 390 1.00000E-04 NaN NaN NaN 1 Divergence 391 1.00000E-04 NaN NaN NaN 1 Divergence 392 1.00000E-04 NaN NaN NaN 1 Divergence 393 1.00000E-04 NaN NaN NaN 1 Divergence 394 1.00000E-04 NaN NaN NaN 1 Divergence 395 1.00000E-04 NaN NaN NaN 1 Divergence 396 1.00000E-04 NaN NaN NaN 1 Divergence 397 1.00000E-04 NaN NaN NaN 1 Divergence 398 1.00000E-04 NaN NaN NaN 1 Divergence 399 1.00000E-04 NaN NaN NaN 1 Divergence 400 1.00000E-04 NaN NaN NaN 1 Divergence 401 1.00000E-04 NaN NaN NaN 1 Divergence 402 1.00000E-04 NaN NaN NaN 1 Divergence 403 1.00000E-04 NaN NaN NaN 1 Divergence 404 1.00000E-04 NaN NaN NaN 1 Divergence 405 1.00000E-04 NaN NaN NaN 1 Divergence 406 1.00000E-04 NaN NaN NaN 1 Divergence 407 1.00000E-04 NaN NaN NaN 1 Divergence 408 1.00000E-04 NaN NaN NaN 1 Divergence 409 1.00000E-04 NaN NaN NaN 1 Divergence 410 1.00000E-04 NaN NaN NaN 1 Divergence 411 1.00000E-04 NaN NaN NaN 1 Divergence 412 1.00000E-04 NaN NaN NaN 1 Divergence 413 1.00000E-04 NaN NaN NaN 1 Divergence 414 1.00000E-04 NaN NaN NaN 1 Divergence 415 1.00000E-04 NaN NaN NaN 1 Divergence 416 1.00000E-04 NaN NaN NaN 1 Divergence 417 1.00000E-04 NaN NaN NaN 1 Divergence 418 1.00000E-04 NaN NaN NaN 1 Divergence 419 1.00000E-04 NaN NaN NaN 1 Divergence 420 1.00000E-04 NaN NaN NaN 1 Divergence 421 1.00000E-04 NaN NaN NaN 1 Divergence 422 1.00000E-04 NaN NaN NaN 1 Divergence 423 1.00000E-04 NaN NaN NaN 1 Divergence 424 1.00000E-04 NaN NaN NaN 1 Divergence 425 1.00000E-04 NaN NaN NaN 1 Divergence 426 1.00000E-04 NaN NaN NaN 1 Divergence 427 1.00000E-04 NaN NaN NaN 1 Divergence 428 1.00000E-04 NaN NaN NaN 1 Divergence 429 1.00000E-04 NaN NaN NaN 1 Divergence 430 1.00000E-04 NaN NaN NaN 1 Divergence 431 1.00000E-04 NaN NaN NaN 1 Divergence 432 1.00000E-04 NaN NaN NaN 1 Divergence 433 1.00000E-04 NaN NaN NaN 1 Divergence 434 1.00000E-04 NaN NaN NaN 1 Divergence 435 1.00000E-04 NaN NaN NaN 1 Divergence 436 1.00000E-04 NaN NaN NaN 1 Divergence 437 1.00000E-04 NaN NaN NaN 1 Divergence 438 1.00000E-04 NaN NaN NaN 1 Divergence 439 1.00000E-04 NaN NaN NaN 1 Divergence 440 1.00000E-04 NaN NaN NaN 1 Divergence 441 1.00000E-04 NaN NaN NaN 1 Divergence 442 1.00000E-04 NaN NaN NaN 1 Divergence 443 1.00000E-04 NaN NaN NaN 1 Divergence 444 1.00000E-04 NaN NaN NaN 1 Divergence 445 1.00000E-04 NaN NaN NaN 1 Divergence 446 1.00000E-04 NaN NaN NaN 1 Divergence 447 1.00000E-04 NaN NaN NaN 1 Divergence 448 1.00000E-04 NaN NaN NaN 1 Divergence 449 1.00000E-04 NaN NaN NaN 1 Divergence 450 1.00000E-04 NaN NaN NaN 1 Divergence 451 1.00000E-04 NaN NaN NaN 1 Divergence 452 1.00000E-04 NaN NaN NaN 1 Divergence 453 1.00000E-04 NaN NaN NaN 1 Divergence 454 1.00000E-04 NaN NaN NaN 1 Divergence 455 1.00000E-04 NaN NaN NaN 1 Divergence 456 1.00000E-04 NaN NaN NaN 1 Divergence 457 1.00000E-04 NaN NaN NaN 1 Divergence 458 1.00000E-04 NaN NaN NaN 1 Divergence 459 1.00000E-04 NaN NaN NaN 1 Divergence 460 1.00000E-04 NaN NaN NaN 1 Divergence 461 1.00000E-04 NaN NaN NaN 1 Divergence 462 1.00000E-04 NaN NaN NaN 1 Divergence 463 1.00000E-04 NaN NaN NaN 1 Divergence 464 1.00000E-04 NaN NaN NaN 1 Divergence 465 1.00000E-04 NaN NaN NaN 1 Divergence 466 1.00000E-04 NaN NaN NaN 1 Divergence 467 1.00000E-04 NaN NaN NaN 1 Divergence 468 1.00000E-04 NaN NaN NaN 1 Divergence 469 1.00000E-04 NaN NaN NaN 1 Divergence 470 1.00000E-04 NaN NaN NaN 1 Divergence 471 1.00000E-04 NaN NaN NaN 1 Divergence 472 1.00000E-04 NaN NaN NaN 1 Divergence 473 1.00000E-04 NaN NaN NaN 1 Divergence 474 1.00000E-04 NaN NaN NaN 1 Divergence 475 1.00000E-04 NaN NaN NaN 1 Divergence 476 1.00000E-04 NaN NaN NaN 1 Divergence 477 1.00000E-04 NaN NaN NaN 1 Divergence 478 1.00000E-04 NaN NaN NaN 1 Divergence 479 1.00000E-04 NaN NaN NaN 1 Divergence 480 1.00000E-04 NaN NaN NaN 1 Divergence 481 1.00000E-04 NaN NaN NaN 1 Divergence 482 1.00000E-04 NaN NaN NaN 1 Divergence 483 1.00000E-04 NaN NaN NaN 1 Divergence 484 1.00000E-04 NaN NaN NaN 1 Divergence 485 1.00000E-04 NaN NaN NaN 1 Divergence 486 1.00000E-04 NaN NaN NaN 1 Divergence 487 1.00000E-04 NaN NaN NaN 1 Divergence 488 1.00000E-04 NaN NaN NaN 1 Divergence 489 1.00000E-04 NaN NaN NaN 1 Divergence 490 1.00000E-04 NaN NaN NaN 1 Divergence 491 1.00000E-04 NaN NaN NaN 1 Divergence 492 1.00000E-04 NaN NaN NaN 1 Divergence 493 1.00000E-04 NaN NaN NaN 1 Divergence 494 1.00000E-04 NaN NaN NaN 1 Divergence 495 1.00000E-04 NaN NaN NaN 1 Divergence 496 1.00000E-04 NaN NaN NaN 1 Divergence 497 1.00000E-04 NaN NaN NaN 1 Divergence 498 1.00000E-04 NaN NaN NaN 1 Divergence 499 1.00000E-04 NaN NaN NaN 1 Divergence 500 1.00000E-04 NaN NaN NaN 1 Divergence 1 PRES gmres 500 NaN NaN 1.0000E-04 1.3084E+01 2.1669E+01 F 1 Hmholtz VELX 1 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 2 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 3 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 4 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 5 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 6 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 7 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 8 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 9 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 10 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 11 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 12 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 13 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 14 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 15 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 16 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 17 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 18 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 19 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 20 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 21 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 22 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 23 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 24 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 25 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 26 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 27 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 28 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 29 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 30 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 31 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 32 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 33 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 34 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 35 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 36 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 37 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 38 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 39 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 40 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 41 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 42 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 43 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 44 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 45 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 46 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 47 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 48 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 49 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 50 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 51 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 52 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 53 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 54 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 55 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 56 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 57 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 58 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 59 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 60 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 61 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 62 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 63 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 64 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 65 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 66 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 67 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 68 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 69 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 70 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 71 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 72 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 73 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 74 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 75 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 76 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 77 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 78 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 79 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 80 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 81 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 82 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 83 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 84 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 85 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 86 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 87 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 88 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 89 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 90 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 91 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 92 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 93 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 94 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 95 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 96 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 97 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 98 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 99 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 100 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Error Hmholtz VELX 100 NaN NaN 1.0000E-07 1 Hmholtz VELY 1 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 2 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 3 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 4 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 5 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 6 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 7 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 8 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 9 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 10 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 11 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 12 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 13 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 14 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 15 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 16 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 17 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 18 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 19 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 20 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 21 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 22 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 23 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 24 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 25 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 26 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 27 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 28 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 29 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 30 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 31 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 32 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 33 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 34 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 35 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 36 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 37 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 38 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 39 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 40 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 41 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 42 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 43 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 44 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 45 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 46 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 47 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 48 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 49 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 50 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 51 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 52 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 53 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 54 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 55 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 56 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 57 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 58 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 59 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 60 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 61 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 62 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 63 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 64 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 65 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 66 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 67 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 68 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 69 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 70 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 71 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 72 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 73 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 74 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 75 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 76 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 77 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 78 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 79 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 80 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 81 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 82 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 83 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 84 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 85 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 86 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 87 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 88 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 89 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 90 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 91 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 92 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 93 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 94 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 95 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 96 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 97 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 98 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 99 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 100 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Error Hmholtz VELY 100 NaN NaN 1.0000E-07 1 Hmholtz VELZ 1 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 2 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 3 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 4 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 5 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 6 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 7 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 8 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 9 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 10 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 11 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 12 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 13 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 14 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 15 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 16 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 17 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 18 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 19 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 20 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 21 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 22 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 23 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 24 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 25 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 26 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 27 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 28 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 29 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 30 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 31 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 32 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 33 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 34 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 35 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 36 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 37 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 38 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 39 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 40 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 41 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 42 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 43 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 44 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 45 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 46 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 47 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 48 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 49 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 50 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 51 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 52 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 53 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 54 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 55 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 56 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 57 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 58 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 59 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 60 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 61 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 62 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 63 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 64 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 65 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 66 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 67 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 68 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 69 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 70 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 71 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 72 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 73 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 74 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 75 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 76 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 77 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 78 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 79 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 80 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 81 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 82 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 83 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 84 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 85 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 86 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 87 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 88 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 89 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 90 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 91 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 92 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 93 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 94 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 95 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 96 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 97 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 98 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 99 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 100 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Error Hmholtz VELZ 100 NaN NaN 1.0000E-07 1 1.00000E-04 1.04290E-15 1.48092E-15 7.04224E-01 1 Divergence 1 PRES gmres 1 1.0429E-15 1.4809E-15 1.0000E-04 2.3331E-02 5.0854E-02 F 1 Hmholtz VELX 1 9.9982E-01 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 2 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 3 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 4 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 5 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 6 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 7 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 8 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 9 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 10 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 11 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 12 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 13 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 14 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 15 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 16 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 17 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 18 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 19 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 20 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 21 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 22 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 23 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 24 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 25 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 26 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 27 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 28 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 29 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 30 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 31 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 32 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 33 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 34 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 35 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 36 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 37 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 38 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 39 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 40 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 41 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 42 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 43 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 44 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 45 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 46 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 47 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 48 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 49 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 50 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 51 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 52 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 53 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 54 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 55 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 56 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 57 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 58 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 59 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 60 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 61 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 62 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 63 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 64 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 65 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 66 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 67 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 68 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 69 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 70 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 71 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 72 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 73 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 74 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 75 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 76 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 77 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 78 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 79 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 80 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 81 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 82 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 83 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 84 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 85 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 86 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 87 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 88 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 89 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 90 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 91 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 92 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 93 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 94 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 95 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 96 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 97 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 98 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 99 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELX 100 NaN 3.3898E-04 1.0000E-07 Infinity F 1 Error Hmholtz VELX 100 NaN 9.9982E-01 1.0000E-07 1 Hmholtz VELY 1 8.0937E-16 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELY 0 8.0937E-16 8.0937E-16 1.0000E-07 1 Hmholtz VELZ 1 7.1883E-16 3.3898E-04 1.0000E-07 Infinity F 1 Hmholtz VELZ 0 7.1883E-16 7.1883E-16 1.0000E-07 1 volflow X NaN NaN NaN 6.2832E+00 L1/L2 DIV(V) NaN NaN L1/L2 QTL 0.0000E+00 0.0000E+00 L1/L2 DIV(V)-QTL NaN NaN 1 Fluid done 2.0000E+02 2.6895E+01 2.0000E+02 NaN NaN monitor filt amp 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.5000 filt trn 1.0000 1.0000 1.0000 1.0000 1.0000 1.0000 1.0000 0.5000 1 sfilt: NaN vortx 1 2.0000E+02 Write checkpoint FILE: /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel0.f00001 1 2.0000E+02 done :: Write checkpoint file size = 21. MB avg data-throughput = 11.3MB/s io-nodes = 4 end of time-step loop runtime statistics: init time 13.7358070529990 0.462004458987539 prep time 1 1.87108852800156 6.293414284007534E-002 pres time 1 21.7905451879997 0.732925921409712 crsl time 501 0.183691413072665 6.178468552291153E-003 crsl min 0.183063570999366 crsl max 0.260289230038325 crsl avg 0.221352905275126 hmhz time 6 4.94836180700077 0.166438361480831 eslv time 0 0.000000000000000E+000 0.000000000000000E+000 proj time 0 0.000000000000000E+000 0.000000000000000E+000 usvp time 2 8.829280013742391E-004 2.969732117129529E-005 usfq time 0 1.237174799825880E-002 4.161242742134884E-004 usbc time 1 2.739972998824669E-003 9.215910925933331E-005 usbc min 2.302368000528077E-003 usbc max 1.831457500156830E-002 usb avg 6.439937250434014E-003 mltd time 3 1.305026299814926E-002 4.389461553180925E-004 cdtp time 4 1.176028400368523E-002 3.955576565467353E-004 axhm time 945 6.36171776202173 0.213976649608845 advc time 1 0.178863899000135 6.016094909539131E-003 mxmf time 0.000000000000000E+000 0.000000000000000E+000 adc3 time 0.000000000000000E+000 0.000000000000000E+000 col2 time 0.000000000000000E+000 0.000000000000000E+000 col3 time 0.000000000000000E+000 0.000000000000000E+000 a2s2 time 0.000000000000000E+000 0.000000000000000E+000 add2 time 0.000000000000000E+000 0.000000000000000E+000 invc time 0.000000000000000E+000 0.000000000000000E+000 tgop time 2480 1.02037628088146 3.432039994398663E-002 dadd time 0 3.58888928988017 0.120712445096209 vdss time 4 6.298328000411857E-003 2.118445322600121E-004 vdss min 6.298328000411857E-003 vdss max 2.789256400137674E-002 vdss avg 2.080069274961716E-002 dsum time 1463 1.95680818695473 6.581732724317946E-002 dsum min 1.52674149705126 dsum max 2.28399024302780 dsum avg 1.90933237102490 ddsl time 0 0.000000000000000E+000 0.000000000000000E+000 # nid tusbc tdadd tcrsl tvdss tdsum tgop qqq F 0 2.7400E-03 3.5889E+00 1.8369E-01 6.2983E-03 1.9568E+00 1.0204E+00 qqq 1 2.3024E-03 3.7084E+00 2.5837E-01 2.7040E-02 1.8698E+00 1.7594E+00 qqq 2 1.8315E-02 3.7437E+00 2.6029E-01 2.1972E-02 1.5267E+00 1.9577E+00 qqq 3 2.4028E-03 3.6736E+00 1.8306E-01 2.7893E-02 2.2840E+00 1.0771E+00 qqq run successful: dying ... total elapsed time : 4.35605E+01 sec total solver time w/o IO : 2.78598E+01 sec time/timestep : 2.78598E+01 sec avg throughput per timestep : 4.78395E+03 gridpts/CPUs total max memory usage : 2.00808E+00 GB _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Tue Jan 23 16:04:00 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Tue, 23 Jan 2018 16:04:00 -0600 Subject: [Nek5000-users] Heat transfer Message-ID: Hi Nek`s I generated my mesh in exo2nek. My initial case was a DNS study over pebbles in tandem for iso-thermal flow. I now wish to add heat transfer from the pebbles.. How do i specify the thermal boundary conditions for a mesh that has been generated by exo2nek? Regards -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Tue Jan 23 20:27:46 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Wed, 24 Jan 2018 02:27:46 +0000 Subject: [Nek5000-users] Heat transfer In-Reply-To: References: Message-ID: I assume that for your isothermal case, you set the boundary conditions for the velocity field with the following piece of code: do iel=1,nelt do ifc=1,2*ndim idss = bc(5,ifc,iel,1) if (idss.eq.1) cbc(ifc,iel,1)='v ? if (idss.eq.2) cbc(ifc,iel,1)=?O ? if (idss.eq.3) cbc(ifc,iel,1)=?W ' enddo enddo The ?1? in the arrays cbc and bc is for the velocity field. If you use the same approach for the temperature equation, you will have the replace ?1? with ?2? which corresponds to the temperature field. Marco On Jan 23, 2018, at 5:04 PM, nek5000-users at lists.mcs.anl.gov wrote: Hi Nek`s I generated my mesh in exo2nek. My initial case was a DNS study over pebbles in tandem for iso-thermal flow. I now wish to add heat transfer from the pebbles.. How do i specify the thermal boundary conditions for a mesh that has been generated by exo2nek? Regards _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Wed Jan 24 15:07:53 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Wed, 24 Jan 2018 21:07:53 +0000 Subject: [Nek5000-users] turbChannel compiling issue after adding more elements Message-ID: Dear Nek team, I ran into an odd issue when compiling the file after adding more elements. Number of elements have been increased to 48(x)*32(y)*48(z) from the default 16(x)*12(y)*8(z). Everything went very smooth (genbox and genmap both worked well) till the last step in "makenek" when it started to generate .f file; error occurred and it says: obj/turbChannel.o: In function `uservp_': turbChannel.f:(.text+0x17): relocation truncated to fit: R_X86_64_32S against symbol `hcglb_' defined in COMMON section in obj/turbChannel.o turbChannel.f:(.text+0x30): relocation truncated to fit: R_X86_64_PC32 against symbol `nekuse_' defined in COMMON section in obj/turbChannel.o turbChannel.f:(.text+0x3c): relocation truncated to fit: R_X86_64_32S against symbol `cdsmag_' defined in COMMON section in obj/turbChannel.o turbChannel.f:(.text+0x43): relocation truncated to fit: R_X86_64_PC32 against symbol `nekuse_' defined in COMMON section in obj/turbChannel.o obj/turbChannel.o: In function `userf_': turbChannel.f:(.text+0x56): relocation truncated to fit: R_X86_64_PC32 against symbol `cforce_' defined in COMMON section in obj/turbChannel.o turbChannel.f:(.text+0x5d): relocation truncated to fit: R_X86_64_PC32 against symbol `nekuse_' defined in COMMON section in obj/turbChannel.o turbChannel.f:(.text+0x64): relocation truncated to fit: R_X86_64_PC32 against symbol `nekuse_' defined in COMMON section in obj/turbChannel.o turbChannel.f:(.text+0x6b): relocation truncated to fit: R_X86_64_PC32 against symbol `nekuse_' defined in COMMON section in obj/turbChannel.o obj/turbChannel.o: In function `userq_': turbChannel.f:(.text+0x73): relocation truncated to fit: R_X86_64_PC32 against symbol `nekuse_' defined in COMMON section in obj/turbChannel.o obj/turbChannel.o: In function `userchk_': turbChannel.f:(.text+0x93): relocation truncated to fit: R_X86_64_PC32 against symbol `dimn_' defined in COMMON section in obj/turbChannel.o turbChannel.f:(.text+0x9b): additional relocation overflows omitted from the output make: *** [makefile:120: nek5000] Error 1 Such error did not occur when running the default mesh settings. Has anyone seen this before? Any suggestions? Thanks a lot for the help! Regards, Ming -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Wed Jan 24 16:24:15 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Wed, 24 Jan 2018 16:24:15 -0600 Subject: [Nek5000-users] turbChannel compiling issue after adding more elements In-Reply-To: References: Message-ID: Hi Ming, This usually happens to me when the resultant executable requires more memory allocation than available. If you haven't already, you can add -mcmodel=medium to the FFLAGS variable in makenek. This tells the compiler that it can create an executable that requires more than 2 GB of memory. Otherwise, if you already have that in there, you might be running into the limit of available physical memory of your system. Sincerely, Kento > On Jan 24, 2018, at 15:07, nek5000-users at lists.mcs.anl.gov wrote: > > Dear Nek team, > > I ran into an odd issue when compiling the file after adding more elements. Number of elements have been increased to 48(x)*32(y)*48(z) from the default 16(x)*12(y)*8(z). Everything went very smooth (genbox and genmap both worked well) till the last step in ?makenek? when it started to generate .ffile; error occurred and it says: > > obj/turbChannel.o: In function `uservp_': > turbChannel.f:(.text+0x17): relocation truncated to fit: R_X86_64_32S against symbol `hcglb_' defined in COMMON section in obj/turbChannel.o > turbChannel.f:(.text+0x30): relocation truncated to fit: R_X86_64_PC32 against symbol `nekuse_' defined in COMMON section in obj/turbChannel.o > turbChannel.f:(.text+0x3c): relocation truncated to fit: R_X86_64_32S against symbol `cdsmag_' defined in COMMON section in obj/turbChannel.o > turbChannel.f:(.text+0x43): relocation truncated to fit: R_X86_64_PC32 against symbol `nekuse_' defined in COMMON section in obj/turbChannel.o > obj/turbChannel.o: In function `userf_': > turbChannel.f:(.text+0x56): relocation truncated to fit: R_X86_64_PC32 against symbol `cforce_' defined in COMMON section in obj/turbChannel.o > turbChannel.f:(.text+0x5d): relocation truncated to fit: R_X86_64_PC32 against symbol `nekuse_' defined in COMMON section in obj/turbChannel.o > turbChannel.f:(.text+0x64): relocation truncated to fit: R_X86_64_PC32 against symbol `nekuse_' defined in COMMON section in obj/turbChannel.o > turbChannel.f:(.text+0x6b): relocation truncated to fit: R_X86_64_PC32 against symbol `nekuse_' defined in COMMON section in obj/turbChannel.o > obj/turbChannel.o: In function `userq_': > turbChannel.f:(.text+0x73): relocation truncated to fit: R_X86_64_PC32 against symbol `nekuse_' defined in COMMON section in obj/turbChannel.o > obj/turbChannel.o: In function `userchk_': > turbChannel.f:(.text+0x93): relocation truncated to fit: R_X86_64_PC32 against symbol `dimn_' defined in COMMON section in obj/turbChannel.o > turbChannel.f:(.text+0x9b): additional relocation overflows omitted from the output > make: *** [makefile:120: nek5000] Error 1 > > Such error did not occur when running the default mesh settings. Has anyone seen this before? Any suggestions? > > Thanks a lot for the help! > > Regards, > > Ming > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users From nek5000-users at lists.mcs.anl.gov Wed Jan 24 22:40:45 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Thu, 25 Jan 2018 04:40:45 +0000 Subject: [Nek5000-users] turbChannel compiling issue after adding more elements Message-ID: Hello Kento, Thank you for your help! The compiler now works. But I ran into another issue; after it started to run, it soon stopped and reported an error saying: AMG: preading through rows ... done ERROR (proc 0000, src/amg.c:487): AMG: missing data for some rows an error occured: dying ? Would you run into this issue earlier before? Again thanks a lot for the suggestions. Regards, Ming *********** complete logfile ********* ________________________________ Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.par general = [(null)] general:stopat = [endTime] general:endtime = [200] general:dt = [0] general:timestepper = [bdf2] general:extrapolation = [OIFS] general:variabledt = [yes] general:targetcfl = [2.0] general:writecontrol = [runTime] general:writeinterval = [200.0] general:userparam01 = [100] general:userparam02 = [20] general:userparam03 = [1] general:filtering = [hpfrt] general:filterweight = [10] general:filtercutoffratio = [0.9] problemtype = [(null)] problemtype:variableproperties = [no] problemtype:equation = [incompNS] pressure = [(null)] pressure:preconditioner = [semg_amg] pressure:residualtol = [1e-04] pressure:residualproj = [yes] velocity = [(null)] velocity:residualtol = [1e-07] velocity:density = [1] velocity:viscosity = [-10900] Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.re2 mapping elements to processors Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.ma2 0 9216 9216 73728 73728 NELV 5 9216 9216 73728 73728 NELV 7 9216 9216 73728 73728 NELV 1 9216 9216 73728 73728 NELV 3 9216 9216 73728 73728 NELV 6 9216 9216 73728 73728 NELV 4 9216 9216 73728 73728 NELV 2 9216 9216 73728 73728 NELV element load imbalance: 0 9216 9216 done :: mapping 0.66962E-01 sec preading mesh preading bc for ifld 1 done :: read .re2 file 0.30 sec nelgt/nelgv/lelt: 73728 73728 18439 lx1 /lx2 /lx3 : 8 8 8 setup mesh topology Right-handed check complete for 73728 elements. OK. setvert3d: 8 9476352 25401600 9476352 9476352 call usrsetvert done :: usrsetvert gs_setup: 413952 unique labels shared pairwise times (avg, min, max): 0.000140989 0.000133355 0.000146356 crystal router : 0.0012817 0.00128028 0.00128291 used all_to_all method: pairwise handle bytes (avg, min, max): 3.26526e+07 32652644 32652644 buffer bytes (avg, min, max): 1.68269e+06 1682688 1682688 setupds time 1.9997E+00 seconds 0 8 9476352 73728 8 max multiplicity done :: setup mesh topology call usrdat done :: usrdat generate geometry data NOTE: All elements deformed , param(59) ^=0 done :: generate geometry data call usrdat2 done :: usrdat2 regenerate geometry data 1 NOTE: All elements deformed , param(59) ^=0 done :: regenerate geometry data 1 verify mesh topology 0.000000000000000E+000 6.28318530717959 Xrange -1.00000000000000 1.00000000000000 Yrange 0.000000000000000E+000 3.14159265358979 Zrange done :: verify mesh topology IFTRAN = T IFFLOW = T IFHEAT = F IFSPLIT = T IFLOMACH = F IFUSERVP = F IFUSERMV = F IFPERT = F IFADJ = F IFSTRS = F IFCHAR = T IFCYCLIC = F IFAXIS = F IFMVBD = F IFMELT = F IFNEKNEK = F IFSYNC = F IFVCOR = T IFINTQ = F IFGEOM = F IFSURT = F IFWCNO = F IFTMSH for field 1 = F IFADVC for field 1 = T IFNONL for field 1 = F Dealiasing enabled, lxd= 8 Estimated eigenvalues EIGAA = 1.23913370009078 EIGGA = 30588693.2337829 EIGAE = 0.250000000000000 EIGAS = 1.681282119258565E-002 EIGGE = 30588693.2337829 EIGGS = 2.00000000000000 verify mesh topology 0.000000000000000E+000 6.28318530717959 Xrange -1.00000000000000 1.00000000000000 Yrange 0.000000000000000E+000 3.14159265358979 Zrange done :: verify mesh topology E-solver strategy: 0 itr mg_nx: 1 3 7 mg_ny: 1 3 7 mg_nz: 1 3 7 call usrsetvert done :: usrsetvert gs_setup: 8448 unique labels shared pairwise times (avg, min, max): 1.21617e-05 1.1921e-05 1.24227e-05 crystal router : 3.65702e-05 3.65344e-05 3.66269e-05 all reduce : 0.00014386 0.000142943 0.000144376 used all_to_all method: pairwise handle bytes (avg, min, max): 728420 728420 728420 buffer bytes (avg, min, max): 37632 37632 37632 setupds time 2.0250E-02 seconds 1 2 76032 73728 setvert3d: 4 1421568 2011392 1421568 1421568 call usrsetvert done :: usrsetvert gs_setup: 76032 unique labels shared pairwise times (avg, min, max): 4.62178e-05 4.47887e-05 4.74119e-05 crystal router : 0.000222897 0.000222723 0.000223086 all reduce : 0.000974339 0.000967893 0.000979289 used all_to_all method: pairwise handle bytes (avg, min, max): 5.91396e+06 5913956 5913956 buffer bytes (avg, min, max): 315648 315648 315648 setupds time 3.5739E-01 seconds 2 4 1421568 73728 setvert3d: 4 1421568 2011392 1421568 1421568 call usrsetvert done :: usrsetvert gs_setup: 76032 unique labels shared pairwise times (avg, min, max): 4.5131e-05 4.40137e-05 4.5883e-05 crystal router : 0.000217508 0.00021732 0.000217639 all reduce : 0.000978618 0.000972797 0.000983269 used all_to_all method: pairwise handle bytes (avg, min, max): 5.91396e+06 5913956 5913956 buffer bytes (avg, min, max): 315648 315648 315648 setupds time 3.5094E-01 seconds 3 4 1421568 73728 setvert3d: 6 4555008 9273600 4555008 4555008 call usrsetvert done :: usrsetvert gs_setup: 211200 unique labels shared pairwise times (avg, min, max): 9.59221e-05 9.2321e-05 9.80701e-05 crystal router : 0.000574208 0.000573776 0.000574501 used all_to_all method: pairwise handle bytes (avg, min, max): 1.65554e+07 16555364 16555364 buffer bytes (avg, min, max): 864000 864000 864000 setupds time 9.2152E-01 seconds 4 6 4555008 73728 regenerate geometry data 1 NOTE: All elements deformed , param(59) ^=0 done :: regenerate geometry data 1 h1_mg_nx: 1 3 7 h1_mg_ny: 1 3 7 h1_mg_nz: 1 3 7 call usrsetvert done :: usrsetvert gs_setup: 8448 unique labels shared pairwise times (avg, min, max): 1.42743e-05 1.37607e-05 1.47085e-05 crystal router : 3.54692e-05 3.53276e-05 3.56395e-05 all reduce : 0.000145775 0.000145112 0.000146347 used all_to_all method: pairwise handle bytes (avg, min, max): 728420 728420 728420 buffer bytes (avg, min, max): 37632 37632 37632 setupds time 1.9277E-02 seconds 5 2 76032 73728 setvert3d: 4 1421568 2011392 1421568 1421568 call usrsetvert done :: usrsetvert gs_setup: 76032 unique labels shared pairwise times (avg, min, max): 4.74352e-05 4.61341e-05 4.8379e-05 crystal router : 0.000219904 0.000219596 0.000220055 all reduce : 0.00108293 0.00107907 0.00108614 used all_to_all method: pairwise handle bytes (avg, min, max): 5.91396e+06 5913956 5913956 buffer bytes (avg, min, max): 315648 315648 315648 setupds time 3.5849E-01 seconds 6 4 1421568 73728 setvert3d: 4 1421568 2011392 1421568 1421568 call usrsetvert done :: usrsetvert gs_setup: 76032 unique labels shared pairwise times (avg, min, max): 4.99966e-05 4.93097e-05 5.04928e-05 crystal router : 0.000220982 0.000220777 0.000221201 all reduce : 0.000975639 0.000969762 0.000980587 used all_to_all method: pairwise handle bytes (avg, min, max): 5.91396e+06 5913956 5913956 buffer bytes (avg, min, max): 315648 315648 315648 setupds time 3.5221E-01 seconds 7 4 1421568 73728 setvert3d: 6 4555008 9273600 4555008 4555008 call usrsetvert done :: usrsetvert gs_setup: 211200 unique labels shared pairwise times (avg, min, max): 9.7033e-05 9.53629e-05 9.89481e-05 crystal router : 0.000575673 0.000575274 0.00057601 used all_to_all method: pairwise handle bytes (avg, min, max): 1.65554e+07 16555364 16555364 buffer bytes (avg, min, max): 864000 864000 864000 setupds time 9.0969E-01 seconds 8 6 4555008 73728 setvert3d: 8 9476352 25401600 9476352 9476352 call usrsetvert done :: usrsetvert gs_setup: 413952 unique labels shared pairwise times (avg, min, max): 0.000145018 0.00014225 0.000147666 crystal router : 0.00127508 0.00127457 0.00127577 used all_to_all method: pairwise handle bytes (avg, min, max): 3.26526e+07 32652644 32652644 buffer bytes (avg, min, max): 1.68269e+06 1682688 1682688 setupds time 1.9358E+00 seconds 9 8 9476352 73728 setvert3d: 10 16185600 53934336 16185600 16185600 call usrsetvert done :: usrsetvert gs_setup: 684288 unique labels shared pairwise times (avg, min, max): 0.000185176 0.000182058 0.000188558 crystal router : 0.00236343 0.00236093 0.00236685 used all_to_all method: pairwise handle bytes (avg, min, max): 5.42058e+07 54205796 54205796 buffer bytes (avg, min, max): 2.77171e+06 2771712 2771712 setupds time 3.2958E+00 seconds 10 10 16185600 73728 setup h1 coarse grid, nx_crs= 2 call usrsetvert done :: usrsetvert gs_setup: 8448 unique labels shared pairwise times (avg, min, max): 1.58059e-05 1.48741e-05 1.6321e-05 crystal router : 3.54276e-05 3.51642e-05 3.56729e-05 all reduce : 0.000144706 0.000143665 0.00014533 used all_to_all method: pairwise handle bytes (avg, min, max): 728420 728420 728420 buffer bytes (avg, min, max): 37632 37632 37632 gs_setup: 8448 unique labels shared pairwise times (avg, min, max): 1.56632e-05 1.53686e-05 1.61476e-05 crystal router : 1.74988e-05 1.74323e-05 1.75631e-05 all reduce : 0.000148094 0.00014731 0.000148594 used all_to_all method: pairwise handle bytes (avg, min, max): 368228 368228 368228 buffer bytes (avg, min, max): 17664 17664 17664 AMG version 2.01 AMG: 8 levels AMG Chebyshev smoother data: AMG level 1: 3 iterations with rho = 0.79256 AMG level 2: 2 iterations with rho = 0.668297 AMG level 3: 2 iterations with rho = 0.481307 AMG level 4: 2 iterations with rho = 0.409707 AMG level 5: 2 iterations with rho = 0.458605 AMG level 6: 3 iterations with rho = 0.696293 AMG level 7: 2 iterations with rho = 0.666743 AMG: 1664 rows AMG: preading through rows ... done ERROR (proc 0000, src/amg.c:487): AMG: missing data for some rows an error occured: dying ... -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Wed Jan 24 22:57:05 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Wed, 24 Jan 2018 22:57:05 -0600 Subject: [Nek5000-users] turbChannel compiling issue after adding more elements In-Reply-To: References: Message-ID: Hi Ming & everyone, I tracked down the error to a part of the gslib code (Nek5000/3rd_party/gslib/gslib-1.0.1/src/amg.c:487). Unfortunately, I am not familiar with AMG or gslib code so I cannot help you with this problem. If someone is familiar with this issue, please help Ming out. Sincerely, Kento > On Jan 24, 2018, at 22:40, nek5000-users at lists.mcs.anl.gov wrote: > > Hello Kento, > > Thank you for your help! The compiler now works. But I ran into another issue; after it started to run, it soon stopped and reported an error saying: > > AMG: preading through rows ... done > ERROR (proc 0000, src/amg.c:487): AMG: missing data for some rows > > an error occured: dying ? > > Would you run into this issue earlier before? > > Again thanks a lot for the suggestions. > > Regards, > > Ming > > *********** complete logfile ********* > Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.par > general = [(null)] > general:stopat = [endTime] > general:endtime = [200] > general:dt = [0] > general:timestepper = [bdf2] > general:extrapolation = [OIFS] > general:variabledt = [yes] > general:targetcfl = [2.0] > general:writecontrol = [runTime] > general:writeinterval = [200.0] > general:userparam01 = [100] > general:userparam02 = [20] > general:userparam03 = [1] > general:filtering = [hpfrt] > general:filterweight = [10] > general:filtercutoffratio = [0.9] > problemtype = [(null)] > problemtype:variableproperties = [no] > problemtype:equation = [incompNS] > pressure = [(null)] > pressure:preconditioner = [semg_amg] > pressure:residualtol = [1e-04] > pressure:residualproj = [yes] > velocity = [(null)] > velocity:residualtol = [1e-07] > velocity:density = [1] > velocity:viscosity = [-10900] > Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.re2 > mapping elements to processors > Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.ma2 > 0 9216 9216 73728 73728 NELV > 5 9216 9216 73728 73728 NELV > 7 9216 9216 73728 73728 NELV > 1 9216 9216 73728 73728 NELV > 3 9216 9216 73728 73728 NELV > 6 9216 9216 73728 73728 NELV > 4 9216 9216 73728 73728 NELV > 2 9216 9216 73728 73728 NELV > > element load imbalance: 0 9216 9216 > done :: mapping 0.66962E-01 sec > > > preading mesh > preading bc for ifld 1 > done :: read .re2 file 0.30 sec > > nelgt/nelgv/lelt: 73728 73728 18439 > lx1 /lx2 /lx3 : 8 8 8 > setup mesh topology > Right-handed check complete for 73728 elements. OK. > setvert3d: 8 9476352 25401600 9476352 9476352 > call usrsetvert > done :: usrsetvert > > gs_setup: 413952 unique labels shared > pairwise times (avg, min, max): 0.000140989 0.000133355 0.000146356 > crystal router : 0.0012817 0.00128028 0.00128291 > used all_to_all method: pairwise > handle bytes (avg, min, max): 3.26526e+07 32652644 32652644 > buffer bytes (avg, min, max): 1.68269e+06 1682688 1682688 > setupds time 1.9997E+00 seconds 0 8 9476352 73728 > 8 max multiplicity > done :: setup mesh topology > > call usrdat > done :: usrdat > > generate geometry data > NOTE: All elements deformed , param(59) ^=0 > done :: generate geometry data > > call usrdat2 > done :: usrdat2 > > regenerate geometry data 1 > NOTE: All elements deformed , param(59) ^=0 > done :: regenerate geometry data 1 > > verify mesh topology > 0.000000000000000E+000 6.28318530717959 Xrange > -1.00000000000000 1.00000000000000 Yrange > 0.000000000000000E+000 3.14159265358979 Zrange > done :: verify mesh topology > > IFTRAN = T > IFFLOW = T > IFHEAT = F > IFSPLIT = T > IFLOMACH = F > IFUSERVP = F > IFUSERMV = F > IFPERT = F > IFADJ = F > IFSTRS = F > IFCHAR = T > IFCYCLIC = F > IFAXIS = F > IFMVBD = F > IFMELT = F > IFNEKNEK = F > IFSYNC = F > > IFVCOR = T > IFINTQ = F > IFGEOM = F > IFSURT = F > IFWCNO = F > > IFTMSH for field 1 = F > IFADVC for field 1 = T > IFNONL for field 1 = F > > Dealiasing enabled, lxd= 8 > > Estimated eigenvalues > EIGAA = 1.23913370009078 > EIGGA = 30588693.2337829 > EIGAE = 0.250000000000000 > EIGAS = 1.681282119258565E-002 > EIGGE = 30588693.2337829 > EIGGS = 2.00000000000000 > > verify mesh topology > 0.000000000000000E+000 6.28318530717959 Xrange > -1.00000000000000 1.00000000000000 Yrange > 0.000000000000000E+000 3.14159265358979 Zrange > done :: verify mesh topology > > E-solver strategy: 0 itr > mg_nx: 1 3 7 > mg_ny: 1 3 7 > mg_nz: 1 3 7 > call usrsetvert > done :: usrsetvert > > gs_setup: 8448 unique labels shared > pairwise times (avg, min, max): 1.21617e-05 1.1921e-05 1.24227e-05 > crystal router : 3.65702e-05 3.65344e-05 3.66269e-05 > all reduce : 0.00014386 0.000142943 0.000144376 > used all_to_all method: pairwise > handle bytes (avg, min, max): 728420 728420 728420 > buffer bytes (avg, min, max): 37632 37632 37632 > setupds time 2.0250E-02 seconds 1 2 76032 73728 > setvert3d: 4 1421568 2011392 1421568 1421568 > call usrsetvert > done :: usrsetvert > > gs_setup: 76032 unique labels shared > pairwise times (avg, min, max): 4.62178e-05 4.47887e-05 4.74119e-05 > crystal router : 0.000222897 0.000222723 0.000223086 > all reduce : 0.000974339 0.000967893 0.000979289 > used all_to_all method: pairwise > handle bytes (avg, min, max): 5.91396e+06 5913956 5913956 > buffer bytes (avg, min, max): 315648 315648 315648 > setupds time 3.5739E-01 seconds 2 4 1421568 73728 > setvert3d: 4 1421568 2011392 1421568 1421568 > call usrsetvert > done :: usrsetvert > > gs_setup: 76032 unique labels shared > pairwise times (avg, min, max): 4.5131e-05 4.40137e-05 4.5883e-05 > crystal router : 0.000217508 0.00021732 0.000217639 > all reduce : 0.000978618 0.000972797 0.000983269 > used all_to_all method: pairwise > handle bytes (avg, min, max): 5.91396e+06 5913956 5913956 > buffer bytes (avg, min, max): 315648 315648 315648 > setupds time 3.5094E-01 seconds 3 4 1421568 73728 > setvert3d: 6 4555008 9273600 4555008 4555008 > call usrsetvert > done :: usrsetvert > > gs_setup: 211200 unique labels shared > pairwise times (avg, min, max): 9.59221e-05 9.2321e-05 9.80701e-05 > crystal router : 0.000574208 0.000573776 0.000574501 > used all_to_all method: pairwise > handle bytes (avg, min, max): 1.65554e+07 16555364 16555364 > buffer bytes (avg, min, max): 864000 864000 864000 > setupds time 9.2152E-01 seconds 4 6 4555008 73728 > regenerate geometry data 1 > NOTE: All elements deformed , param(59) ^=0 > done :: regenerate geometry data 1 > > h1_mg_nx: 1 3 7 > h1_mg_ny: 1 3 7 > h1_mg_nz: 1 3 7 > call usrsetvert > done :: usrsetvert > > gs_setup: 8448 unique labels shared > pairwise times (avg, min, max): 1.42743e-05 1.37607e-05 1.47085e-05 > crystal router : 3.54692e-05 3.53276e-05 3.56395e-05 > all reduce : 0.000145775 0.000145112 0.000146347 > used all_to_all method: pairwise > handle bytes (avg, min, max): 728420 728420 728420 > buffer bytes (avg, min, max): 37632 37632 37632 > setupds time 1.9277E-02 seconds 5 2 76032 73728 > setvert3d: 4 1421568 2011392 1421568 1421568 > call usrsetvert > done :: usrsetvert > > gs_setup: 76032 unique labels shared > pairwise times (avg, min, max): 4.74352e-05 4.61341e-05 4.8379e-05 > crystal router : 0.000219904 0.000219596 0.000220055 > all reduce : 0.00108293 0.00107907 0.00108614 > used all_to_all method: pairwise > handle bytes (avg, min, max): 5.91396e+06 5913956 5913956 > buffer bytes (avg, min, max): 315648 315648 315648 > setupds time 3.5849E-01 seconds 6 4 1421568 73728 > setvert3d: 4 1421568 2011392 1421568 1421568 > call usrsetvert > done :: usrsetvert > > gs_setup: 76032 unique labels shared > pairwise times (avg, min, max): 4.99966e-05 4.93097e-05 5.04928e-05 > crystal router : 0.000220982 0.000220777 0.000221201 > all reduce : 0.000975639 0.000969762 0.000980587 > used all_to_all method: pairwise > handle bytes (avg, min, max): 5.91396e+06 5913956 5913956 > buffer bytes (avg, min, max): 315648 315648 315648 > setupds time 3.5221E-01 seconds 7 4 1421568 73728 > setvert3d: 6 4555008 9273600 4555008 4555008 > call usrsetvert > done :: usrsetvert > > gs_setup: 211200 unique labels shared > pairwise times (avg, min, max): 9.7033e-05 9.53629e-05 9.89481e-05 > crystal router : 0.000575673 0.000575274 0.00057601 > used all_to_all method: pairwise > handle bytes (avg, min, max): 1.65554e+07 16555364 16555364 > buffer bytes (avg, min, max): 864000 864000 864000 > setupds time 9.0969E-01 seconds 8 6 4555008 73728 > setvert3d: 8 9476352 25401600 9476352 9476352 > call usrsetvert > done :: usrsetvert > > gs_setup: 413952 unique labels shared > pairwise times (avg, min, max): 0.000145018 0.00014225 0.000147666 > crystal router : 0.00127508 0.00127457 0.00127577 > used all_to_all method: pairwise > handle bytes (avg, min, max): 3.26526e+07 32652644 32652644 > buffer bytes (avg, min, max): 1.68269e+06 1682688 1682688 > setupds time 1.9358E+00 seconds 9 8 9476352 73728 > setvert3d: 10 16185600 53934336 16185600 16185600 > call usrsetvert > done :: usrsetvert > > gs_setup: 684288 unique labels shared > pairwise times (avg, min, max): 0.000185176 0.000182058 0.000188558 > crystal router : 0.00236343 0.00236093 0.00236685 > used all_to_all method: pairwise > handle bytes (avg, min, max): 5.42058e+07 54205796 54205796 > buffer bytes (avg, min, max): 2.77171e+06 2771712 2771712 > setupds time 3.2958E+00 seconds 10 10 16185600 73728 > setup h1 coarse grid, nx_crs= 2 > call usrsetvert > done :: usrsetvert > > gs_setup: 8448 unique labels shared > pairwise times (avg, min, max): 1.58059e-05 1.48741e-05 1.6321e-05 > crystal router : 3.54276e-05 3.51642e-05 3.56729e-05 > all reduce : 0.000144706 0.000143665 0.00014533 > used all_to_all method: pairwise > handle bytes (avg, min, max): 728420 728420 728420 > buffer bytes (avg, min, max): 37632 37632 37632 > gs_setup: 8448 unique labels shared > pairwise times (avg, min, max): 1.56632e-05 1.53686e-05 1.61476e-05 > crystal router : 1.74988e-05 1.74323e-05 1.75631e-05 > all reduce : 0.000148094 0.00014731 0.000148594 > used all_to_all method: pairwise > handle bytes (avg, min, max): 368228 368228 368228 > buffer bytes (avg, min, max): 17664 17664 17664 > AMG version 2.01 > AMG: 8 levels > AMG Chebyshev smoother data: > AMG level 1: 3 iterations with rho = 0.79256 > AMG level 2: 2 iterations with rho = 0.668297 > AMG level 3: 2 iterations with rho = 0.481307 > AMG level 4: 2 iterations with rho = 0.409707 > AMG level 5: 2 iterations with rho = 0.458605 > AMG level 6: 3 iterations with rho = 0.696293 > AMG level 7: 2 iterations with rho = 0.666743 > AMG: 1664 rows > AMG: preading through rows ... done > ERROR (proc 0000, src/amg.c:487): AMG: missing data for some rows > > an error occured: dying ... > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users From nek5000-users at lists.mcs.anl.gov Thu Jan 25 02:00:57 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Thu, 25 Jan 2018 09:00:57 +0100 Subject: [Nek5000-users] turbChannel compiling issue after adding more elements Message-ID: Are you using the mesh from the example otherwise you have to create new AMG files for your mesh. See here: https://lists.mcs.anl.gov/mailman/htdig/nek5000-users/2017-December/004854.html -----Original message----- > From:nek5000-users at lists.mcs.anl.gov > Sent: Thursday 25th January 2018 5:58 > To: nek5000-users at lists.mcs.anl.gov > Subject: Re: [Nek5000-users] turbChannel compiling issue after adding more elements > > Hi Ming & everyone, > > I tracked down the error to a part of the gslib code (Nek5000/3rd_party/gslib/gslib-1.0.1/src/amg.c:487). Unfortunately, I am not familiar with AMG or gslib code so I cannot help you with this problem. > > If someone is familiar with this issue, please help Ming out. > > Sincerely, > Kento > > > On Jan 24, 2018, at 22:40, nek5000-users at lists.mcs.anl.gov wrote: > > > > Hello Kento, > > > > Thank you for your help! The compiler now works. But I ran into another issue; after it started to run, it soon stopped and reported an error saying: > > > > AMG: preading through rows ... done > > ERROR (proc 0000, src/amg.c:487): AMG: missing data for some rows > > > > an error occured: dying ? > > > > Would you run into this issue earlier before? > > > > Again thanks a lot for the suggestions. > > > > Regards, > > > > Ming > > > > *********** complete logfile ********* > > Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.par > > general = [(null)] > > general:stopat = [endTime] > > general:endtime = [200] > > general:dt = [0] > > general:timestepper = [bdf2] > > general:extrapolation = [OIFS] > > general:variabledt = [yes] > > general:targetcfl = [2.0] > > general:writecontrol = [runTime] > > general:writeinterval = [200.0] > > general:userparam01 = [100] > > general:userparam02 = [20] > > general:userparam03 = [1] > > general:filtering = [hpfrt] > > general:filterweight = [10] > > general:filtercutoffratio = [0.9] > > problemtype = [(null)] > > problemtype:variableproperties = [no] > > problemtype:equation = [incompNS] > > pressure = [(null)] > > pressure:preconditioner = [semg_amg] > > pressure:residualtol = [1e-04] > > pressure:residualproj = [yes] > > velocity = [(null)] > > velocity:residualtol = [1e-07] > > velocity:density = [1] > > velocity:viscosity = [-10900] > > Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.re2 > > mapping elements to processors > > Reading /global/home/hpc4076/Nek5000/run/turbChannel/turbChannel.ma2 > > 0 9216 9216 73728 73728 NELV > > 5 9216 9216 73728 73728 NELV > > 7 9216 9216 73728 73728 NELV > > 1 9216 9216 73728 73728 NELV > > 3 9216 9216 73728 73728 NELV > > 6 9216 9216 73728 73728 NELV > > 4 9216 9216 73728 73728 NELV > > 2 9216 9216 73728 73728 NELV > > > > element load imbalance: 0 9216 9216 > > done :: mapping 0.66962E-01 sec > > > > > > preading mesh > > preading bc for ifld 1 > > done :: read .re2 file 0.30 sec > > > > nelgt/nelgv/lelt: 73728 73728 18439 > > lx1 /lx2 /lx3 : 8 8 8 > > setup mesh topology > > Right-handed check complete for 73728 elements. OK. > > setvert3d: 8 9476352 25401600 9476352 9476352 > > call usrsetvert > > done :: usrsetvert > > > > gs_setup: 413952 unique labels shared > > pairwise times (avg, min, max): 0.000140989 0.000133355 0.000146356 > > crystal router : 0.0012817 0.00128028 0.00128291 > > used all_to_all method: pairwise > > handle bytes (avg, min, max): 3.26526e+07 32652644 32652644 > > buffer bytes (avg, min, max): 1.68269e+06 1682688 1682688 > > setupds time 1.9997E+00 seconds 0 8 9476352 73728 > > 8 max multiplicity > > done :: setup mesh topology > > > > call usrdat > > done :: usrdat > > > > generate geometry data > > NOTE: All elements deformed , param(59) ^=0 > > done :: generate geometry data > > > > call usrdat2 > > done :: usrdat2 > > > > regenerate geometry data 1 > > NOTE: All elements deformed , param(59) ^=0 > > done :: regenerate geometry data 1 > > > > verify mesh topology > > 0.000000000000000E+000 6.28318530717959 Xrange > > -1.00000000000000 1.00000000000000 Yrange > > 0.000000000000000E+000 3.14159265358979 Zrange > > done :: verify mesh topology > > > > IFTRAN = T > > IFFLOW = T > > IFHEAT = F > > IFSPLIT = T > > IFLOMACH = F > > IFUSERVP = F > > IFUSERMV = F > > IFPERT = F > > IFADJ = F > > IFSTRS = F > > IFCHAR = T > > IFCYCLIC = F > > IFAXIS = F > > IFMVBD = F > > IFMELT = F > > IFNEKNEK = F > > IFSYNC = F > > > > IFVCOR = T > > IFINTQ = F > > IFGEOM = F > > IFSURT = F > > IFWCNO = F > > > > IFTMSH for field 1 = F > > IFADVC for field 1 = T > > IFNONL for field 1 = F > > > > Dealiasing enabled, lxd= 8 > > > > Estimated eigenvalues > > EIGAA = 1.23913370009078 > > EIGGA = 30588693.2337829 > > EIGAE = 0.250000000000000 > > EIGAS = 1.681282119258565E-002 > > EIGGE = 30588693.2337829 > > EIGGS = 2.00000000000000 > > > > verify mesh topology > > 0.000000000000000E+000 6.28318530717959 Xrange > > -1.00000000000000 1.00000000000000 Yrange > > 0.000000000000000E+000 3.14159265358979 Zrange > > done :: verify mesh topology > > > > E-solver strategy: 0 itr > > mg_nx: 1 3 7 > > mg_ny: 1 3 7 > > mg_nz: 1 3 7 > > call usrsetvert > > done :: usrsetvert > > > > gs_setup: 8448 unique labels shared > > pairwise times (avg, min, max): 1.21617e-05 1.1921e-05 1.24227e-05 > > crystal router : 3.65702e-05 3.65344e-05 3.66269e-05 > > all reduce : 0.00014386 0.000142943 0.000144376 > > used all_to_all method: pairwise > > handle bytes (avg, min, max): 728420 728420 728420 > > buffer bytes (avg, min, max): 37632 37632 37632 > > setupds time 2.0250E-02 seconds 1 2 76032 73728 > > setvert3d: 4 1421568 2011392 1421568 1421568 > > call usrsetvert > > done :: usrsetvert > > > > gs_setup: 76032 unique labels shared > > pairwise times (avg, min, max): 4.62178e-05 4.47887e-05 4.74119e-05 > > crystal router : 0.000222897 0.000222723 0.000223086 > > all reduce : 0.000974339 0.000967893 0.000979289 > > used all_to_all method: pairwise > > handle bytes (avg, min, max): 5.91396e+06 5913956 5913956 > > buffer bytes (avg, min, max): 315648 315648 315648 > > setupds time 3.5739E-01 seconds 2 4 1421568 73728 > > setvert3d: 4 1421568 2011392 1421568 1421568 > > call usrsetvert > > done :: usrsetvert > > > > gs_setup: 76032 unique labels shared > > pairwise times (avg, min, max): 4.5131e-05 4.40137e-05 4.5883e-05 > > crystal router : 0.000217508 0.00021732 0.000217639 > > all reduce : 0.000978618 0.000972797 0.000983269 > > used all_to_all method: pairwise > > handle bytes (avg, min, max): 5.91396e+06 5913956 5913956 > > buffer bytes (avg, min, max): 315648 315648 315648 > > setupds time 3.5094E-01 seconds 3 4 1421568 73728 > > setvert3d: 6 4555008 9273600 4555008 4555008 > > call usrsetvert > > done :: usrsetvert > > > > gs_setup: 211200 unique labels shared > > pairwise times (avg, min, max): 9.59221e-05 9.2321e-05 9.80701e-05 > > crystal router : 0.000574208 0.000573776 0.000574501 > > used all_to_all method: pairwise > > handle bytes (avg, min, max): 1.65554e+07 16555364 16555364 > > buffer bytes (avg, min, max): 864000 864000 864000 > > setupds time 9.2152E-01 seconds 4 6 4555008 73728 > > regenerate geometry data 1 > > NOTE: All elements deformed , param(59) ^=0 > > done :: regenerate geometry data 1 > > > > h1_mg_nx: 1 3 7 > > h1_mg_ny: 1 3 7 > > h1_mg_nz: 1 3 7 > > call usrsetvert > > done :: usrsetvert > > > > gs_setup: 8448 unique labels shared > > pairwise times (avg, min, max): 1.42743e-05 1.37607e-05 1.47085e-05 > > crystal router : 3.54692e-05 3.53276e-05 3.56395e-05 > > all reduce : 0.000145775 0.000145112 0.000146347 > > used all_to_all method: pairwise > > handle bytes (avg, min, max): 728420 728420 728420 > > buffer bytes (avg, min, max): 37632 37632 37632 > > setupds time 1.9277E-02 seconds 5 2 76032 73728 > > setvert3d: 4 1421568 2011392 1421568 1421568 > > call usrsetvert > > done :: usrsetvert > > > > gs_setup: 76032 unique labels shared > > pairwise times (avg, min, max): 4.74352e-05 4.61341e-05 4.8379e-05 > > crystal router : 0.000219904 0.000219596 0.000220055 > > all reduce : 0.00108293 0.00107907 0.00108614 > > used all_to_all method: pairwise > > handle bytes (avg, min, max): 5.91396e+06 5913956 5913956 > > buffer bytes (avg, min, max): 315648 315648 315648 > > setupds time 3.5849E-01 seconds 6 4 1421568 73728 > > setvert3d: 4 1421568 2011392 1421568 1421568 > > call usrsetvert > > done :: usrsetvert > > > > gs_setup: 76032 unique labels shared > > pairwise times (avg, min, max): 4.99966e-05 4.93097e-05 5.04928e-05 > > crystal router : 0.000220982 0.000220777 0.000221201 > > all reduce : 0.000975639 0.000969762 0.000980587 > > used all_to_all method: pairwise > > handle bytes (avg, min, max): 5.91396e+06 5913956 5913956 > > buffer bytes (avg, min, max): 315648 315648 315648 > > setupds time 3.5221E-01 seconds 7 4 1421568 73728 > > setvert3d: 6 4555008 9273600 4555008 4555008 > > call usrsetvert > > done :: usrsetvert > > > > gs_setup: 211200 unique labels shared > > pairwise times (avg, min, max): 9.7033e-05 9.53629e-05 9.89481e-05 > > crystal router : 0.000575673 0.000575274 0.00057601 > > used all_to_all method: pairwise > > handle bytes (avg, min, max): 1.65554e+07 16555364 16555364 > > buffer bytes (avg, min, max): 864000 864000 864000 > > setupds time 9.0969E-01 seconds 8 6 4555008 73728 > > setvert3d: 8 9476352 25401600 9476352 9476352 > > call usrsetvert > > done :: usrsetvert > > > > gs_setup: 413952 unique labels shared > > pairwise times (avg, min, max): 0.000145018 0.00014225 0.000147666 > > crystal router : 0.00127508 0.00127457 0.00127577 > > used all_to_all method: pairwise > > handle bytes (avg, min, max): 3.26526e+07 32652644 32652644 > > buffer bytes (avg, min, max): 1.68269e+06 1682688 1682688 > > setupds time 1.9358E+00 seconds 9 8 9476352 73728 > > setvert3d: 10 16185600 53934336 16185600 16185600 > > call usrsetvert > > done :: usrsetvert > > > > gs_setup: 684288 unique labels shared > > pairwise times (avg, min, max): 0.000185176 0.000182058 0.000188558 > > crystal router : 0.00236343 0.00236093 0.00236685 > > used all_to_all method: pairwise > > handle bytes (avg, min, max): 5.42058e+07 54205796 54205796 > > buffer bytes (avg, min, max): 2.77171e+06 2771712 2771712 > > setupds time 3.2958E+00 seconds 10 10 16185600 73728 > > setup h1 coarse grid, nx_crs= 2 > > call usrsetvert > > done :: usrsetvert > > > > gs_setup: 8448 unique labels shared > > pairwise times (avg, min, max): 1.58059e-05 1.48741e-05 1.6321e-05 > > crystal router : 3.54276e-05 3.51642e-05 3.56729e-05 > > all reduce : 0.000144706 0.000143665 0.00014533 > > used all_to_all method: pairwise > > handle bytes (avg, min, max): 728420 728420 728420 > > buffer bytes (avg, min, max): 37632 37632 37632 > > gs_setup: 8448 unique labels shared > > pairwise times (avg, min, max): 1.56632e-05 1.53686e-05 1.61476e-05 > > crystal router : 1.74988e-05 1.74323e-05 1.75631e-05 > > all reduce : 0.000148094 0.00014731 0.000148594 > > used all_to_all method: pairwise > > handle bytes (avg, min, max): 368228 368228 368228 > > buffer bytes (avg, min, max): 17664 17664 17664 > > AMG version 2.01 > > AMG: 8 levels > > AMG Chebyshev smoother data: > > AMG level 1: 3 iterations with rho = 0.79256 > > AMG level 2: 2 iterations with rho = 0.668297 > > AMG level 3: 2 iterations with rho = 0.481307 > > AMG level 4: 2 iterations with rho = 0.409707 > > AMG level 5: 2 iterations with rho = 0.458605 > > AMG level 6: 3 iterations with rho = 0.696293 > > AMG level 7: 2 iterations with rho = 0.666743 > > AMG: 1664 rows > > AMG: preading through rows ... done > > ERROR (proc 0000, src/amg.c:487): AMG: missing data for some rows > > > > an error occured: dying ... > > _______________________________________________ > > Nek5000-users mailing list > > Nek5000-users at lists.mcs.anl.gov > > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > From nek5000-users at lists.mcs.anl.gov Thu Jan 25 02:05:25 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Thu, 25 Jan 2018 09:05:25 +0100 Subject: [Nek5000-users] turbChannel compiling issue after adding more elements Message-ID: Typically this is not needed. I guess you problem is related to some parameters in SIZE: - set lelg to the total number of elements of your mesh - set lpmin to a reasonable (small) value -----Original message----- > From:nek5000-users at lists.mcs.anl.gov > Sent: Wednesday 24th January 2018 23:24 > To: nek5000-users at lists.mcs.anl.gov > Subject: Re: [Nek5000-users] turbChannel compiling issue after adding more elements > > Hi Ming, > > This usually happens to me when the resultant executable requires more memory allocation than available. If you haven't already, you can add > > -mcmodel=medium > > to the FFLAGS variable in makenek. This tells the compiler that it can create an executable that requires more than 2 GB of memory. Otherwise, if you already have that in there, you might be running into the limit of available physical memory of your system. > > Sincerely, > Kento > > > On Jan 24, 2018, at 15:07, nek5000-users at lists.mcs.anl.gov wrote: > > > > Dear Nek team, > > > > I ran into an odd issue when compiling the file after adding more elements. Number of elements have been increased to 48(x)*32(y)*48(z) from the default 16(x)*12(y)*8(z). Everything went very smooth (genbox and genmap both worked well) till the last step in ?makenek? when it started to generate .ffile; error occurred and it says: > > > > obj/turbChannel.o: In function `uservp_': > > turbChannel.f:(.text+0x17): relocation truncated to fit: R_X86_64_32S against symbol `hcglb_' defined in COMMON section in obj/turbChannel.o > > turbChannel.f:(.text+0x30): relocation truncated to fit: R_X86_64_PC32 against symbol `nekuse_' defined in COMMON section in obj/turbChannel.o > > turbChannel.f:(.text+0x3c): relocation truncated to fit: R_X86_64_32S against symbol `cdsmag_' defined in COMMON section in obj/turbChannel.o > > turbChannel.f:(.text+0x43): relocation truncated to fit: R_X86_64_PC32 against symbol `nekuse_' defined in COMMON section in obj/turbChannel.o > > obj/turbChannel.o: In function `userf_': > > turbChannel.f:(.text+0x56): relocation truncated to fit: R_X86_64_PC32 against symbol `cforce_' defined in COMMON section in obj/turbChannel.o > > turbChannel.f:(.text+0x5d): relocation truncated to fit: R_X86_64_PC32 against symbol `nekuse_' defined in COMMON section in obj/turbChannel.o > > turbChannel.f:(.text+0x64): relocation truncated to fit: R_X86_64_PC32 against symbol `nekuse_' defined in COMMON section in obj/turbChannel.o > > turbChannel.f:(.text+0x6b): relocation truncated to fit: R_X86_64_PC32 against symbol `nekuse_' defined in COMMON section in obj/turbChannel.o > > obj/turbChannel.o: In function `userq_': > > turbChannel.f:(.text+0x73): relocation truncated to fit: R_X86_64_PC32 against symbol `nekuse_' defined in COMMON section in obj/turbChannel.o > > obj/turbChannel.o: In function `userchk_': > > turbChannel.f:(.text+0x93): relocation truncated to fit: R_X86_64_PC32 against symbol `dimn_' defined in COMMON section in obj/turbChannel.o > > turbChannel.f:(.text+0x9b): additional relocation overflows omitted from the output > > make: *** [makefile:120: nek5000] Error 1 > > > > Such error did not occur when running the default mesh settings. Has anyone seen this before? Any suggestions? > > > > Thanks a lot for the help! > > > > Regards, > > > > Ming > > _______________________________________________ > > Nek5000-users mailing list > > Nek5000-users at lists.mcs.anl.gov > > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > From nek5000-users at lists.mcs.anl.gov Thu Jan 25 11:04:30 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Thu, 25 Jan 2018 17:04:30 +0000 Subject: [Nek5000-users] turbChannel compiling issue after adding more elements Message-ID: Hello, Thank you all for your suggestions. However they did not really work either. The current work on the turbulent channel is in fact based on the original turbChannel in the example. The current lelg number is the actual number of elements (73728) I used. I also tried to increase the lelg a bit to 73750, which did not make any difference. I decreased lpmin from 4 to 2 and unfortunately this did not work either. I wonder if there is any actual limitation to the number of elements that shall be used provided the physical dimentions defined in the code (2 pi delta * pi delta * 2 delta). Thank you all for your time and suggestions! Regards, Ming -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Thu Jan 25 11:20:36 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Thu, 25 Jan 2018 18:20:36 +0100 Subject: [Nek5000-users] turbChannel compiling issue after adding more elements In-Reply-To: References: Message-ID: You need a way larger lpmin for 73728 elements say 128! On 25 Jan 2018, at 18:05, "nek5000-users at lists.mcs.anl.gov " > wrote: Hello, ? Thank you all for your suggestions. However they did not really work either. The current work on the turbulent channel is in fact based on the original turbChannel in the example. The current lelg number is the actual number of elements (73728) I used. I also tried to increase the lelg a bit to 73750, which did not make any difference. I decreased lpmin from 4 to 2 and unfortunately this did not work either. I wonder if there is any actual limitation to the number of elements that shall be used provided the physical dimentions defined in the code (2 pi delta * pi delta * 2 delta). ? Thank you all for your time and suggestions! ? Regards, ? Ming _______________________________________________ Nek5000-users mailing list Nek5000-users at lists.mcs.anl.gov https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Thu Jan 25 13:02:35 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Thu, 25 Jan 2018 20:02:35 +0100 Subject: [Nek5000-users] turbChannel compiling issue after adding more elements Message-ID: The local problem size (defined by the local number of elements) is important when it comes to time to solution and memory consumption. Typically the 2GB limit is reached for lx1=8 and 500-1000 elements. Yes, this limit can be relaxed by e.g. -mcmodel=medium but this is not needed. The 2GB limit is not a real limitation as in almost all production runs the number of elements per MPI rank is way lower (reasonable time to solution). In your case you compiled Nek5000 for a local problem size of lelg/lpmin = 36864 elements. This is a pretty huge number! No way this fits into the 2GB memory limit. Moreoever, your computation would take forever if you would run Nek5000 with just lpmin MPI ranks. Hope this helps, Stefan -----Original message----- > From:nek5000-users at lists.mcs.anl.gov > Sent: Thursday 25th January 2018 18:21 > To: nek5000-users at lists.mcs.anl.gov > Subject: Re: [Nek5000-users] turbChannel compiling issue after adding more elements > > You need a way larger lpmin for 73728 elements say 128! > > On 25 Jan 2018, at 18:05, "nek5000-users at lists.mcs.anl.gov " > wrote: > > Hello, > Thank you all for your suggestions. However they did not really work either. The current work on the turbulent channel is in fact based on the original turbChannel in the example. The current > lelg number is the actual number of elements (73728) I used. I also tried to increase the > lelg a bit to 73750, which did not make any difference. I decreased lpmin from 4 to 2 and unfortunately this did not work either. I wonder if there is any actual limitation to the number of elements that shall be used provided the physical dimentions > defined in the code (2 pi delta * pi delta * 2 delta). > Thank you all for your time and suggestions! > Regards, > Ming > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users From nek5000-users at lists.mcs.anl.gov Fri Jan 26 05:19:49 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Fri, 26 Jan 2018 11:19:49 +0000 Subject: [Nek5000-users] auto_averager(rm2 files) Message-ID: Hi Nek, Is there anyone know after using auto_averager(rm2 files) which variables are returned as mean(vx*vy) mean(vx*vz), and mean(vy*vz)? Kind regards, Jian -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Fri Jan 26 13:08:04 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Fri, 26 Jan 2018 13:08:04 -0600 Subject: [Nek5000-users] Coupling between velocity and temperature fields Message-ID: Hi Neks I i`m trying to add heat transfer to an isothermal DNS case I have been working on. After setting the boundary conditions types in usrdat2() and the initial and boundary values in usrbc() and usric() I turned set: T IFFLOW T IFTRAN T T IFADVC (one entry per field) T IFHEAT T IFCHAR and T COORDINATES T VELOCITY T PRESSURE T TEMPERATURE F TEMPERATURE GRADIENT The simulation is restarted from a previous field file and the velocity and pressure fields are loaded as restart options. When the simulation runs, the temperature fields seems to be diffusing through a stationary medium, even though my velocity field is developed. Are there any switches or parameters that i might have overlooked? Regards -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Mon Jan 29 02:43:31 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 29 Jan 2018 11:43:31 +0300 Subject: [Nek5000-users] =?utf-8?q?Restart_statistics_from_f00*?= Message-ID: Hi, Neks! I wonder if there is any way to restart the statistics from my f000* files? Don't mean base flow f000*, I'm talking about f000* from my outpost in .usr file (ex. st1_pipe0.f00001), where I store my arrays for different correlations, etc. I've read in this mailing list about load_fld subroutine, but it is still not clear for me, could I use it for my purpose??I will be glad to hear your options and comments. Best regards, Markus -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Mon Jan 29 02:51:52 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 29 Jan 2018 09:51:52 +0100 Subject: [Nek5000-users] Restart statistics from f00* In-Reply-To: References: Message-ID: Hi, just to understand well, you could like to compute statistics based on stored fields? Philipp On 2018-01-29 09:43, nek5000-users at lists.mcs.anl.gov wrote: > Hi, Neks! > > I wonder if there is any way to restart the statistics from my f000* > files? Don't mean base flow f000*, I'm talking about f000* from my > outpost in .usr file (ex. st1_pipe0.f00001), where I store my arrays for > different correlations, etc. > > I've read in this mailing list about load_fld subroutine, but it is > still not clear for me, could I use it for my purpose??I will be glad to > hear your options and comments. > > Best regards, > Markus > > > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > From nek5000-users at lists.mcs.anl.gov Mon Jan 29 02:58:45 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 29 Jan 2018 11:58:45 +0300 Subject: [Nek5000-users] =?utf-8?q?Restart_statistics_from_f00*?= In-Reply-To: References: Message-ID: For example, I have an array for production (energy budget) and it is stored in my f000-file. After restart I want to continue averaging of my array, so that at the first step I want production(i,j,k,e) = loaded value from st1_pipe0.f00xxx.? Markus >???????????, 29 ?????? 2018, 15:52 +07:00 ?? nek5000-users at lists.mcs.anl.gov: > >Hi, >just to understand well, you could like to compute statistics based on >stored fields? > >Philipp > >On 2018-01-29 09:43, nek5000-users at lists.mcs.anl.gov wrote: >> Hi, Neks! >> >> I wonder if there is any way to restart the statistics from my f000* >> files? Don't mean base flow f000*, I'm talking about f000* from my >> outpost in .usr file (ex. st1_pipe0.f00001), where I store my arrays for >> different correlations, etc. >> >> I've read in this mailing list about load_fld subroutine, but it is >> still not clear for me, could I use it for my purpose??I will be glad to >> hear your options and comments. >> >> Best regards, >> Markus >> >> >> _______________________________________________ >> Nek5000-users mailing list >> Nek5000-users at lists.mcs.anl.gov >> https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users >> >_______________________________________________ >Nek5000-users mailing list >Nek5000-users at lists.mcs.anl.gov >https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users -- ? ?????????, ???????? ?????????, ?? ?? ??? -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Mon Jan 29 03:05:27 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 29 Jan 2018 10:05:27 +0100 Subject: [Nek5000-users] Restart statistics from f00* In-Reply-To: References: Message-ID: ah, ok. We typically store each "statistics" file separately at first, and then we have a code that afterwards averages all of those files, with proper weights related to the averaging time. This is done by reading in each of these statistic files after the run. The main reason to doing it like this is to make sure that one can 1) assess convergence 2) more resilience regarding errors (both human and computer). Philipp On 2018-01-29 09:58, nek5000-users at lists.mcs.anl.gov wrote: > For example, I have an array for production (energy budget) and it is > stored in my f000-file. After restart I want to continue averaging of my > array, so that at the first step I want production(i,j,k,e) = loaded > value from st1_pipe0.f00xxx. > > Markus > > ???????????, 29 ?????? 2018, 15:52 +07:00 ?? > nek5000-users at lists.mcs.anl.gov: > > Hi, > just to understand well, you could like to compute statistics based on > stored fields? > > Philipp > > On 2018-01-29 09:43, nek5000-users at lists.mcs.anl.gov > wrote: > > Hi, Neks! > > > > I wonder if there is any way to restart the statistics from my f000* > > files? Don't mean base flow f000*, I'm talking about f000* from my > > outpost in .usr file (ex. st1_pipe0.f00001), where I store my > arrays for > > different correlations, etc. > > > > I've read in this mailing list about load_fld subroutine, but it is > > still not clear for me, could I use it for my purpose??I will be > glad to > > hear your options and comments. > > > > Best regards, > > Markus > > > > > > _______________________________________________ > > Nek5000-users mailing list > > Nek5000-users at lists.mcs.anl.gov > > > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > > > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > > > > -- > ? ?????????, > > ???????? ?????????, ?? ?? ??? > > > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users > From nek5000-users at lists.mcs.anl.gov Mon Jan 29 05:55:26 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 29 Jan 2018 12:55:26 +0100 Subject: [Nek5000-users] 3D v/s. 2D computation Message-ID: Dear All, I am carrying out 3D simulations using NEK5000 in a hexahedral domain. Symmetry boundary conditions have been imposed on the side wall and stress free conditions are prescribed on the top and bottom boundary. At the inlet and outlet, Dirichlet and stress free conditions are used, respectively. I observe that the flow on the symmetry plane is different from that obtained via 2D simulation. Is this a numerical artifact (increased diffusion because of 3D mesh) or is it physical? If I increase the resolution of the mesh in third dimension, do I expect to get the 2D simulation results on the symmetry plane? Any input will be appreciated. Many thanks, NN. From nek5000-users at lists.mcs.anl.gov Mon Jan 29 09:46:20 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 29 Jan 2018 15:46:20 +0000 Subject: [Nek5000-users] Nek Developer/User Meeting, April 17-18, 2018, Tampa, Florida In-Reply-To: References: Message-ID: Dear Neks, We are pleased to announce that the 6th Nek5000 User/Developer meeting will be held in Tampa, Florida, at the Renaissance Tampa International Plaza Hotel on April 17 (Tuesday) and April 18 (Wednesday) 2018. This meeting is being organized by the Center for Compressible Multiphase Flow (CCMT) at the University of Florida and will bring together a group of experts in high-order numerical methods, high-performance computing, and a wide spectrum of application areas in physics and fluid/thermal sciences to discuss new developments and uses of the open-source solvers, Nek5000, NekCEM, and CMT-nek. We expect that there will be several invited speakers at the meeting who made significant contributions to the theory and development of high-order methods, as well as some of the principal user/developers who have pushed these methods to the limit in important application areas on the world's fastest computers. The presentations will feature our standard User/Developer Meeting format, with 15-minute talks by each participant along with a handful of more extended presentations. The meeting is not limited to past users and developers only. We welcome potential new users from the national laboratories, universities, and industry who are interested in knowing more about Nek5000 family of codes. This year, there will be a meeting registration fee to cover coffee breaks, lunch on both days, and well as dinner on Tuesday, 4/17. The registration site is here: http://reg.conferences.dce.ufl.edu/SSP/1400066876 Hotel and registration deadlines will be posted shortly along with abstract submission information, but we ask that you please register early so that we may estimate the attendance. Also, please help us to connect with existing Nek5000 users and potential users of the new capabilities. We look forward to seeing you in April! Sincerely, The Nek development team. -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Tue Jan 30 11:24:43 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Tue, 30 Jan 2018 22:54:43 +0530 Subject: [Nek5000-users] 'Divergence' using low-Mach number solver Message-ID: Hello everyone, I'm trying to use low Mach number solver to simulate flow entering a domain at a stipulated Reynolds number. The boundary conditions are specified in the user file. When Im trying to run the case, it shows 'DIVERGENCE' as shown in the image attached with this email. The files associated with the simulation are also attached. Thanks for the help in advance. -- Nitish Kovalam Aerospace Engineering Indian Institute of Space Science and Technology -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: vd.ma2 Type: application/octet-stream Size: 24136 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: vd.par Type: application/octet-stream Size: 452 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: vd.re2 Type: application/octet-stream Size: 106988 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: vd.usr Type: application/octet-stream Size: 4826 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: error.png Type: image/png Size: 77665 bytes Desc: not available URL: From nek5000-users at lists.mcs.anl.gov Wed Jan 31 07:09:30 2018 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Wed, 31 Jan 2018 13:09:30 +0000 Subject: [Nek5000-users] 'Divergence' using low-Mach number solver In-Reply-To: References: Message-ID: Hi, I quickly looked at your *.usr file and you use variable properties as expected for low Mach flow, but you do not seem to make the distinction between velocity equation and heat equation. I believe you have to use the same syntax as in usrbc where you test the field index and set the property. Marco On Jan 30, 2018, at 12:24 PM, nek5000-users at lists.mcs.anl.gov wrote: -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: vd.par Type: application/octet-stream Size: 486 bytes Desc: vd.par URL: -------------- next part -------------- An HTML attachment was scrubbed... URL: