ENTITY grid

(* SCHEMA STRUCTURAL_FRAME_SCHEMA; *)
ENTITY grid
SUPERTYPE OF (ONEOF 
		(grid_of_building, 
		grid_of_site, 
		grid_of_structure) ANDOR ONEOF  
 		(grid_orthogonal, 
		grid_skewed, 
		grid_radial));
 	grid_name : label;
 	grid_description : OPTIONAL text;
 	grid_use : OPTIONAL text;
DERIVE
	gridlines : SET [1:?] OF gridline := bag_to_set 
		(USEDIN(SELF,'STRUCTURAL_FRAME_SCHEMA.GRIDLINE.PARENT_GRID'));
	grid_levels : SET [0:?] OF grid_level := bag_to_set 
		(USEDIN(SELF,'STRUCTURAL_FRAME_SCHEMA.GRID_LEVEL.PARENT_GRID'));
INVERSE
 	constituent_lines : SET [1:?] OF gridline FOR parent_grid;
END_ENTITY;

Explicit Attributes

Entity grid has the following local and inherited explicit attributes:
AttributeTypeDefined By
 grid_namelabel (STRING)grid
 grid_descriptiontext (STRING)grid
 grid_usetext (STRING)grid

Derived Attributes

Entity grid has the following local and inherited derived attributes:
AttributeTypeDefined By
 gridlinesSET OF gridline (ENTITY)grid
 grid_levelsSET OF grid_level (ENTITY)grid

Inverse Attributes

Entity grid has the following local and inherited inverse attributes:
AttributeTypeDefined By
 constituent_linesSET OF gridline (ENTITY)grid

Supertypes

    No supertypes

Subtypes

Entity grid has the following subtypes:
    grid_of_building*
    grid_of_site*
    grid_of_structure*
    grid_orthogonal*
    grid_radial*
    grid_skewed*
* - Immediate Subtypes

Referenced By

Entity grid and its supertypes are referenced by the following definitions:
DefinitionTypeReferenced Entity
 gridline ENTITY grid
 grid_level ENTITY grid
 select_structural_item SELECT grid
 zone_bounded ENTITY grid


[Top Level Definitions] [Exit]

Generated by STEP Tools® EXPRESS to HTML Converter
2023-03-25T00:11:38-04:00