<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in conv_plot.py</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2025</copyright>
    <generator>Java</generator><item>
        <title>25878d731ec1d76dfcb265836bbb0ff82e7138ef - Merge pull request #1365 from CEED/sjg/make-format-prep</title>
        <link>http://opengrok.kc2vjw.com:8080/history/libCEED/examples/fluids/conv_plot.py#25878d731ec1d76dfcb265836bbb0ff82e7138ef</link>
        <description>Merge pull request #1365 from CEED/sjg/make-format-prep

            List of files:
            /libCEED/examples/fluids/conv_plot.py</description>
        <pubDate>Fri, 06 Oct 2023 15:22:25 +0000</pubDate>
        <dc:creator>Sebastian Grimberg &lt;sebastiangrimb@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>5cd6c1fb67d52eb6a42b887bb79c183682dd86ca - Makefile updates for formatting</title>
        <link>http://opengrok.kc2vjw.com:8080/history/libCEED/examples/fluids/conv_plot.py#5cd6c1fb67d52eb6a42b887bb79c183682dd86ca</link>
        <description>Makefile updates for formatting

            List of files:
            /libCEED/examples/fluids/conv_plot.py</description>
        <pubDate>Wed, 04 Oct 2023 23:28:48 +0000</pubDate>
        <dc:creator>Sebastian Grimberg &lt;sjg@amazon.com&gt;</dc:creator>
    </item>
<item>
        <title>ce18bed930e8f3bfebcf709a18844aba97fe4630 - Merge pull request #858 from CEED/jeremy/dump-copy-stuff</title>
        <link>http://opengrok.kc2vjw.com:8080/history/libCEED/examples/fluids/conv_plot.py#ce18bed930e8f3bfebcf709a18844aba97fe4630</link>
        <description>Merge pull request #858 from CEED/jeremy/dump-copy-stuffStrip redundant/outdated license info duplication

            List of files:
            /libCEED/examples/fluids/conv_plot.py</description>
        <pubDate>Thu, 17 Mar 2022 18:35:22 +0000</pubDate>
        <dc:creator>Jeremy L Thompson &lt;jeremy@jeremylt.org&gt;</dc:creator>
    </item>
<item>
        <title>3d8e882215d238700cdceb37404f76ca7fa24eaa - minor - update copyright headers</title>
        <link>http://opengrok.kc2vjw.com:8080/history/libCEED/examples/fluids/conv_plot.py#3d8e882215d238700cdceb37404f76ca7fa24eaa</link>
        <description>minor - update copyright headers

            List of files:
            /libCEED/examples/fluids/conv_plot.py</description>
        <pubDate>Thu, 17 Mar 2022 15:41:22 +0000</pubDate>
        <dc:creator>Jeremy L Thompson &lt;jeremy@jeremylt.org&gt;</dc:creator>
    </item>
