SCHEMA Distribution_mapping_arm;
  
USE FROM Maths_function_arm
  (Maths_function); -- Maths_function
USE FROM Product_activity_and_state_space_parameterisation_arm -- Product_activity_and_state_space_parameterisation
  (Parameterisation);
USE FROM Property_distribution_arm -- Property_distribution
  (Property_distribution);
USE FROM Property_identification_arm -- Property_identification
  (Scale);
  
TYPE Distribution_domain = SELECT
  (Parameterisation,
  Scale);
END_TYPE;
  
ENTITY Identification of property distribution
  distribution  :  Property_distribution;
  identifier  :  Maths_function;
  domain  :  Distribution_domain;
  range  :  Scale;
END_ENTITY;
  
ENTITY Parameterisation_mapping
  parameterisation_1  :  Parameterisation;
  parameterisation_2  :  Parameterisation;
  mapping_1_to_2  :  Maths_function;
END_ENTITY;
  
ENTITY Scale_mapping
  scale_1  :  Scale;
  scale_2  :  Scale;
  mapping_1_to_2  :  Maths_function;
END_ENTITY;
  
END_SCHEMA;

Page last updated - 7 Sep 2000