Skip to content
Snippets Groups Projects
Select Git revision
  • f86a5f53fb712002ca5ac7d96fda3aa4fe4b9a80
  • master default protected
  • dev_mm_pf
  • cyrielle
  • vinayak
  • ujwal_21_08_2024
  • dev_mm_torchSCRU
  • debug_mm_pf
  • newStructureNonLocal
  • Mohamed_stochasticDMN
  • dev_mm_bench
  • stochdmn
  • revert-351ff7aa
  • ujwal_29April2024
  • dev_mm_ann
  • mohamed_vevp
  • ujwal_debug
  • ujwal_2ndApril2024
  • ujwal_October_2023
  • gabriel
  • SFEM
  • v4.0
  • v3.2.3_multiplePhase
  • v3.5
  • v3.3.2
  • v3.4
  • v3.3
  • ver3.2
  • verJulienWork
  • ver3.1
  • ver2
  • ver1.1.2
  • ver1.1.1
  • ver1.1
34 results

cube.py

Blame
  • Summation.h 831 B
    // Gmsh - Copyright (C) 1997-2019 C. Geuzaine, J.-F. Remacle
    //
    // See the LICENSE.txt file for license information. Please report all
    // issues on https://gitlab.onelab.info/gmsh/gmsh/issues.
    
    #ifndef SUMMATION_H
    #define SUMMATION_H
    
    #include "Plugin.h"
    
    extern "C" {
    GMSH_Plugin *GMSH_RegisterSummationPlugin();
    }
    
    class GMSH_SummationPlugin : public GMSH_PostPlugin {
    public:
      GMSH_SummationPlugin() {}
      std::string getName() const { return "Summation"; }
      std::string getShortHelp() const
      {
        return "Create a view by summing different views (TimeStep per TimeStep "
               "and Component by Component)";
      }
      std::string getHelp() const;
      int getNbOptions() const;
      StringXNumber *getOption(int iopt);
      int getNbOptionsStr() const;
      StringXString *getOptionStr(int iopt);
      PView *execute(PView *);
    };
    
    #endif