Main Content

createpde

Description

example

structuralmodel = createpde("structural",StructuralAnalysisType) returns a structural analysis model for the specified analysis type. This model lets you solve small-strain linear elasticity problems.

example

thermalmodel = createpde("thermal",ThermalAnalysisType) returns a thermal analysis model for the specified analysis type.

example

emagmodel = createpde("electromagnetic",ElectromagneticAnalysisType) returns an electromagnetic analysis model for the specified analysis type.

example

model = createpde(N) returns a PDE model object for a system of N equations. A complete PDE model object contains a description of the problem you want to solve, including the geometry, mesh, and boundary conditions.

example

model = createpde returns a PDE model object for one equation (a scalar PDE). This syntax is equivalent to model = createpde(1) and model = createpde().

Examples

collapse all

Create a static structural model for solving a solid (3-D) problem.

staticStructural = createpde("structural","static-solid")
staticStructural = 
  StructuralModel with properties:

              AnalysisType: "static-solid"
                  Geometry: []
        MaterialProperties: []
                 BodyLoads: []
        BoundaryConditions: []
      ReferenceTemperature: []
    SuperelementInterfaces: []
                      Mesh: []
             SolverOptions: [1x1 pde.PDESolverOptions]

Create a transient structural model for solving a plane-stress (2-D) problem.

transientStructural = createpde("structural","transient-planestress")
transientStructural = 
  StructuralModel with properties:

              AnalysisType: "transient-planestress"
                  Geometry: []
        MaterialProperties: []
                 BodyLoads: []
        BoundaryConditions: []
             DampingModels: []
         InitialConditions: []
    SuperelementInterfaces: []
                      Mesh: []
             SolverOptions: [1x1 pde.PDESolverOptions]

Create a structural model for modal analysis of a plane-strain (2-D) problem.

modalStructural = createpde("structural","modal-planestrain")
modalStructural = 
  StructuralModel with properties:

              AnalysisType: "modal-planestrain"
                  Geometry: []
        MaterialProperties: []
        BoundaryConditions: []
    SuperelementInterfaces: []
                      Mesh: []
             SolverOptions: [1x1 pde.PDESolverOptions]

Create a structural model for frequency response analysis of an axisymmetric problem. An axisymmetric model simplifies a 3-D problem to a 2-D problem using symmetry around the axis of rotation.

frStructural = createpde("structural","frequency-axisymmetric")
frStructural = 
  StructuralModel with properties:

              AnalysisType: "frequency-axisymmetric"
                  Geometry: []
        MaterialProperties: []
                 BodyLoads: []
        BoundaryConditions: []
             DampingModels: []
    SuperelementInterfaces: []
                      Mesh: []
             SolverOptions: [1x1 pde.PDESolverOptions]

Create a model for steady-state thermal analysis.

thermalmodel = createpde("thermal","steadystate")
thermalmodel = 
  ThermalModel with properties:

               AnalysisType: "steadystate"
                   Geometry: []
         MaterialProperties: []
                HeatSources: []
    StefanBoltzmannConstant: []
         BoundaryConditions: []
          InitialConditions: []
                       Mesh: []
              SolverOptions: [1x1 pde.PDESolverOptions]

Create a model for transient thermal analysis.

thermalmodel = createpde("thermal","transient")
thermalmodel = 
  ThermalModel with properties:

               AnalysisType: "transient"
                   Geometry: []
         MaterialProperties: []
                HeatSources: []
    StefanBoltzmannConstant: []
         BoundaryConditions: []
          InitialConditions: []
                       Mesh: []
              SolverOptions: [1x1 pde.PDESolverOptions]

Create a model for modal thermal analysis.

thermalmodel = createpde("thermal","modal")
thermalmodel = 
  ThermalModel with properties:

               AnalysisType: "modal"
                   Geometry: []
         MaterialProperties: []
                HeatSources: []
    StefanBoltzmannConstant: []
         BoundaryConditions: []
          InitialConditions: []
                       Mesh: []
              SolverOptions: [1x1 pde.PDESolverOptions]

Create a transient thermal model for solving an axisymmetric problem. An axisymmetric model simplifies a 3-D problem to a 2-D problem using symmetry around the axis of rotation.

thermalmodel = createpde("thermal","transient-axisymmetric")
thermalmodel = 
  ThermalModel with properties:

               AnalysisType: "transient-axisymmetric"
                   Geometry: []
         MaterialProperties: []
                HeatSources: []
    StefanBoltzmannConstant: []
         BoundaryConditions: []
          InitialConditions: []
                       Mesh: []
              SolverOptions: [1x1 pde.PDESolverOptions]

Create a model for electrostatic analysis.

emagE = createpde("electromagnetic","electrostatic")
emagE = 
  ElectromagneticModel with properties:

          AnalysisType: "electrostatic"
              Geometry: []
    MaterialProperties: []
               Sources: []
    BoundaryConditions: []
    VacuumPermittivity: []
                  Mesh: []

Create an axisymmetric model for magnetostatic analysis. An axisymmetric model simplifies a 3-D problem to a 2-D problem using symmetry around the axis of rotation.

emagMA = createpde("electromagnetic","magnetostatic-axisymmetric")
emagMA = 
  ElectromagneticModel with properties:

          AnalysisType: "magnetostatic-axisymmetric"
              Geometry: []
    MaterialProperties: []
               Sources: []
    BoundaryConditions: []
    VacuumPermeability: []
                  Mesh: []

Create a model for harmonic analysis.

