Skip to main content

REXS Specification

Referencing external data sources

Notice

Change from REXS version 1.4

Referencing external data sources is new.

The following describes how components from external sources can be referenced in a REXS model/REXS file. This enables more modular construction of REXS models.

Referencing components in a REXS model

Similar to referencing GDE files or Klingelnberg neutral data files, a "placeholder" component is initially required in the REXS model. The REXS model uses this "placeholder" component in relations with other components and can reference a component in an external data source (database or another REXS model) using the referenced_component_id attribute. The referenced_component_id must be unique in the data source(s). Model-specific parameters (e.g., POSE, orientation of the reference side/cone tip, direction of axial force absorption, etc.) are specified in the placeholder component. If an attribute is specified in the placeholder component and the database component, the value in the placeholder component takes precedence. Placeholder subcomponents (e.g. rolling elements) are not allowed.

The external data source to be used can be identified via the data_source attribute. The data source does not necessarily need to be explicitly specified; however, the list of potential data sources/databases must be stored in the application that the REXS model imports in advance.

Figure 9. Example: Referencing rolling bearings from an external REXS file
Example: Referencing rolling bearings from an external REXS file

Two of the four rolling bearings in the REXS model are referenced from an external file.



Figure 10. Example: Referencing a shaft component, including shaft sections and material data, from an external REXS file
Example: Referencing a shaft component, including shaft sections and material data, from an external REXS file

(1) Data from the external file is "injected" into the Welle [3] "placeholder" shaft component.

(2) The path to the external file is specified in the data_source attribute.

(3) The referenced_component_id attribute includes the ID of the component to be used in the external file.

(4) Model-specific attributes (such as the vectors for positioning in this example) are specified in the "placeholder" component, not taken from the external file.

(5) The components in the external file can in turn include sub-components (in this case, two shaft sections and a component for the material data).

(6) The relations between the shaft and its sub-components are also specified in the external file.



REXS database files

A REXS Database can be stored in a separate REXS files. To do so, the REXS file contains a list of "main components" as well as any sub-components and associated relations for each main component.

Table 6. Components in REXS database files

Permissible main components

Permissible sub-components

Materials (material)

none

Woehler S-N curves (sn_curve)

none

Lubricants (lubricant)

none

Tools (bevel_gear_tool, cutter_wheel_tool, rack_shaped_tool, worm_grinding_disc_tool, worm_wheel_hob_tool, zero_degree_grinding_disk_tool)

none

Rolling bearings (rolling_bearing_with_catalog_geometry, rolling_bearing_with_detailed_geometry)

rolling_bearing_row, rolling_element, material, lubricant, rolling_element_contact

Shafts (shaft)

shaft_section, notch, fkm_evaluation_point, additional_mass

Gears (cylindrical_gear, ring_gear, bevel_gear, worm_gear, worm_wheel)

*_gear_flank, flankmodifications, material, sn-curve, *_tool und *_manufacturing_settings



