def __init__(self, name="elasticitylgdeformapp"):
    """
    Constructor.
    """
    ElasticityApp.__init__(self, name)

    return
Exemple #2
0
    def __init__(self, name="elasticitylgdeformapp"):
        """
    Constructor.
    """
        ElasticityApp.__init__(self, name)

        return
Exemple #3
0
    def __init__(self, name="elasticityexplicitapp"):
        """
    Constructor.
    """
        ElasticityApp.__init__(self, name)

        self.normViscosity = 0.1
        return
Exemple #4
0
  def __init__(self, name="elasticityexplicitapp"):
    """
    Constructor.
    """
    ElasticityApp.__init__(self, name)

    self.normViscosity = 0.1
    return
Exemple #5
0
  def _initData(self):

    ElasticityApp._initData(self)
    
    # Calculated values
    self.data.addScalar(vtype="PylithScalar", name="_dtStableExplicit",
                       value=self.dtStableExplicit,
                       format="%16.8e");
    return
Exemple #6
0
    def _initData(self):

        ElasticityApp._initData(self)

        # Calculated values
        self.data.addScalar(vtype="PylithScalar",
                            name="_dtStableExplicit",
                            value=self.dtStableExplicit,
                            format="%16.8e")
        return