Skip to content
Snippets Groups Projects
  1. Dec 20, 2024
    • Andrew Heather's avatar
      TUT: motorBike - added example for graphFunctionObject · c926f146
      Andrew Heather authored and Kutalmış Berçin's avatar Kutalmış Berçin committed
      c926f146
    • Andrew Heather's avatar
      ENH: Added new graphFunctionObject function object · 82e471e0
      Andrew Heather authored and Kutalmış Berçin's avatar Kutalmış Berçin committed
      Accumulates function object result values and renders into a graph in SVG format
      
      Minimal example by using system/controlDict.functions to plot the residuals from
      the solverInfo function Object:
      
          residualGraph
          {
              type            graphFunctionObject;
              libs            (utilityFunctionObjects);
              writeControl    writeTime;
      
              logScaleX       no;
              logScaleY       yes;
      
              xlabel          "Iteration";
              ylabel          "log10(Initial residual)";
      
              functions
              {
                  line1
                  {
                      object      solverInfo1;
                      entry       Ux_initial;
                  }
                  line2
                  {
                      object      solverInfo1;
                      entry       Uy_initial;
                  }
                  line3
                  {
                      object      solverInfo1;
                      entry       Uz_initial;
                  }
                  line4
                  {
                      object      solverInfo1;
                      entry       p_initial;
                  }
              }
          }
      82e471e0
  2. Dec 19, 2024
  3. Dec 18, 2024
  4. Dec 17, 2024
  5. Dec 16, 2024
  6. Dec 15, 2024
  7. Dec 14, 2024
  8. Dec 12, 2024