From nek5000-users at lists.mcs.anl.gov Mon Jul 8 08:12:48 2013 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 8 Jul 2013 15:12:48 +0200 Subject: [Nek5000-users] Import VTK in Prenek from Gmsh Message-ID: Dear Aleks, Thank you. Importing 2D .VTK files now works. Regards, JP -------------- next part -------------- An HTML attachment was scrubbed... URL: From nek5000-users at lists.mcs.anl.gov Mon Jul 8 10:33:04 2013 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 8 Jul 2013 10:33:04 -0500 (CDT) Subject: [Nek5000-users] Import VTK in Prenek from Gmsh In-Reply-To: Message-ID: Great, JP, Thanks. Aleks ----- Original Message ----- From: nek5000-users at lists.mcs.anl.gov To: "nek5000-users" Sent: Monday, July 8, 2013 8:12:48 AM Subject: Re: [Nek5000-users] Import VTK in Prenek from Gmsh Dear Aleks, Thank you. Importing 2D .VTK files now works. Regards, JP _______________________________________________ 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 Jul 11 02:37:31 2013 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Thu, 11 Jul 2013 09:37:31 +0200 Subject: [Nek5000-users] compilation of latest nek version Message-ID: Hi There is small problem with compilation of current version of nekton without visit. I had to add preprocessing #ifdef VISIT around all in_situ subroutines in drive1.f to compile it. Regards Adam From nek5000-users at lists.mcs.anl.gov Thu Jul 11 06:42:16 2013 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Thu, 11 Jul 2013 06:42:16 -0500 (CDT) Subject: [Nek5000-users] compilation of latest nek version In-Reply-To: References: Message-ID: Hi Adam, Thanks very much for the note! I've just now updated the makefile.template - there was a small issue there. To maintain readability, we're pushing the IFDEF's into the codes in the 3rd-party directory, which means that we always link in a stub but that it does not look for the 3rd party libraries unless the flag is set. I think at the repo version should now compile fine. (At least it did so for me.) Best, Paul On Thu, 11 Jul 2013, nek5000-users at lists.mcs.anl.gov wrote: > Hi > > There is small problem with compilation of current version of nekton without > visit. I had to add preprocessing #ifdef VISIT around all in_situ subroutines > in drive1.f to compile it. > Regards > Adam > _______________________________________________ > 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 Jul 19 12:03:04 2013 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Fri, 19 Jul 2013 13:03:04 -0400 Subject: [Nek5000-users] Sorting temperature In-Reply-To: <5313C3E0D03CB044A289CAC54D804C120157D55BF790@BVMBX1.univ-lyon1.fr> References: <5313C3E0D03CB044A289CAC54D804C120157D55BF790@BVMBX1.univ-lyon1.fr> Message-ID: Hi Neks I would like to run Nek5000 in post-processing mode and do some sorting based on an scalar field (say temperature) in userchk. I was wondering if there is an easy way to do so! Any ideas? Regards, Hesam From nek5000-users at lists.mcs.anl.gov Mon Jul 22 12:45:19 2013 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 22 Jul 2013 13:45:19 -0400 Subject: [Nek5000-users] line integral: 1d average Message-ID: Hello Neks It is clear to me how to compute the volume and area integrals in Nek by reading the previous posts. However I could not find the proper implementation steps for line integral for doing 1d averages (i.e. extracting a 2d profile from a 3d field). In particular I would like to find the average along z-axis (yielding ua = _z, where ua( lx1, ly1, lelx*lely) if I am not mistaken). I would appreciate if you could help me on that and guide me to the right direction. Regards, Hesam From nek5000-users at lists.mcs.anl.gov Mon Jul 22 14:54:02 2013 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 22 Jul 2013 14:54:02 -0500 Subject: [Nek5000-users] line integral: 1d average In-Reply-To: References: Message-ID: Hi Hesam, The turbChannel example does a planar average, reducing the 3d data to a 1d profile. In the past, I wanted the same thing as you, and so slightly modified that code. I can find it for you if you'd like. Is your domain homogeneous in the z-direction? Justin On Mon, Jul 22, 2013 at 12:45 PM, wrote: > Hello Neks > > It is clear to me how to compute the volume and area integrals in Nek by > reading the previous posts. However I could not find the proper > implementation steps for line integral for doing 1d averages (i.e. > extracting a 2d profile from a 3d field). In particular I would like to find > the average along z-axis (yielding ua = _z, where ua( lx1, ly1, > lelx*lely) if I am not mistaken). > > I would appreciate if you could help me on that and guide me to the right > direction. > > Regards, > Hesam > > _______________________________________________ > 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 Jul 22 15:12:46 2013 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Mon, 22 Jul 2013 16:12:46 -0400 Subject: [Nek5000-users] line integral: 1d average In-Reply-To: References: Message-ID: Hi Justin Thanks for your reply. Yes I have equal grid spacing in the z-dir. I guess you are referring to planar_average_s and planar_average_r,.... so I would appreciate it if you could share your modified version with me; that would save me some time. Thanks Hesam On 13-07-22 03:54 PM, nek5000-users at lists.mcs.anl.gov wrote: > Hi Hesam, > > The turbChannel example does a planar average, reducing the 3d data to > a 1d profile. In the past, I wanted the same thing as you, and so > slightly modified that code. I can find it for you if you'd like. > > Is your domain homogeneous in the z-direction? > > Justin > > On Mon, Jul 22, 2013 at 12:45 PM, wrote: >> Hello Neks >> >> It is clear to me how to compute the volume and area integrals in Nek by >> reading the previous posts. However I could not find the proper >> implementation steps for line integral for doing 1d averages (i.e. >> extracting a 2d profile from a 3d field). In particular I would like to find >> the average along z-axis (yielding ua = _z, where ua( lx1, ly1, >> lelx*lely) if I am not mistaken). >> >> I would appreciate if you could help me on that and guide me to the right >> direction. >> >> Regards, >> Hesam >> >> _______________________________________________ >> 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 Jul 23 15:36:43 2013 From: nek5000-users at lists.mcs.anl.gov (nek5000-users at lists.mcs.anl.gov) Date: Tue, 23 Jul 2013 16:36:43 -0400 Subject: [Nek5000-users] Sorting temperature In-Reply-To: References: <5313C3E0D03CB044A289CAC54D804C120157D55BF790@BVMBX1.univ-lyon1.fr> Message-ID: Hi again, Any hopes we can do the sorting in Nek? How about visit? I would appreciate any feedback. Regards, Hesam On 13-07-19 01:03 PM, nek5000-users at lists.mcs.anl.gov wrote: > Hi Neks > > I would like to run Nek5000 in post-processing mode and do some > sorting based on an scalar field (say temperature) in userchk. I was > wondering if there is an easy way to do so! Any ideas? > > Regards, > Hesam > > _______________________________________________ > Nek5000-users mailing list > Nek5000-users at lists.mcs.anl.gov > https://lists.mcs.anl.gov/mailman/listinfo/nek5000-users >