Example: materials database

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<model applicationId="FVA Workbench" applicationVersion="8.0" date="2022-12-12T11:20:21+01:00" version="1.5">
  <components>
    <component id="3" name="17Cr3 [3]" type="material">
      <attribute id="fatigue_limit_bending" unit="MPa">400.0</attribute>
      <attribute id="fatigue_limit_compression_tension" unit="MPa">320.0</attribute>
      <attribute id="fatigue_limit_torsion" unit="MPa">240.0</attribute>
    </component>
    <component id="4" name="28Cr4 [4]" type="material">
      <attribute id="fatigue_limit_bending" unit="MPa">450.0</attribute>
      <attribute id="fatigue_limit_compression_tension" unit="MPa">360.0</attribute>
      <attribute id="fatigue_limit_torsion" unit="MPa">270.0</attribute>
    </component>
    <component id="5" name="16MnCr5 [5]" type="material">
      <attribute id="fatigue_limit_bending" unit="MPa">500.0</attribute>
      <attribute id="fatigue_limit_compression_tension" unit="MPa">400.0</attribute>
      <attribute id="fatigue_limit_torsion" unit="MPa">300.0</attribute>
    </component>
    <component id="6" name="20MnCr5 [6]" type="material">
      <attribute id="fatigue_limit_bending" unit="MPa">600.0</attribute>
      <attribute id="fatigue_limit_compression_tension" unit="MPa">480.0</attribute>
      <attribute id="fatigue_limit_torsion" unit="MPa">360.0</attribute>
    </component>
    <component id="7" name="18CrMo4 [7]" type="material">
      <attribute id="fatigue_limit_bending" unit="MPa">550.0</attribute>
      <attribute id="fatigue_limit_compression_tension" unit="MPa">440.0</attribute>
      <attribute id="fatigue_limit_torsion" unit="MPa">330.0</attribute>
    </component>
    <component id="8" name="18CrMoS4 [8]" type="material">
      <attribute id="fatigue_limit_bending" unit="MPa">550.0</attribute>
      <attribute id="fatigue_limit_compression_tension" unit="MPa">440.0</attribute>
      <attribute id="fatigue_limit_torsion" unit="MPa">330.0</attribute>
    </component>
    <component id="9" name="20MoCr3 [9]" type="material">
      <attribute id="fatigue_limit_bending" unit="MPa">450.0</attribute>
      <attribute id="fatigue_limit_compression_tension" unit="MPa">360.0</attribute>
      <attribute id="fatigue_limit_torsion" unit="MPa">270.0</attribute>
    </component>
    <component id="10" name="16NiCr4 [10]" type="material">
      <attribute id="fatigue_limit_bending" unit="MPa">500.0</attribute>
      <attribute id="fatigue_limit_compression_tension" unit="MPa">400.0</attribute>
      <attribute id="fatigue_limit_torsion" unit="MPa">300.0</attribute>
    </component>
    <component id="11" name="17CrNi6-6 [11]" type="material">
      <attribute id="fatigue_limit_bending" unit="MPa">600.0</attribute>
      <attribute id="fatigue_limit_compression_tension" unit="MPa">480.0</attribute>
      <attribute id="fatigue_limit_torsion" unit="MPa">360.0</attribute>
    </component>
  </components>
</model>

Examples

example_models_overview.png

