Skip to content
Snippets Groups Projects
Select Git revision
  • 6359a4040230005c87ac84d0fccd76a683faedda
  • master default protected
  • clem_dev
  • clem_dev_corrected
  • kokkos
  • devel
  • bcast_debug
  • MC/high_order_geometry
  • MC/mpi_nonblocking
  • MC/multigpu
  • MC/lifting_oneshot
  • MC/physent
  • curls_marco
  • MC/gefpg_lua_binding
  • emdant/dg-cherry-pick-8f1f09f5
  • v0.3.0
  • v0.2.0
  • v0.1.0
18 results

maxwell_cpu.cpp

Blame
  • HarmonicToTime.h 737 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 _HARMONIC_TO_TIME_H_
    #define _HARMONIC_TO_TIME_H_
    
    #include "Plugin.h"
    
    extern "C" {
    GMSH_Plugin *GMSH_RegisterHarmonicToTimePlugin();
    }
    
    class GMSH_HarmonicToTimePlugin : public GMSH_PostPlugin {
    public:
      GMSH_HarmonicToTimePlugin() {}
      std::string getName() const { return "HarmonicToTime"; }
      std::string getShortHelp() const
      {
        return "Transform harmonic data into time domain data";
      }
      std::string getHelp() const;
      int getNbOptions() const;
      StringXNumber *getOption(int iopt);
      PView *execute(PView *);
    };
    
    #endif