aws/process/shielding_gas_type-0.1.0#

GMAW shielding gas

Description

Description of a gas or gas mixture used for shielding in arc welding.

Outline

Schema Definitions

This type is an object with the following properties:
  • gas_component
    arrayRequired
    A single gas element.

    No length restriction
    Items in the array are restricted to the following types:
  • common_name
    stringRequired
    Trade name for the gas mixture.

    No length restriction
  • designation
    string
    Specification according to AWS classification by chemical composition of the gas mixture.

    No length restriction

Examples

A shielding gas mixture of 82% argon and 18% CO2.:

!<asdf://weldx.bam.de/weldx/tags/aws/process/shielding_gas_type-0.1.0>
  gas_component:
  - !<asdf://weldx.bam.de/weldx/tags/aws/process/gas_component-0.1.0>
    gas_chemical_name: argon
    gas_percentage: !<asdf://weldx.bam.de/weldx/tags/units/quantity-0.1.0> {value: 82, units: !<asdf://weldx.bam.de/weldx/tags/units/units-0.1.0> percent}
  - !<asdf://weldx.bam.de/weldx/tags/aws/process/gas_component-0.1.0>
    gas_chemical_name: carbon dioxide
    gas_percentage: !<asdf://weldx.bam.de/weldx/tags/units/quantity-0.1.0> {value: 18, units: !<asdf://weldx.bam.de/weldx/tags/units/units-0.1.0> percent}
  common_name: SG

Original Schema

%YAML 1.1
---
$schema: "http://stsci.edu/schemas/yaml-schema/draft-01"
id: "asdf://weldx.bam.de/weldx/schemas/aws/process/shielding_gas_type-0.1.0"

title: |
  GMAW shielding gas
description: |
  Description of a gas or gas mixture used for shielding in arc welding.
type: object

examples:
  -
    - A shielding gas mixture of 82% argon and 18% CO2.
    - |
      !<asdf://weldx.bam.de/weldx/tags/aws/process/shielding_gas_type-0.1.0>
        gas_component:
        - !<asdf://weldx.bam.de/weldx/tags/aws/process/gas_component-0.1.0>
          gas_chemical_name: argon
          gas_percentage: !<asdf://weldx.bam.de/weldx/tags/units/quantity-0.1.0> {value: 82, units: !<asdf://weldx.bam.de/weldx/tags/units/units-0.1.0> percent}
        - !<asdf://weldx.bam.de/weldx/tags/aws/process/gas_component-0.1.0>
          gas_chemical_name: carbon dioxide
          gas_percentage: !<asdf://weldx.bam.de/weldx/tags/units/quantity-0.1.0> {value: 18, units: !<asdf://weldx.bam.de/weldx/tags/units/units-0.1.0> percent}
        common_name: SG

properties:
  gas_component:
    description: |
      A single gas element.
    type: array
    items:
      $ref: gas_component-0.1.0

  common_name:
    description: |
      Trade name for the gas mixture.
    type: string

  designation:
    description: |
      Specification according to AWS classification by chemical composition of the gas mixture.
    type: string



required: [gas_component, common_name]
propertyOrder: [gas_component, common_name, designation]
flowStyle: block
...