REXS gear model in a file vs. referencing

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<model applicationId="FVA Workbench" applicationVersion="8.0" date="2022-12-12T11:06:16+01:00" version="1.4">
  <relations>
    <!--Relation between the main component Gear unit [1] and the sub-component Casing [2]-->
    <relation id="1" type="assembly">
      <ref hint="gear_unit" id="1" role="assembly"/>
      <ref hint="gear_casing" id="2" role="part"/>
    </relation>
    <!--Relation between the main component Gear unit [1] and the sub-component Shaft [3]-->
    <relation id="3" type="assembly">
      <ref hint="gear_unit" id="1" role="assembly"/>
      <ref hint="shaft" id="3" role="part"/>
    </relation>
    <!--Side relation between Rolling bearing [6] and Shaft [3] and Casing [2]-->
    <relation id="6" type="side">
      <ref hint="gear_casing" id="2" role="outer_part"/>
      <ref hint="shaft" id="3" role="inner_part"/>
      <ref hint="rolling_bearing_with_catalog_geometry" id="6" role="assembly"/>
    </relation>
    <!--Reference relation from Shaft [3] to 18CrMo4 [5] -->
    <relation id="8" type="reference">
      <ref hint="shaft" id="3" role="origin"/>
      <ref hint="material" id="5" role="referenced"/>
    </relation>
    <!--Relation between the main component Shaft [3] and the sub-component section [10]-->
    <relation id="9" type="assembly">
      <ref hint="shaft" id="3" role="assembly"/>
      <ref hint="shaft_section" id="10" role="part"/>
    </relation>
    <!--Relation between the main component Shaft [3] and the sub-component section [11]-->
    <relation id="10" type="assembly">
      <ref hint="shaft" id="3" role="assembly"/>
      <ref hint="shaft_section" id="11" role="part"/>
    </relation>
    <!--Relation between the main component Rolling bearing [6] and the sub-component rolling_bearing_row [8]-->
    <relation id="11" order="1" type="ordered_assembly">
      <ref hint="rolling_bearing_with_catalog_geometry" id="6" role="assembly"/>
      <ref hint="rolling_bearing_row" id="8" role="part"/>
    </relation>
    <!--Relation between the main component Rolling bearing [6] and the sub-component rolling_bearing_row [9]-->
    <relation id="12" order="2" type="ordered_assembly">
      <ref hint="rolling_bearing_with_catalog_geometry" id="6" role="assembly"/>
      <ref hint="rolling_bearing_row" id="9" role="part"/>
    </relation>
  </relations>
  <components>
    <component id="1" name="Gear unit [1]" type="gear_unit">
      <attribute id="account_for_gravity" unit="none">true</attribute>
      <attribute id="account_for_shear_deformation" unit="none">true</attribute>
      <attribute id="direction_vector_gravity_u" unit="none">0.0</attribute>
      <attribute id="direction_vector_gravity_v" unit="none">1.0</attribute>
      <attribute id="direction_vector_gravity_w" unit="none">0.0</attribute>
      <attribute id="gear_shift_index" unit="none">1</attribute>
      <attribute id="gravitational_acceleration" unit="m / s^2">9.81</attribute>
      <attribute id="number_of_gears" unit="none">1</attribute>
      <attribute id="number_of_nodes_in_mesh_width_for_loaddistribution" unit="none">18</attribute>
      <attribute id="operating_time" unit="h">100000.0</attribute>
      <attribute id="operating_time_vdi_2736_2014" unit="h">100000.0</attribute>
      <attribute id="reference_component_for_position" unit="none">1</attribute>
      <attribute id="support_vector" unit="mm">
        <array>
          <c>0.0</c>
          <c>0.0</c>
          <c>0.0</c>
        </array>
      </attribute>
      <attribute id="u_axis_vector" unit="mm">
        <array>
          <c>1.0</c>
          <c>0.0</c>
          <c>0.0</c>
        </array>
      </attribute>
      <attribute id="w_axis_vector" unit="mm">
        <array>
          <c>0.0</c>
          <c>0.0</c>
          <c>1.0</c>
        </array>
      </attribute>
    </component>
    <component id="2" name="Casing [2]" type="gear_casing">
      <attribute id="type_of_gear_casing_construction_vdi_2736_2014" unit="none">closed</attribute>
    </component>
    <component id="3" name="Shaft [3]" type="shaft">
      <attribute id="reference_component_for_position" unit="none">1</attribute>
      <attribute id="support_vector" unit="mm">
        <array>
          <c>0.0</c>
          <c>0.0</c>
          <c>0.0</c>
        </array>
      </attribute>
      <attribute id="u_axis_vector" unit="mm">
        <array>
          <c>1.0</c>
          <c>0.0</c>
          <c>0.0</c>
        </array>
      </attribute>
      <attribute id="w_axis_vector" unit="mm">
        <array>
          <c>0.0</c>
          <c>0.0</c>
          <c>1.0</c>
        </array>
      </attribute>
    </component>
    <component id="5" name="18CrMo4 [5]" type="material">
      <attribute id="constant_a_d_of_effective_diameter_norm_tensile_strength_fkm_2012" unit="none">0.52</attribute>
      <attribute id="constant_a_d_of_effective_diameter_norm_yield_strength_fkm_2012" unit="none">0.52</attribute>
      <attribute id="core_hardness_vickers" unit="HV">550.0</attribute>
      <attribute id="density" unit="kg / dm^3">7.85</attribute>
      <attribute id="effective_diameter_norm_tensile_strength_fkm_2012" unit="mm">16.0</attribute>
      <attribute id="effective_diameter_norm_yield_strength_fkm_2012" unit="mm">16.0</attribute>
      <attribute id="elastic_modulus" unit="N / mm^2">210000.0</attribute>
      <attribute id="endurance_limit_flank" unit="N / mm^2">1500.0</attribute>
      <attribute id="endurance_limit_root" unit="N / mm^2">461.0</attribute>
      <attribute id="fatigue_limit_bending" unit="MPa">550.0</attribute>
      <attribute id="fatigue_limit_compression_tension" unit="MPa">440.0</attribute>
      <attribute id="fatigue_limit_torsion" unit="MPa">330.0</attribute>
      <attribute id="fatigue_strength_factor_compression" unit="none">0.4</attribute>
      <attribute id="fatigue_strength_factor_shear" unit="none">0.577</attribute>
      <attribute id="heat_treated_material_type_iso_6336_2006" unit="none">case_hardened_wrought_steel</attribute>
      <attribute id="is_material_austenitic_and_solution_annealed_fkm_2012" unit="none">false</attribute>
      <attribute id="is_material_austenitic_steel_fkm_2012" unit="none">false</attribute>
      <attribute id="is_material_hardable_fkm_2012" unit="none">false</attribute>
      <attribute id="material_category_vdi_2736_2014" unit="none">steel</attribute>
      <attribute id="material_constant_a_g_for_stieler_support_concept_fkm_2012" unit="none">0.5</attribute>
      <attribute id="material_constant_b_g_for_stieler_support_concept_fkm_2012" unit="none">2700.0</attribute>
      <attribute id="material_designation" unit="none">18CrMo4</attribute>
      <attribute id="material_hardening_method_fkm_2012" unit="none">unhardened</attribute>
      <attribute id="material_type_din_743_2012" unit="none">case_hardening_steel</attribute>
      <attribute id="material_type_fkm_2012" unit="none">case_hardening_steel_blank_hardened_condition</attribute>
      <attribute id="poisson_ratio" unit="none">0.3</attribute>
      <attribute id="surface_hardness_brinell" unit="HB">693.5</attribute>
      <attribute id="surface_hardness_vickers" unit="HV">750.0</attribute>
      <attribute id="tensile_strength" unit="N / mm^2">1100.0</attribute>
      <attribute id="thermal_capacity" unit="J / (kg K)">430.0</attribute>
      <attribute id="thermal_conductivity" unit="W / (m K)">40.0</attribute>
      <attribute id="thermal_expansion_coefficient_minus" unit="1e-6 / C">-8.0</attribute>
      <attribute id="thermal_expansion_coefficient_plus" unit="1e-6 / C">11.0</attribute>
      <attribute id="yield_strength" unit="N / mm^2">775.0</attribute>
    </component>
    <component id="6" name="Rolling bearing [6]" type="rolling_bearing_with_catalog_geometry">
      <attribute id="angular_misalignment_around_v_axis" unit="deg">0.0</attribute>
      <attribute id="angular_misalignment_around_w_axis" unit="deg">0.0</attribute>
      <attribute id="axial_factor_y_0" unit="none">2.2</attribute>
      <attribute id="axial_factor_y_1" unit="none">2.2</attribute>
      <attribute id="axial_factor_y_2" unit="none">3.3</attribute>
      <attribute id="axial_force_absorption" unit="none">negative</attribute>
      <attribute id="bearing_tolerance_class" unit="none">P0</attribute>
      <attribute id="bearing_type" unit="none">radial_self_aligning_roller_bearing</attribute>
      <attribute id="catalogue_designation" unit="none">22206 E</attribute>
      <attribute id="catalogue_value_e" unit="none">0.31</attribute>
      <attribute id="contamination_factor_according_to_iso_281_2007" unit="none">0.5</attribute>
      <attribute id="fatigue_limit_load" unit="kN">6.4</attribute>
      <attribute id="inner_diameter" unit="mm">30.0</attribute>
      <attribute id="lubrication_type" unit="none">oil_injection</attribute>
      <attribute id="manufacturer" unit="none">SKF</attribute>
      <attribute id="misalignment_in_v_direction" unit="mum">0.0</attribute>
      <attribute id="misalignment_in_w_direction" unit="mum">0.0</attribute>
      <attribute id="number_of_bearing_rows" unit="none">2</attribute>
      <attribute id="operating_axial_bearing_clearance" unit="mum">0.0</attribute>
      <attribute id="operating_radial_bearing_clearance" unit="mum">0.0</attribute>
      <attribute id="outer_diameter" unit="mm">62.0</attribute>
      <attribute id="radial_clearance_class" unit="none">C0</attribute>
      <attribute id="radial_dynamic_load_rating" unit="kN">66.1</attribute>
      <attribute id="radial_factor_x_1" unit="none">1.0</attribute>
      <attribute id="radial_factor_x_2" unit="none">0.67</attribute>
      <attribute id="radial_force_absorption" unit="none">true</attribute>
      <attribute id="radial_static_load_rating" unit="kN">60.0</attribute>
      <attribute id="reference_component_for_position" unit="none">1</attribute>
      <attribute id="speed_outer_ring" unit="1 / min">0.0</attribute>
      <attribute id="support_vector" unit="mm">
        <array>
          <c>40.0</c>
          <c>0.0</c>
          <c>0.0</c>
        </array>
      </attribute>
      <attribute id="u_axis_vector" unit="mm">
        <array>
          <c>1.0</c>
          <c>0.0</c>
          <c>0.0</c>
        </array>
      </attribute>
      <attribute id="u_coordinate_on_shaft_inner_side" unit="mm">40.0</attribute>
      <attribute id="u_coordinate_on_shaft_outer_side" unit="mm">40.0</attribute>
      <attribute id="w_axis_vector" unit="mm">
        <array>
          <c>0.0</c>
          <c>0.0</c>
          <c>1.0</c>
        </array>
      </attribute>
      <attribute id="width" unit="mm">20.0</attribute>
    </component>
    <component id="8" name="" type="rolling_bearing_row">
      <attribute id="axial_force_absorption_of_row" unit="none">negative</attribute>
      <attribute id="position_of_rolling_elements" unit="none">one_rolling_element_on_v_axis</attribute>
      <attribute id="pressure_angle" unit="deg">11.68</attribute>
    </component>
    <component id="9" name="" type="rolling_bearing_row">
      <attribute id="axial_force_absorption_of_row" unit="none">positive</attribute>
      <attribute id="position_of_rolling_elements" unit="none">one_rolling_element_on_v_axis</attribute>
      <attribute id="pressure_angle" unit="deg">11.68</attribute>
    </component>
    <component id="10" name="section [10]" type="shaft_section">
      <attribute id="inner_diameter_begin" unit="mm">0.0</attribute>
      <attribute id="inner_diameter_end" unit="mm">0.0</attribute>
      <attribute id="length" unit="mm">50.0</attribute>
      <attribute id="outer_diameter_begin" unit="mm">30.0</attribute>
      <attribute id="outer_diameter_end" unit="mm">30.0</attribute>
      <attribute id="u_coordinate_on_shaft" unit="mm">0.0</attribute>
    </component>
    <component id="11" name="section [11]" type="shaft_section">
      <attribute id="inner_diameter_begin" unit="mm">0.0</attribute>
      <attribute id="inner_diameter_end" unit="mm">0.0</attribute>
      <attribute id="length" unit="mm">50.0</attribute>
      <attribute id="outer_diameter_begin" unit="mm">50.0</attribute>
      <attribute id="outer_diameter_end" unit="mm">50.0</attribute>
      <attribute id="u_coordinate_on_shaft" unit="mm">50.0</attribute>
    </component>
  </components>
