Skip to content
Snippets Groups Projects
Select Git revision
  • 93d2637bbd3d2bcfdf54418e4404c6a5d65ba36a
  • 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
  • Lambda2.h 714 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 _LAMBDA2_H_
    #define _LAMBDA2_H_
    
    #include "Plugin.h"
    
    extern "C" {
    GMSH_Plugin *GMSH_RegisterLambda2Plugin();
    }
    
    class GMSH_Lambda2Plugin : public GMSH_PostPlugin {
    public:
      GMSH_Lambda2Plugin() {}
      std::string getName() const { return "Lambda2"; }
      std::string getShortHelp() const { return "Detect vortices"; }
      std::string getHelp() const;
      std::string getAuthor() const { return "E. Marchandise"; }
      int getNbOptions() const;
      StringXNumber *getOption(int iopt);
      PView *execute(PView *);
    };
    
    #endif