<item>
        <title>778419476db2fdf3952b1b9a5faed3f766f76223 - Fluids - Refactor and add GPU support (#754)</title>
        <link>http://opengrok.kc2vjw.com:8080/history/libCEED/examples/fluids/conv_plot.py#778419476db2fdf3952b1b9a5faed3f766f76223</link>
        <description>Fluids - Refactor and add GPU support (#754)* Initial commit for using PetscFunctionList in fluids example* WIP: debugging* Debug: initialize PetscFunctionList with NULL* allocate memory for context problem* freed allocated memory* WIP: fluids: split density current into new compilation unitI have dropped last changes before this commit so there might be somebugs* Fixed bugs after dropping the commit containing unnecessary changes* NS: dropped unused variable from User struct* WIP: factored out DMAddBoundary() for density_current* split advection and advection2d into separate compilation units as well* fluids: added *.o to make clean* removed bc from problemData* style* commented the error handlers and moved petsc options regarding the boundary conditions to each compilation unit* call bc functions inside SetUpDM()* Moved all bc related statements from SetUpDM() to each compilation unit* examples/fluids/advection.h: style* WIP: modified CeedQFunctionContexts* FFR: By creating a struct for DC context, one of the last test crushed so I had to reverse it. This should be investigated later.* style* examples/navierstokes: Use heap memory for ctxSetup* examples/fluids: WIP - reading arrays through cl options for DC is enabled by using double pointers but there is still a problem with unit conversions and also need to fix other structs* style* WIP: Trying to assign values to context data in each problem function* bug: there is a problem in pointer to struct* WIP: Everything seems to be working but it breaks and I haven&apos;t figured out the reason ...* fixed typo* comment out stuff that have been moved to densitycurrent.c* WIP: The first two regression test pass. There is a problem with stabilization.* style* Fluids: QFContext -&gt; Physics* WIP: passing StabilizationType to Physics (but PETSc is not happy and it diverges for SU and SUPG)* Initial commit for refactoring advection(2d)* WIP: Advection is set up except for wind_type* WIP: refactored advection2d; need to fix the BCs for translation and also passing implicit to advection correctly* WIP: pass wind_type to all functions correctly but there is still a problem with BCs in the case of translation (changes are not applied to advection yet)* Apply the same fixes for BCs in advection* Fluids - Refactor: Moved warnings to advection(2d)* Fluids - Refactor: remove dead code* Fluids - Refactor: Move *.h to /qfunctions and *.c to /src* style* Fluids - Refactor: drop the supg regression test for nowWe need to debug SU/SUPG for density_current. The test does not work.* Fluids - Refactor: Fixed the double-pointer issue* Fluids - Refactor: Assign ctxSetup-&gt;time = 0 inside each problem&apos;s *.c* Fluids - Refactor: make implicit a member of Physics* Fluids - Refactor: Add warning for the usage of explicit and supg* Some comments and naming* Merge main after v0.8 (#723)* Fluids - Five regression tests added for euler_vortex* Fluids - Drop some of the regression tests for now (Needs to get fixed)* Fluids - Moved all functions to their corresponding source files* Fluids - move problem source files to /problems* Fluids -  drop dead regression test reference files* Fluids - more consistent file names* Fluids - drop dead code and comments* Fluids - removed CreateVectorFromPetscVec() since it was only used once* Fluids - created AppCtx for cl option variables and moved cl options to a cloption.c* Fluids: change style of AppCtx* style* Fluids: /src -&gt; /utils* Created CreateDistributedDM() and some style* Fluids - create RegisterProblem()* style - minor* style - minor* Fluids - some more C style* Fluids - /utils -&gt; /src* Fluids - create VizRefineDM() for viz_refine* Fluids: some style and name change* Fluids - style* Fluids - remove the second ceed initialization* Fluids - Created CeedData and SetupLibCEED()* Fluids - create SetupContextForProblems()* Fluids - Assign structs after they are created* Fluids - style, minor* Fluids - created RegressionTests_NS* Fluids - created GetError_NS()* Fluids - created PrintOutput_NS()This processes bash output except for the problem summary which will beincluded after mem_type is managed properly.* Fluids - remove unused variables* Fluids - created TSSolve_NS() which creates, sets up, and solves ts* Fluids: Fixed a bug caused by merging#714* Fluids - style* Fluids - created SetupICsFromBinary() for case of -continue* Fluids - create SetBCsFromICs_NS()* Fluids - default degree had is 1 not 2* Fluids: clean-up* Fluids: style - minor* Fluids - drop redundant operation* Fluids: clean-up SetupLibCEED()* Fluids: style - minor* Fluids: WIP - C style* Fluids: style - minor* Fluids: move ceed vector creation to SetupLibCEED()* Fluids: WIP - clean-up CreateOperatorForDomain()* Fluids: major clean-up in CreateOperatorForDomain()* Fluids: style - minor* Fluids: drop VectorPlacePetscVec()* Fluids: move ICs_FixMultiplicity() to misc.c* Fluids: WIP - C style* Fluids: fix merge conflict after d63eecaab22a26d3072677a1b66c0cf77aa9009d* Fluids: drop unused function call DMLocalizeCoordinates()* Fluids: replace user requested memType with MemTypeP2C()* Fluids: C style* Fluids: Q-&gt;num_Q (Q (# qpts) and Q (global state vector) were confusing my fresh petsc config)* Fluids: WIP - add GPU vectors* Fluids: Fixed the memory leak caused by Physics struct* Fluids: style -minor* Fluids: no need for casting* Fluids: Fix mem leak (q0_ceed had to be destroyed at the end of navierstokes.c)* Fluids: Fixed all mem leaks* Fluids: Set VecType for dm_hierarchy* Fluids/doc: fix style* Fluids: fix missing VecRestoreArray()* Fluids: clean-up ComputeLumpedMassMatrix()* Fluids: Cleanup ICs_FixMultiplicity()* Fluids: WIP - cleanup setupts.c* Fluids: style - minor* Fluids: Create element coord ceed vector locally and drop it from CeedData* Fluids: fix some todos* Fluids: drop unused code for EULER BCs* Fluids: PetscMalloc1 -&gt; PetscCalloc1* Fluids - Define BCs for ADVECTION(2D) for all cases without having the user specify them and change the regressions accordinglyToDo: For some reason I can&apos;t create new regression tests for explicit scheme.* Fluids - Define problem-&gt;print_info() for each problem* Fluids: Shorten some problem specific command line variables &amp; style* Fluids - Cleanup BCs in the translation mode* Fluids - cleanup* Fluids - more cleanup in BCs* Fluids - Updated doc, README, and cleanup in the code and cl options* Fluids - add more regression tests* Fluids - Define tolerance for the convergence test* Fluids: include x_coord in CeedData* wip - gpuRevert &quot;Fluids: include x_coord in CeedData&quot;I had to revert this commit since it crashes DC* style* Fluids - remove unused variables* Fluids - fix unused function warnings* Fluids - fix the remaining warnings* Fluids - style* Fluids - add missing licence* Fluids - bring back contexts to the QFunction header files* Fluids - transfer QFunctions for boundary integral to their corresponding setupgeo(2d).h header files and add description for Setup2d* fluids - fix context data sizes* GPU - add helper function macro* ex - use consistent MPI info output* GPU - improve CEED_QFUNCTION_HELPER macro, more flexible* Fluids - turn on some gpu tests* Fluids - bring back element coordinate to CeedData* Fluids - cleanup* qfunction - clean up helper function macro* Fixed the remaining conflicts from #769 (helped-by: @rezgarshakeri)Co-authored-by: Jed Brown &lt;jed@jedbrown.org&gt;Co-authored-by: jeremylt &lt;thompson.jeremy.luke@gmail.com&gt;

            List of files:
            /libCEED/examples/fluids/conv_plot.py</description>
        <pubDate>Thu, 27 May 2021 22:37:45 +0000</pubDate>
        <dc:creator>Leila Ghaffari &lt;49916147+LeilaGhaffari@users.noreply.github.com&gt;</dc:creator>
    </item>
<item>
        <title>6bb9b12ca13f6e275c91fce27002f4b7ac40d3a7 - Merge branch &apos;euler-vortex-test&apos; (#601)</title>
        <link>http://opengrok.kc2vjw.com:8080/history/libCEED/examples/fluids/conv_plot.py#6bb9b12ca13f6e275c91fce27002f4b7ac40d3a7</link>
        <description>Merge branch &apos;euler-vortex-test&apos; (#601)* euler-vortex-test: (126 commits)  examples/fluids/conv_plot.py: clean-up  examples/fluids: Some clean-up in the post-processing files  examples/fluids: ETV - the convergence test comparison was failing since P_inlet is now hard-coded for each test and doesn&apos;t go through the scaling  examples/fluids: ETV - a better conditional statement for incoming T and P  examples/fluids: ETV - removed old cl options  examples/fluids: ETV - drop stabilization  examples/fluids: ETV - more clean-up  examples/fluids: ETV - removed unused variables  examples/fluids: ETV - removed the support for the forcing terms required for mms  ETV: some clean-up  ETV: ke -&gt; E_kinetic for consistency  examples/fluids: remove T_inlet and P_inlet cl options and hard code them for each case  examples/fluids: fix warning about the stab option usage  examples/fluids: fix broken advection(2d) problem  examples/fluids: removed vortex_strength from SetupContext  examples/fluids: remove unused context from SetUpDM()  examples/fluids: bring back missing VecView function call  examples/fluids: fix typo in comments  README: style  README: Added in/outflow BCs for ADVECTION  ...

            List of files:
            /libCEED/examples/fluids/conv_plot.py</description>
        <pubDate>Wed, 31 Mar 2021 22:16:32 +0000</pubDate>
        <dc:creator>Jed Brown &lt;jed@jedbrown.org&gt;</dc:creator>
    </item>
<item>
        <title>888e399f214cd092de5ef32c5bea4db13743945a - examples/fluids/conv_plot.py: clean-up</title>
        <link>http://opengrok.kc2vjw.com:8080/history/libCEED/examples/fluids/conv_plot.py#888e399f214cd092de5ef32c5bea4db13743945a</link>
        <description>examples/fluids/conv_plot.py: clean-up

            List of files:
            /libCEED/examples/fluids/conv_plot.py</description>
        <pubDate>Wed, 10 Mar 2021 17:21:48 +0000</pubDate>
        <dc:creator>Leila Ghaffari &lt;Leila.Ghaffari@colorado.edu&gt;</dc:creator>
    </item>
<item>
        <title>19c461940713c27deb7bdc6400a2fadc4b78b6be - examples/fluids: Some clean-up in the post-processing files</title>
        <link>http://opengrok.kc2vjw.com:8080/history/libCEED/examples/fluids/conv_plot.py#19c461940713c27deb7bdc6400a2fadc4b78b6be</link>
        <description>examples/fluids: Some clean-up in the post-processing filesOnly report the failure of the convergence test if it fails.

            List of files:
            /libCEED/examples/fluids/conv_plot.py</description>
        <pubDate>Wed, 10 Feb 2021 21:44:58 +0000</pubDate>
        <dc:creator>Leila Ghaffari &lt;Leila.Ghaffari@colorado.edu&gt;</dc:creator>
    </item>
<item>
        <title>1f814bfddc5363a01c33fc7166b9ab66f1decae9 - Revert &quot;Temporary change for convergence test and debugging&quot;</title>
        <link>http://opengrok.kc2vjw.com:8080/history/libCEED/examples/fluids/conv_plot.py#1f814bfddc5363a01c33fc7166b9ab66f1decae9</link>
        <description>Revert &quot;Temporary change for convergence test and debugging&quot;This reverts commit d326fa595e8c6b2326042f88f316f0d31095b876.

            List of files:
            /libCEED/examples/fluids/conv_plot.py</description>
        <pubDate>Thu, 28 Jan 2021 18:52:49 +0000</pubDate>
        <dc:creator>Leila Ghaffari &lt;Leila.Ghaffari@colorado.edu&gt;</dc:creator>
    </item>
<item>
        <title>085d984f4e83b737780d62e6c6db8b777194f78f - Temporary change for convergence test and debugging</title>
        <link>http://opengrok.kc2vjw.com:8080/history/libCEED/examples/fluids/conv_plot.py#085d984f4e83b737780d62e6c6db8b777194f78f</link>
        <description>Temporary change for convergence test and debuggingremove printing the arguments

            List of files:
            /libCEED/examples/fluids/conv_plot.py</description>
        <pubDate>Thu, 28 Jan 2021 04:53:41 +0000</pubDate>
        <dc:creator>Leila Ghaffari &lt;Leila.Ghaffari@colorado.edu&gt;</dc:creator>
    </item>
<item>
        <title>4b32fe0cfd1ca0b1372a370a2254a43aa4339e83 - examples/fluids: Take the CSV file from the user for the plotting</title>
        <link>http://opengrok.kc2vjw.com:8080/history/libCEED/examples/fluids/conv_plot.py#4b32fe0cfd1ca0b1372a370a2254a43aa4339e83</link>
        <description>examples/fluids: Take the CSV file from the user for the plotting

            List of files:
            /libCEED/examples/fluids/conv_plot.py</description>
        <pubDate>Tue, 26 Jan 2021 16:37:35 +0000</pubDate>
        <dc:creator>Leila Ghaffari &lt;Leila.Ghaffari@colorado.edu&gt;</dc:creator>
    </item>
<item>
        <title>50c0860b456f257d8ea93eba8bdf6b2d0df37682 - examples/fluids: Renamed files related to the convergence study so that they all start with conv_</title>
        <link>http://opengrok.kc2vjw.com:8080/history/libCEED/examples/fluids/conv_plot.py#50c0860b456f257d8ea93eba8bdf6b2d0df37682</link>
        <description>examples/fluids: Renamed files related to the convergence study so that they all start with conv_

            List of files:
            /libCEED/examples/fluids/conv_plot.py</description>
        <pubDate>Tue, 26 Jan 2021 15:21:22 +0000</pubDate>
        <dc:creator>Leila Ghaffari &lt;Leila.Ghaffari@colorado.edu&gt;</dc:creator>
    </item>
</channel>
</rss>