</model>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<model applicationId="FVA Workbench" applicationVersion="8.0" date="2022-12-12T11:06:16+01:00" version="1.5">
  <relations>
    <!--Relation between the main component Gear unit [1] and the sub-component Casing [2]-->
    <relation id="1" type="assembly">
      <ref hint="gear_unit" id="1" role="assembly"/>
      <ref hint="gear_casing" id="2" role="part"/>
    </relation>
    <!--Relation between the main component Gear unit [1] and the sub-component Shaft [3]-->
    <relation id="3" type="assembly">
      <ref hint="gear_unit" id="1" role="assembly"/>
      <ref hint="shaft" id="3" role="part"/>
    </relation>
    <!--Side relation between Rolling bearing [6] and Shaft [3] and Casing [2]-->
    <relation id="6" type="side">
      <ref hint="gear_casing" id="2" role="outer_part"/>
      <ref hint="shaft" id="3" role="inner_part"/>
      <ref hint="rolling_bearing_with_catalog_geometry" id="6" role="assembly"/>
    </relation>
  </relations>
  <components>
    <component id="1" name="Gear unit [1]" type="gear_unit">
      <attribute id="account_for_gravity" unit="none">true</attribute>
      <attribute id="account_for_shear_deformation" unit="none">true</attribute>
      <attribute id="direction_vector_gravity_u" unit="none">0.0</attribute>
      <attribute id="direction_vector_gravity_v" unit="none">1.0</attribute>
      <attribute id="direction_vector_gravity_w" unit="none">0.0</attribute>
      <attribute id="gear_shift_index" unit="none">1</attribute>
      <attribute id="gravitational_acceleration" unit="m / s^2">9.81</attribute>
      <attribute id="number_of_gears" unit="none">1</attribute>
      <attribute id="number_of_nodes_in_mesh_width_for_loaddistribution" unit="none">18</attribute>
      <attribute id="operating_time" unit="h">100000.0</attribute>
      <attribute id="operating_time_vdi_2736_2014" unit="h">100000.0</attribute>
      <attribute id="reference_component_for_position" unit="none">1</attribute>
      <attribute id="support_vector" unit="mm">
        <array>
          <c>0.0</c>
          <c>0.0</c>
          <c>0.0</c>
        </array>
      </attribute>
      <attribute id="u_axis_vector" unit="mm">
        <array>
          <c>1.0</c>
          <c>0.0</c>
          <c>0.0</c>
        </array>
      </attribute>
      <attribute id="w_axis_vector" unit="mm">
        <array>
          <c>0.0</c>
          <c>0.0</c>
          <c>1.0</c>
        </array>
      </attribute>
    </component>
    <component id="2" name="Casing [2]" type="gear_casing">
      <attribute id="type_of_gear_casing_construction_vdi_2736_2014" unit="none">closed</attribute>
    </component>
    <component id="3" name="Shaft [3]" type="shaft">
      <attribute id="data_source" unit="none">./database_shaft.rexs</attribute>
	  <attribute id="referenced_component_id" unit="none">30</attribute>
	  <attribute id="reference_component_for_position" unit="none">1</attribute>
      <attribute id="support_vector" unit="mm">
        <array>
          <c>0.0</c>
          <c>0.0</c>
          <c>0.0</c>
        </array>
      </attribute>
      <attribute id="u_axis_vector" unit="mm">
        <array>
          <c>1.0</c>
          <c>0.0</c>
          <c>0.0</c>
        </array>
      </attribute>
      <attribute id="w_axis_vector" unit="mm">
        <array>
          <c>0.0</c>
          <c>0.0</c>
          <c>1.0</c>
        </array>
      </attribute>
    </component>
    <component id="6" name="Rolling bearing [6]" type="rolling_bearing_with_catalog_geometry">
	  <attribute id="data_source" unit="none">./database_bearing.rexs</attribute>
	  <attribute id="referenced_component_id" unit="none">60</attribute>
      <attribute id="axial_force_absorption" unit="none">negative</attribute>
      <attribute id="radial_force_absorption" unit="none">true</attribute>
      <attribute id="reference_component_for_position" unit="none">1</attribute>
      <attribute id="speed_outer_ring" unit="1 / min">0.0</attribute>
      <attribute id="support_vector" unit="mm">
        <array>
          <c>40.0</c>
          <c>0.0</c>
          <c>0.0</c>
        </array>
      </attribute>
      <attribute id="u_axis_vector" unit="mm">
        <array>
          <c>1.0</c>
          <c>0.0</c>
          <c>0.0</c>
        </array>
      </attribute>
      <attribute id="u_coordinate_on_shaft_inner_side" unit="mm">40.0</attribute>
      <attribute id="u_coordinate_on_shaft_outer_side" unit="mm">40.0</attribute>
      <attribute id="w_axis_vector" unit="mm">
        <array>
          <c>0.0</c>
          <c>0.0</c>
          <c>1.0</c>
        </array>
      </attribute>
    </component>
  </components>
