MultiLayerΒΆ

Type:section
Appearance:multiple

This primitive shares the parameters of a Trapezoid but instead of a single DomainId we can define a multilayer stack with individual thicknesses and DomainIds. To ease the layer definition you can define repeated sub-stacks as well. The following structure

_images/multi_layer1.png

can be produced by following declarations:

MultiLayer {

  Width = 8000
  InnerAngles = [80 80]

  SubLayers {
    Layer {
      DomainId = 3
      Height = 72
    }
    Layer {
      DomainId = 2
      Height = 79
    }
    Multiplicity = 30
  }

  Layer {
    DomainId = 3
    Height = 294
  }

  SubLayers {
    Layer {
      DomainId = 3
      Height = 72
    }
    Layer {
      DomainId = 2
      Height = 79
    }
   Multiplicity = 30
  }
}