emagH = createpde("electromagnetic","harmonic")
emagH = 
  ElectromagneticModel with properties:

          AnalysisType: "harmonic"
              Geometry: []
    MaterialProperties: []
               Sources: []
    BoundaryConditions: []
    VacuumPermittivity: []
    VacuumPermeability: []
                  Mesh: []
             FieldType: "electric"

Create a model for DC conduction analysis.

emagDC = createpde("electromagnetic","conduction")
emagDC = 
  ElectromagneticModel with properties:

          AnalysisType: "conduction"
              Geometry: []
    MaterialProperties: []
    BoundaryConditions: []
                  Mesh: []

Create a model for a general linear or nonlinear single (scalar) PDE.

model = createpde
model = 
  PDEModel with properties:

           PDESystemSize: 1
         IsTimeDependent: 0
                Geometry: []
    EquationCoefficients: []
      BoundaryConditions: []
       InitialConditions: []
                    Mesh: []
           SolverOptions: [1x1 pde.PDESolverOptions]

Create a PDE model for a system of three equations.

model = createpde(3)
model = 
  PDEModel with properties:

           PDESystemSize: 3
         IsTimeDependent: 0
                Geometry: []
    EquationCoefficients: []
      BoundaryConditions: []
       InitialConditions: []
                    Mesh: []
           SolverOptions: [1x1 pde.PDESolverOptions]

Input Arguments

collapse all

Type of structural analysis, specified as one of the following values.

For static analysis, use these values:

  • "static-solid" — Creates a structural model for static analysis of a solid (3-D) problem.

  • "static-planestress" — Creates a structural model for static analysis of a plane-stress problem.

  • "static-planestrain" — Creates a structural model for static analysis of a plane-strain problem.

  • "static-axisymmetric" — Creates an axisymmetric (2-D) structural model for static analysis.

For transient analysis, use these values:

  • "transient-solid" — Creates a structural model for transient analysis of a solid (3-D) problem.

  • "transient-planestress" — Creates a structural model for transient analysis of a plane-stress problem.

  • "transient-planestrain" — Creates a structural model for transient analysis of a plane-strain problem.

  • "transient-axisymmetric" — Creates an axisymmetric (2-D) structural model for transient analysis.

For modal analysis, use these values:

  • "modal-solid" — Creates a structural model for modal analysis of a solid (3-D) problem.

  • "modal-planestress" — Creates a structural model for modal analysis of a plane-stress problem.

  • "modal-planestrain" — Creates a structural model for modal analysis of a plane-strain problem.

  • "modal-axisymmetric" — Creates an axisymmetric (2-D) structural model for modal analysis.

For frequency response analysis, use these values:

  • "frequency-solid" — Creates a structural model for frequency response analysis of a solid (3-D) problem.

  • "frequency-planestress" — Creates a structural model for frequency response analysis of a plane-stress problem.

  • "frequency-planestrain" — Creates a structural model for frequency response analysis of a plane-strain problem.

  • "frequency-axisymmetric" — Creates an axisymmetric (2-D) structural model for frequency response analysis.

For axisymmetric models, the toolbox assumes that the axis of rotation is the vertical axis passing through r = 0.

Example: model = createpde("structural","static-solid")

Data Types: char | string

Type of thermal analysis, specified as one of these values:

  • "steadystate" — Creates a steady-state thermal model. If you do not specify ThermalAnalysisType for a thermal model, createpde creates a steady-state model.

  • "steadystate-axisymmetric" — Creates an axisymmetric (2-D) thermal model for steady-state analysis.

  • "transient" — Creates a transient thermal model.

  • "transient-axisymmetric" — Creates an axisymmetric (2-D) thermal model for transient analysis.

  • "modal" — Creates a thermal model for modal analysis. Modal solutions enable you to speed up transient thermal analysis by using the reduced-order modeling (ROM) technique.

  • "modal-axisymmetric" creates an axisymmetric (2-D) thermal model for modal analysis.

For axisymmetric models, the toolbox assumes that the axis of rotation is the vertical axis passing through r = 0.

Example: model = createpde("thermal","transient")

Data Types: char | string

Type of electromagnetic analysis, specified as one of these values:

  • "electrostatic" — Creates a model for electrostatic analysis.

  • "magnetostatic" — Creates a model for magnetostatic analysis.

  • "harmonic" creates a model for harmonic electromagnetic analysis.

  • "conduction" — Creates a model for DC conduction analysis.

  • "electrostatic-axisymmetric" — Creates an axisymmetric (2-D) model for electrostatic analysis.

  • "magnetostatic-axisymmetric" — Creates an axisymmetric (2-D) model for magnetostatic analysis.

  • "harmonic-axisymmetric" — Creates an axisymmetric (2-D) model for harmonic electromagnetic analysis.

For axisymmetric models, the toolbox assumes that the axis of rotation is the vertical axis passing through r = 0.

Example: model = createpde("electromagnetic","electrostatic")

Data Types: char | string

Number of equations, specified as a positive integer. You do not need to specify N for a model where N = 1.

Example: model = createpde

Example: model = createpde(3);

Data Types: double

Output Arguments

collapse all

Structural model, returned as a StructuralModel object.

Example: structuralmodel = createpde("structural","static-solid")

Thermal model, returned as a ThermalModel object.

Example: thermalmodel = createpde("thermal","transient")

Electromagnetic model, returned as an ElectromagneticModel object.

Example: emagmodel = createpde("electromagnetic","magnetostatic")

PDE model, returned as a PDEModel object.

Example: model = createpde(2)

Version History

Introduced in R2015a

expand all