</model>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<model applicationId="FVA Workbench" applicationVersion="8.0" date="2022-12-12T11:06:16+01:00" version="1.5">
  <relations>
    <!--Reference relation from Shaft [30] to 18CrMo4 [50] -->
    <relation id="1" type="reference">
      <ref hint="shaft" id="30" role="origin"/>
      <ref hint="material" id="50" role="referenced"/>
    </relation>
    <!--Relation between the main component Shaft [30] and the sub-component section [100]-->
    <relation id="2" type="assembly">
      <ref hint="shaft" id="30" role="assembly"/>
      <ref hint="shaft_section" id="100" role="part"/>
    </relation>
    <!--Relation between the main component Shaft [30] and the sub-component section [110]-->
    <relation id="3" type="assembly">
      <ref hint="shaft" id="3" role="assembly"/>
      <ref hint="shaft_section" id="110" role="part"/>
    </relation>
  </relations>
  <components>
    <component id="30" name="Shaft [30]" type="shaft">
	</component>
    <component id="50" name="18CrMo4 [50]" type="material">
      <attribute id="core_hardness_vickers" unit="HV">550.0</attribute>
      <attribute id="density" unit="kg / dm^3">7.85</attribute>
      <attribute id="elastic_modulus" unit="N / mm^2">210000.0</attribute>
      <attribute id="endurance_limit_flank" unit="N / mm^2">1500.0</attribute>
      <attribute id="endurance_limit_root" unit="N / mm^2">461.0</attribute>
      <attribute id="fatigue_limit_bending" unit="MPa">550.0</attribute>
      <attribute id="fatigue_limit_compression_tension" unit="MPa">440.0</attribute>
      <attribute id="fatigue_limit_torsion" unit="MPa">330.0</attribute>
      <attribute id="fatigue_strength_factor_compression" unit="none">0.4</attribute>
      <attribute id="fatigue_strength_factor_shear" unit="none">0.577</attribute>
      <attribute id="heat_treated_material_type_iso_6336_2006" unit="none">case_hardened_wrought_steel</attribute>
      <attribute id="material_designation" unit="none">18CrMo4</attribute>
      <attribute id="material_type_din_743_2012" unit="none">case_hardening_steel</attribute>
      <attribute id="poisson_ratio" unit="none">0.3</attribute>
      <attribute id="surface_hardness_brinell" unit="HB">693.5</attribute>
      <attribute id="surface_hardness_vickers" unit="HV">750.0</attribute>
      <attribute id="tensile_strength" unit="N / mm^2">1100.0</attribute>
      <attribute id="thermal_capacity" unit="J / (kg K)">430.0</attribute>
      <attribute id="thermal_conductivity" unit="W / (m K)">40.0</attribute>
      <attribute id="thermal_expansion_coefficient_minus" unit="1e-6 / C">-8.0</attribute>
      <attribute id="thermal_expansion_coefficient_plus" unit="1e-6 / C">11.0</attribute>
      <attribute id="yield_strength" unit="N / mm^2">775.0</attribute>
    </component>
    <component id="100" name="section [100]" type="shaft_section">
      <attribute id="inner_diameter_begin" unit="mm">0.0</attribute>
      <attribute id="inner_diameter_end" unit="mm">0.0</attribute>
      <attribute id="length" unit="mm">50.0</attribute>
      <attribute id="outer_diameter_begin" unit="mm">30.0</attribute>
      <attribute id="outer_diameter_end" unit="mm">30.0</attribute>
      <attribute id="u_coordinate_on_shaft" unit="mm">0.0</attribute>
    </component>
    <component id="110" name="section [110]" type="shaft_section">
      <attribute id="inner_diameter_begin" unit="mm">0.0</attribute>
      <attribute id="inner_diameter_end" unit="mm">0.0</attribute>
      <attribute id="length" unit="mm">50.0</attribute>
      <attribute id="outer_diameter_begin" unit="mm">50.0</attribute>
      <attribute id="outer_diameter_end" unit="mm">50.0</attribute>
      <attribute id="u_coordinate_on_shaft" unit="mm">50.0</attribute>
    </component>
  </components>
