Main Content

ubendMitered

Create U-bend with mitered edges on X-Y plane

Since R2021b

Description

Use the ubendMitered object to create a U-bend with mitered edges on the X-Y plane.

Creation

Description

example

bend = ubendMitered creates a U-bend with mitered edges on the X-Y plane.

bend = ubendMitered(Name=Value) sets Properties using one or more name-value arguments. For example, ubendMitered(ReferencePoint=[1 1]) creates a mitered U-bend at the reference point [1 1]. Properties not specified retain their default values.

Properties

expand all

Name of the mitered U-bend, specified as a character vector or a string scalar.

Example: bend = ubendMitered(Name="ubendmitered1")

Data Types: char | string

Reference point of the mitered U-bend in Cartesian coordinates, specified as a two-element vector.

Example: bend = ubendMitered(ReferencePoint=[1 2])

Data Types: double

Length of the mitered U-bend in meters, specified as a three-element vector of positive elements.

Example: bend = ubendMitered(Length=[0.0250 0.0030 0.0250])

Data Types: double

Width of the mitered U-bend in meters, specified as a three-element vector of positive elements.

Example: bend = ubendMitered(Width=[0.0060 0.0060 0.0060])

Data Types: double

Length of the miter diagonal in meters, specified as a positive scalar.

Example: bend = ubendMitered(MiterDiagonal=0.0060)

Data Types: double

Object Functions

addBoolean unite operation on two RF PCB shapes
andShape1 & Shape2 for RF PCB shapes
areaCalculate area of RF PCB shape in square meters
intersectBoolean intersection operation on two RF PCB shapes
meshChange and view mesh properties of metal or dielectric in PCB component
minusShape1 - Shape2 for RF PCB shapes
plusShape1 + Shape2 for RF PCB shapes
rotateRotate RF PCB shape about defined axis
rotateXRotate RF PCB shape about x-axis
rotateYRotate RF PCB shape about y-axis and angle
rotateZRotate RF PCB shape about z-axis
subtractBoolean subtraction operation on two RF PCB shapes
scaleChange size of RF PCB shape by fixed amount
showDisplay PCB component structure or PCB shape
translateMove RF PCB shape to new location

Examples

collapse all

Create a mitered U-bend with default properties.

bend = ubendMitered
bend = 
  ubendMitered with properties:

              Name: 'myMiteredubend'
    ReferencePoint: [0 0]
            Length: [0.0150 0.0050 0.0150]
             Width: [0.0050 0.0050 0.0050]
     MiterDiagonal: 0.0035

View the shape.

show(bend)

Version History

Introduced in R2021b