Esempio n. 1
0
    def __init__(self,*args,**kwargs):
        """Add extra config options specific to WRF."""
        Application.__init__(self, *args, **kwargs)

        self.build_in_installdir = True
        self.wrfsubdir = None
        self.comp_fam = None
Esempio n. 2
0
    def __init__(self,*args,**kwargs):
        """Specify building in install dir, initialize custom variables."""

        Application.__init__(self, *args, **kwargs)

        self.build_in_installdir = True

        self.fsldir = None
Esempio n. 3
0
    def __init__(self,*args,**kwargs):
        """Specify that OpenFOAM should be built in install dir."""

        Application.__init__(self, *args, **kwargs)

        self.build_in_installdir = True

        self.wm_compiler= None
        self.wm_mplib = None
        self.mpipath = None
        self.thrdpartydir = None
Esempio n. 4
0
    def __init__(self, *args, **kwargs):
        Application.__init__(self, *args, **kwargs)

        self.typearch = None

        # this should be set to False for old versions of GCC (e.g. v4.1)
        self.compilerISO_C_BINDING = True

        # compiler options that need to be set in Makefile
        self.debug = ''
        self.fpic = ''

        self.libsmm = ''
        self.modincpath = ''
        self.openmp = ''

        self.make_instructions = ''
Esempio n. 5
0
 def __init__(self, *args, **kwargs):
     Application.__init__(self, *args, **kwargs)
Esempio n. 6
0
 def __init__(self, *args, **kwargs):
     """Constructor, adds extra config options"""
     self.license = None
     Application.__init__(self, *args, **kwargs)