</model>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<model applicationId="FVA Workbench" applicationVersion="8.0" date="2022-12-12T11:06:16+01:00" version="1.5">
  <relations>
    <!--Relation between the main component Rolling bearing [60] and the sub-component rolling_bearing_row [80]-->
    <relation id="1" order="1" type="ordered_assembly">
      <ref hint="rolling_bearing_with_catalog_geometry" id="60" role="assembly"/>
      <ref hint="rolling_bearing_row" id="80" role="part"/>
    </relation>
    <!--Relation between the main component Rolling bearing [60] and the sub-component rolling_bearing_row [90]-->
    <relation id="1" order="2" type="ordered_assembly">
      <ref hint="rolling_bearing_with_catalog_geometry" id="60" role="assembly"/>
      <ref hint="rolling_bearing_row" id="90" role="part"/>
    </relation>
  </relations>
  <components>
    <component id="60" name="Rolling bearing [60]" type="rolling_bearing_with_catalog_geometry">
      <attribute id="axial_factor_y_0" unit="none">2.2</attribute>
      <attribute id="axial_factor_y_1" unit="none">2.2</attribute>
      <attribute id="axial_factor_y_2" unit="none">3.3</attribute>
      <attribute id="bearing_tolerance_class" unit="none">P0</attribute>
      <attribute id="bearing_type" unit="none">radial_self_aligning_roller_bearing</attribute>
      <attribute id="catalogue_designation" unit="none">22206 E</attribute>
      <attribute id="catalogue_value_e" unit="none">0.31</attribute>
      <attribute id="contamination_factor_according_to_iso_281_2007" unit="none">0.5</attribute>
      <attribute id="fatigue_limit_load" unit="kN">6.4</attribute>
      <attribute id="inner_diameter" unit="mm">30.0</attribute>
      <attribute id="lubrication_type" unit="none">oil_injection</attribute>
      <attribute id="manufacturer" unit="none">SKF</attribute>
      <attribute id="number_of_bearing_rows" unit="none">2</attribute>
      <attribute id="operating_axial_bearing_clearance" unit="mum">0.0</attribute>
      <attribute id="operating_radial_bearing_clearance" unit="mum">0.0</attribute>
      <attribute id="outer_diameter" unit="mm">62.0</attribute>
      <attribute id="radial_clearance_class" unit="none">C0</attribute>
      <attribute id="radial_dynamic_load_rating" unit="kN">66.1</attribute>
      <attribute id="radial_factor_x_1" unit="none">1.0</attribute>
      <attribute id="radial_factor_x_2" unit="none">0.67</attribute>
      <attribute id="radial_static_load_rating" unit="kN">60.0</attribute>
      <attribute id="width" unit="mm">20.0</attribute>
    </component>
    <component id="80" name="" type="rolling_bearing_row">
      <attribute id="axial_force_absorption_of_row" unit="none">negative</attribute>
      <attribute id="position_of_rolling_elements" unit="none">one_rolling_element_on_v_axis</attribute>
      <attribute id="pressure_angle" unit="deg">11.68</attribute>
    </component>
    <component id="90" name="" type="rolling_bearing_row">
      <attribute id="axial_force_absorption_of_row" unit="none">positive</attribute>
      <attribute id="position_of_rolling_elements" unit="none">one_rolling_element_on_v_axis</attribute>
      <attribute id="pressure_angle" unit="deg">11.68</attribute>
    </component>
  </components>
</model>