Icarus Technology Application Programming Interface
Icarus Technology Application Programming Interface
Icarus Technology Application Programming Interface
NOTICE
The information in this document is believed to be accurate in all respects.
However, AspenTech cannot assume responsibility for any consequences
resulting from the use thereof. Information in this document is subject to
change without notice and does not represent a commitment on the part of
AspenTech.
Table of Contents
Some minor changes have been made to the names of slots in the database. The Aspen Icarus application(s)
will automatically update existing data in these fields but any programmatic setting of these fields through
the IPOD API will need to be changed. Following is a listing of the fields that have changed
Model
BSTLSIDING
BPIPFLO PANEL
BCIVPIPE
Old Slot
CpSidingType
CpMaterial
Pipe routing type
New Slot
CpMaterial
CpPipeMaterial
CpPipeRoutingType
BPIPPIPE
CpPipeRoutingType
EP TRIPLEX
CpTemperature
CpDesignTemperature
EP SLURRY
CpTemperature
CpDesignTemperature
EP SIMPLEX
CpTemperature
CpDesignTemperature
EP ROTARY
CpTemperature
CpDesignTemperature
EP RECIP MOTR
CpTemperature
CpDesignTemperature
EP DUPLEX
CpTemperature
CpDesignTemperature
EP DIAPHRAM
CpTemperature
CpDesignTemperature
CpTrayArea
CpSurfaceArea
CpTrayArea
CpSurfaceArea
CpTrayArea
CpSurfaceArea
CpMaterial
CpTrayMaterial
DMX STATIC
CpDesignTemperatureInlet
CpDesignTemperature
DMX STATIC
CpDesignGaugePressureInlet
CpDesignGaugePressure
DBL MSHELSTAG
Product Density
CpBulkDensity
DDDTTRAYED
CpNumberTraysPackedHeightBottomSection
CpNumberTraysPackedHeightTopSection
CpNumberTraysBottomSection1
CpPackingHeightBottomSection
CpNumberTraysTopSection
CpPackingHeightTopSection
For a packed section the corresponding packed slots should be used and for a tray section the trayed slots
should be used.
Icarus Technology Application Programming Interface Reference
AspenTech Copyright
July 2010 Version V7.2
Overview
Aspen-Icarus Technology
API
The API allows a developer (who may also be a user of the Icarus software) to create
programs to work with IPOD. The API allows the user to add/modify project components, to
query data from the database, etc.
When the Icarus system evaluates a project, a portion of IPOD (containing results data) will
also be duplicated within the corresponding SQL relational database.
Icarus System Tasks
Please follow the procedure given below to create a custom task in order to invoke an API
application within the environment:
Select the menu Tools>>Options>>Custom Tasks. Create a new task by entering a name for the
task (which will show in selected pop-up menus). Select the level where the custom task should
be available (see description below.) Finally, select the location of the executable which would
run the custom task. You can also cause a re-load on the project after the custom task finishes by
checking the check-box at the bottom of the dialog box.
A custom task can be run at either of three levels:
1. Project:
To run the project level task, right-click on the Main Project in the Tree View and
select the desired task. The following arguments will be passed to the custom task
executable from the Kbase Workstation:
CustomTask.exe ProjectName ScenarioName
2. Project Component:
To run a task at the project component level, right-click on any project component in the
Tree View, List View, or the PFD View and select the desired task. The following
arguments will be passed to the custom task executable from the Kbase Workstation:
CustomTask.exe ProjectName ScenarioName ProjectComponentObjectName ObjectClassID
3. Unit Operation:
To run a task at the unit operation level, right-click on any unit operation in the Process
View and select the desired task. The following arguments will be passed to the custom
task executable from the Kbase Workstation:
CustomTask.exe ProjectName ScenarioName UnitOperationObjectName ObjectClassID
A sample custom task is provided with the system. Please Go to Tools>>Options>>Custom Tasks
to modify the location of the custom task executable to the location you installed the Icarus
system. Note: Make sure that you press the Modify: button after making the changes.
When a custom has been invoked and is running, the Kbase Workstation will be put in inactive
mode. It is undesirable to have users interact with the Kbase Workstation at the same time they
are working with an API application which is modifying the same project. The system only
responds to requests from external programs through the Icarus API. Once the external program
finishes its processing and is dismissed, control is turned back to Kbase Workstation.
NOTE: The following functions/methods are only available for the multi-user/multitasking version of Icarus Kbase system:
ICObject.Create for a icClassProjectArea
General Rules
To get the most out of your Icarus system using the API, keep in mind the following
guidelines when programming.
1.
2.
3.
4.
5.
6.
7.
8.
9.
Always begin by defining, initializing and logging into the Icarus system. See the
example on the following page.
Become familiar with the relationships between objects in Icaruss IPOD. Use the
three sheets on Parent-Child Relationships as a handy reference.
Create a project in the Icarus system GUI, create a set of custom tasks which would
then invoke the API application you develop. Inside your API application, open a
connection to the currently opened Icarus project.
After creating an area, always remember to save the changes using the commit
method.
After creating or changing a project component or any other object, always remember
to save the changes using the commit method.
When creating a project component whose model begins with two letters
(CategoryCode) and then what looks like it has a space before the rest of the model
(ItemCode), remember that there are actually two spaces between the CategoryCode
and the ItemCode. For instance, BC ABVGR-TANK: BC is the CategoryCode and
ABVGR-TANK is the ItemCode. There are two spaces between BC and ABVGRTANK. Remember to use the Icarus model reference to determine which models use
the extra space. Your Icarus Kbase interface does not show the D or E in front of
some CategoryCodes DCP ANSI is shown in the Icarus Kbase interface as CP
ANSI. Those items which have four-character CategoryCodes do not have any spaces
between the CategoryCodes and ItemsCodes DDDTTRAYED, the double diameter
trayed tower, for example.
When specifying a project component, be sure that all required information has been
specified. Check that the information that you have put in is valid data and is within
any minimum/maximum range provided for that input.
Program a scan on a component or a project before evaluating it. The scan is the
diagnostic for checking the input file to the Icarus system to make sure that the
information is reasonable. This will allow you to check for serious errors called
fatals, other errors which may still prevent you from getting results, or any other
warnings. (Note that using the evaluate method can return fatals, errors and some
warnings, but its good practice to use the scan to check for these.)
If you have a component which you want to add, but cant find exactly what youre
looking for in the Icarus system components, pick a component that resembles what
you are working with and make a note of what your component really is in the
Remarks section of that component. Also, let Icarus know about components which
you are interested in having added to the Icarus system, and any cost data that Icarus
can use to develop a model for that component.
Sample
The following Visual Basic sample illustrates the initialization and termination of the Icarus
Technology API. This sample uses the type library.
Rem This function opens a connection to a project which has been opened (and is active) in
the Icarus GUI environment.
bRet = Icarus.Terminate
End If
End If
Set Proj = Nothing
Set Icarus = Nothing
End Sub
Icarus Technology Application Programming Interface Reference
AspenTech Copyright
July 2010 Version V7.2
10
11
12
13
14
15
16
Objects Overview
Enumeration Types
icDirection
icObjectClass
icTypeConnection
icTypeSimulator
icTypeRelation
Objects
ICObject
ICObjects
Project
Result
SimCase
Slot
System
17
18
A final note: The code listed previously is not complete. The program needs to open the Icarus
System, then a project, then an area and then a piece of equipment before this code can be used.
19
Enumeration icDirection
Description
icDirection is used to represent the direction of flow
One usage is in the ConnectedObjects method to retrieve inlet, outlet or both
types of connections, noted previously.
This enumeration includes all the valid identifier values for direction of
flow.
Values
Value
icANY
icIN
icOUT
Represented Data
Flowing in either direction
Flowing in
Flowing out
20
Enumeration icObjectClass
Description
icObjectClass is used with various methods including, for example, the
Open and Create methods which require the type of ICObject to be able to
open or create the object. An example is
Dim nClass as ICAPILIB.ICObjectClass
Dim Project as ICAPILIB.Project
Dim Comp as ICAPILIB.ICObject
Dim bRet as Boolean
(Not listed: Code for logging in to the system and opening a project.)
nClass = icClassProjectComponent
bRet = Comp.Open(B2 Block, nClass, Project, DVT CYLINDER)
This code opens B2 Block which is a project component (as defined by
nClass (icClassProjectComponent)) whose model is DVT CYLINDER in
a project called Project.
This enumeration includes all the valid class identifier values for ICObject
object. In the description of each property of an object in this document,
Valid Classes refers to the valid values of icObjectClass.
General
Value
icClassFlowsheetArea
icClassProcessStream
icClassProcessStreamIcarus
icClassProjectArea
icClassProjectComponent
icClassStreamPremap
icClassStreamSimulator
icClassStreamUser
icClassStreamUtility
icClassUnitOperation
Represented Data
Simulation flowsheet area
Simulation process stream
Icarus generated simulation-related process stream.
These are generated during the mapping process
Project Area
Project Component
Icarus generated process stream defined on top of
icClassProcessStreamIcarus
Process stream defined on top of
icClassProcessStream
User added stream
Utility stream
Simulation unit operation
21
Represented Data
Design Criteria
General Standard Basis
Investment Parameters
Operating Cost Parameters
Product Specifications
Raw Material Resources
Utility Resources
Bulks
Value
icClassInstallBulkAddition
icClassInstallBulkSetAddition
icClassInstallBulkAdjustment
icClassInstallBulkCivil
icClassInstallBulkDuct
icClassInstallBulkSetDuct
icClassInstallBulkElectrical
icClassInstallBulkInstrumentation
icClassInstallBulkSetInstrumentation
icClassInstallBulkInsulation
icClassInstallBulkPaint
icClassInstallBulkPipeGeneral
icClassInstallBulkPipeItem
icClassInstallBulkSetPipeItem
icClassInstallBulkSteel
Represented Data
Manhour additions
Sets of manhour additions
Manhour adjustments
Civil work
Duct work
Sets of duct work
Electrical
Use Piping and Instrumentation instead
Collection of loops associated with an object
Insulation
Paint
General pipe
Use Piping and Instrumentation instead
Collection of lines associated with an object
Steel
Represented Data
Piping line
User specified group of lines
Special piping elements
Valid Icarus fitting
Piping Segments
Valid Icarus valves
Valid Icarus Instrument devices
Valid Icarus hookup elements
Instrument Loop
Valid Icarus signal line elements
22
Enumeration icTypeConnection
Description
Indicating the type of connection, icTypeConnection is used in the
ConnectedObjects method, mentioned previously. Below is another example
of icTypeConnection, this time using the Disconnect method
Dim Line as ICAPILIB.ICObject
Dim bRet as Boolean
(Not listed: Code from logging in to the system to opening an area.)
bRet = Line.Disconnect(Inlet, icConnectionPiping) (FUTURE -- NOT
CURRENTLY AVAILABLE)
bRet = Line.Disconnect(Inlet, icConnectionStream)
This enumeration includes all the valid identifier values for connection
types.
Values
Value
icConnectionElectrical
icConnectionInstrument
icConnectionPiping
icConnectionStream
Represented Data
Connection to electrical lines
Connection to instrument loops
Connection to lines of pipe
Connection to process streams
23
Enumeration icTypeRelation
Description
icTypeRelation is used with the Relatives method to find out the individual
components belonging to a parent, e.g. the areas in a project, or used to
find out who is the parent of a component, e.g. what area a component is
in. Note that the Relatives method may also be used to create a relationship
between objects. icTypeRelation is also used with DeleteRelation. Please
note: Deleting a relationship between two objects does not delete either
object. After you delete a relationship between two objects, be sure to create
a relationship between the orphan object and a new parent object.
Currently, the only relationships that are looked for are parent-child
relationships however, other relationships exist, such as mapping
relationships between simulator data and project component data. Access to
these relationships is not currently available using the API.
The following example shows how the parents of a component can be
determined:
Dim Equip as ICAPILIB.ICObject
Dim Parents as ICAPILIB.ICObjects
Dim nRelation as ICAPILIB.icTypeRelation
(Not shown: Code from logging in to the system to opening up a
component.)
nRelation = icRelationPartOf
Set Parents = Equip.Relatives(nRelation)
This enumeration includes all the valid identifier values for relation between
the various Icarus system objects.
Values
Value
icRelationPartOf
icRelationParts
Represented Data
This is the relationship that a part
object has to its parent.
This is the relationship that an object
has to its parts.
24
Enumeration icTypeSimulator
Description
icTypeSimulator is used with ICObjects Open and SimulatorType methods.
It is also used to determine which simulator was used in the project.
Dim Proj as ICAPILIB.Project
Dim ST As ICAPILib.icTypeSimulator
Dim SimulatorUsed As ICAPILib.SimCase
(Not shown: Code from logging in to opening the project.)
Set SimulatorUsed = Proj.SimCase
ST = SimulatorUsed.SimulatorType
This enumeration represents all the simulators that certain Icarus systems
interface with.
Values
Value
icSimASPEN
icSimCHEMSH
icSimCHEMST
icSimNONE
icSimSIMSCI
icSimWINGEMS
Represented Data
AspenTechs ASPEN PLUS
WinSims DESIGN II for Windows
Chemstations CHEMCAD
Non Simulator
SimScis PRO/II
Pacific Simulations WinGEMS
25
For easy reference, the properties and methods used in the API are listed in alphabetical order.
The objects or variables that have these properties or use these methods are included in
parentheses after the property/method. A fuller description of the use of each property and
method is included in another section of the documentation.
Add (ICObjects)
Adds a new ICObject to the ICObjects collection.
Areas (Project)
Returns the areas in the project as stores them in a collection.
CategoryCode (ICObject)
Returns the Category Code e.g. the DHE in DHE FLOAT-HEAD for an equipment
item.
ClassId (ICObject)
Finds out what the objects class identifier is. An example would be an equipment item
would have the ClassID icClassProjectComponent.
Clear (Slot)
Clears the slot that it is being pointed to.
Close (Result)
Closes the results database.
CloseResults (Project)
Closes a projects results database.
Commit (ICObject)
Saves any changes made to the object.
ComponentAttributes(Result)
Queries the results database to get the list of attributes (slot names) for a component.
Note that in the case of duplicate slot names, such as for nozzles, attempting to get a
26
value for these slots will result in a system error. This bug has been reported and is
awaiting a fix.
ComponentValue (Result)
Queries the results database to find the value for a particular slot as it appears in the
DESIGN relation in the results.
Connect (ICObject)
Connects two objects
ConnectedObjects (ICObject)
Finds how many of connected objects there are of connection type e.g. streams, etc. It
specifically selects inlet, any or outlet connections based on the second variable
ConvertValue (Slot)
Converts a value to the units pass to the subroutine, and changes the value in the slot.
(See ValueInUnits for comparison.)
Count (ICObjects)
Counts the number of the objects in ICObjects.
Create (ICObject)
Creates new objects except new stream pre-map or simulator file objects. These objects
cannot be created in the API. The object should be committed (e.g bRet =
ICObject.Commit) right after it is created.
Delete (ICObject)
Deletes an object, except simulator and stream pre-map objects. These cannot be deleted.
DeleteAttribute (ICObject)
Deletes an attribute of an object. An attribute is a variable that can be specified for an
object. Use with caution.
DeleteRelation (ICObject)
Deletes the objects relationship with other objects. This method should be used with
caution. After deleting a relationship between parent-child objects, the user should
immediately assign the orphan object a new parent.
Disconnect (ICObject)
Disconnects two objects
Edit (ICObject)
Brings up the edit box for valid icClasses (e.g. icClassProjectComponent). For a listing of
valid icClasses, see detailed reference.
27
Evaluate (ICObject)
Evaluates the cost of a specific component. Currently, the fatal errors, errors and
warnings portion of the Evaluate method are turned off.
Evaluate (Project)
Evaluates the project. The project should be scanned before it is evaluated. Currently, the
fatal errors, errors and warnings portion of the Evaluate method are turned off.
EvaluateInvestmentAnalysis (Project)
Conducts the investment analysis for the project
EvaluateOperatingCosts (Project)
Evaluates the operating costs for the project.
ExportSpreadsheets (Project)
Exports all the standard Icarus spreadsheets into an ASCII delimited text format. After
the export is completed the generated files will have the .txt extension. The files
generated are Equip.txt, Projsum.txt, Cashflow.txt and Execsum.txt.
FlowsheetAreas (SimCase)
Returns a collection of flowsheet areas in the simulator case.
HasUnits (Slot)
Determines whether the slot has units.
Initialize (System)
Initializes the Icarus Technology API environment and prepares the system for use of the
other objects.
IsList (Slot)
Determines if the slot object is an array (for attributes, for example)
IsLoaded (Result)
Checks whether the results are loaded.
IsNumeric (Slot)
Checks whether a slot is a number.
IsResultLoaded (Project)
Checks whether the results are loaded.
IsText (Slot)
Checks whether a slot is text.
IsUnitsLoaded (Project)
Checks whether a project has its units loaded.
Icarus Technology Application Programming Interface Reference
AspenTech Copyright
July 2010 Version V7.2
28
IsValid (ICObject)
Checks whether an object is valid.
IsValid (Project)
Checks whether a project is valid.
IsValid (Result)
Checks whether is result is valid.
IsValid (SimCase)
Checks whether a simulation case is valid.
IsValid (Slot)
Checks whether a slot is valid.
Item (ICObjects)
Returns a member of ICObjects based either on its index number or object name.
ItemCode (ICObject)
Returns the item code for an object.
Load (Result)
Loads the design and cost evaluation results, if they have not already been loaded. A
connection to the results database is opened. Note: When the connection to the results
database is no longer required, the connection to the results database should be closed.
LoadResults (Project)
Loads the design and cost evaluation results, if they have not already been loaded. A
connection to the results database is opened. The database name passed through the API
provides a way of loading a results database other than the default database. Note: When
the connection to the results database is no longer required, the connection to the results
database should be closed.
LoadUnits (Project)
Loads the units of the project. Any Project and ICObject object can have certain tasks
performed on it. Many of these tasks require that the units of measure information for the
current project be loaded into memory, before they are invoked.
Login (System)
Logs a specific user onto the database.
Model (ICObject)
For icClassProjectComponent objects this property returns the Icarus code associated
with the project component. For icClassUnitOperation objects this method returns the
simulator model.
Icarus Technology Application Programming Interface Reference
AspenTech Copyright
July 2010 Version V7.2
29
Name (ICObject)
Gets and sets the display name used with the Icarus systems.
ObjectName (ICObject)
Gets the internal object name by which this item is identified in IPOD.
Open (ICObject)
Opens an ICObject.
Open (Project)
Opens any existing project.
Open (Result)
Opens a connection to the results database. The database should already have been
loaded. Note: When the connection to the results database is no longer required, the
connection to the results database should be closed.
Open (SimCase)
Opens the simulation case in an existing project.
OpenResults (Project)
Opens a connection to the results database. The database should already have been
loaded. One of the methods variables, pvtDBName, provides a way of opening a
connection to a results database other than the default database. Note: When the
connection to the results database is no longer required, the connection to the results
database should be closed.
Project (ICObject)
Returns the project that hold the ICObject
Project (Result)
Returns the project that the result is based on.
Project (SimCase)
Returns the project that the simulation case is based on.
Project (System)
Gets the specific project in the system.
ProjectComponents (ICObject)
Gets all the project components contained in this project area. The project components
are returned as a collection in an ICObjects object.
ProjectName (ICObject)
Returns the ICObjects project name.
Icarus Technology Application Programming Interface Reference
AspenTech Copyright
July 2010 Version V7.2
30
Relatives (ICObject)
Either
ResultAttributes (ICObject)
Queries the results database to find all the components results attributes. Note that if any
of the attributes are duplicated (e.g. for nozzles), if they are queried for values, they will
cause a system error. This bug will be fixed in a future release.
Results (Project)
Gets the results for the specified project.
ResultValue (ICObject)
Given the name of what to look for, this gets the value used in the cost estimate.
Save (Project)
Saves the project.
Scan (Project)
Scans the project for errors. This should be done before the project is evaluated.
ScenarioName (ICObject)
Returns the scenario that the object was developed under. In the future, the API will be
able to access various scenarios created in ITS. However, this property is currently not
active.
ScenarioName (Project)
Returns the scenario that the project was developed under. In the future, the API will be
able to access various scenarios created in ITS. However, this property is currently not
active.
SimCase (Project)
Gets the simulator case that was used as a basis for the project.
SimulatorType (SimCase)
Returns the simulator used. The actual number returned is an integer which matches up to
a specific simulator. See the detailed section.
Streams (Project)
Returns the streams in a project.
Streams (SimCase)
Icarus Technology Application Programming Interface Reference
AspenTech Copyright
July 2010 Version V7.2
31
32
33
Variable Definitions
Most of the variables are named using standard C names, e.g. pvtModel means pointer, variant
type, and Model, where Model is the variable that needs to be supplied. A heat exchanger is used
as an example.
Name:
User tag number:
Surface area:
Located in Area:
Project:
Process HX
HE-110
1000 sq ft
Process A
Project A
Variable
Definition
BstrAttribute
BstrColumn
BstrConnectorName
BstrEntryName
BstrObjectName
BstrProjectName
BstrReportFile
BstrSlotName
BstrSpreadsheet
BstrScrUnits
BstrTargetConnectorName
BstrUserName
NConnectionType
NcontractNum
Nperiod
Nrelation
Nrow
PDispatchSystem
PICObject
PnUserInstance
Pproject
PszDesiredUnits
PvntAmount
PvntEnteredValue
PvntRelatedObject
PvntTargetObject
PvtClassID
PvtDBName
PvtErrorCount
PvtFatalCount
PvtModel
34
Variable
Definition
PvtName
PvtNextObject
PvtParent
heat exchanger.
The name of the object
The next object
The objects parent
PvtScenarioName
PvtSystem
pvtWarningCount
vtConnectType
VtFunction
VtIndex
VntInfo
vtStreamClassId
Number of warnings
Type of connection
Port name on a component used with the ConnectedObjects property
An items index number
Type of Object, e.g. Project Component, as noted by icObjectClass.
Used with the Relatives property, or equal to True when setting a
relationship between objects.
Type of stream. See icObjectClass for stream types
35
ICObject Object
Description
Using this object allows you to interact with the project area, project components,
bulks, flowsheet areas, unit operations and streams. Each object has a class
identifier that represents the type of data stored in the object. (Simply put, if you
create a project area object, then you specify the icObjectClass or class identifier - for that object as icClassProjectArea. Another example would be if a stream were
loaded by the simulator, the icObjectClass for that stream would be
icClassProcessStream.) The methods and properties indicate for which class
identifiers they are valid. The enumeration type icObjectClass contains the full set
of possible class identifier values.
Methods
Commit, Connect, Create, Delete, DeleteAttribute, DeleteRelation, Disconnect,
Edit, Evaluate, Open
Properties
Property
CategoryCode
ClassId
ConnectedObjects
IsValid
ItemCode
Model
Name
ObjectName
Project
ProjectComponents
ProjectName
Relatives
ResultAttributes
ResultValue
ScenarioName
UnitOperations
UserInstance
Value
ValueWithConversion
ValueWithInheritance
Data Type
String
Long
Object
Boolean
String
String
String
String
Object
Object
String
Object
Object
Object
String
Object
Long
Object
Object
Object
Read/Write attribute
Read Only
Read Only
Read Only
Read Only
Read Only
Read/Write Only
Read/Write
Read Only
Read Only
Read Only
Read Only
Read/Write
Read Only
Read Only
Read Only
Read Only
Read Only
Read/Write
Write Only
Read Only
36
Detailed Reference
CategoryCode
Property CategoryCode As String
Valid Classes: icClassProjectComponent
Type:
Return Value:
Returns the Icarus category code associated with the project component.
Example Code:
Dim sPropertyCode as String
Dim Area as ICAPILIB.ICObject
Dim ProjComps as ICAPILIB.ICObjects
Dim Equip as ICAPILIB.ICObject
Dim nPumps as Single
Dim nResponse as Integer
(Not listed: The code for opening the Icarus system, the project or the area.)
If Area.Open Then
nPumps = 0
Set ProjComps = Area.ProjectComponents
Set Equip = New ICAPILIB.ICObject
For each Equip in ProjComps
sPropertyCode = Equip.CategoryCode
If sPropertyCode = DCP then nPumps = nPumps +1
Next
nResponse = Msgbox(There are, nPumps, centrifugal pumps., vbOKOnly)
End if
ClassId
Property ClassId As Long
Valid Classes:
Type:
Remarks:
Returns the class identifier associated with this object. The value is of the
enumeration type icObjectClass.
37
Commit
Function Commit( ) As Long
Valid Classes: All icObjectClass values
Type:
Method
Return Value:
TRUE if the object was successfully saved in IPOD so that the data can be used later
by Icarus system tasks. Otherwise, the return value is FALSE.
Remarks:
Connect
Function Connect (bstrConnectorName, pvntTargetObject,
bstrTargetConnectorName, nConnectionType) As Long
Valid Classes:
icClassProjectComponent
Type:
Method
Return Value:
TRUE if a connection were made between the Target Object and the object.
Currently, only available for nConnectionType = icConnectionStream.
ConnectedObjects
Property ConnectedObjects([vtConnectType], [vtDirection], [vtFunction]) As
Object
Valid Classes:
icClassProjectComponent
Type:
Property
Return Value:
38
Create
Function Create([pvtName], [pvtClassId], [pvtParent], [pvtModel]) As Long
Valid Classes: All icObjectClass values except icClassStreamPremap and icClassStreamSimulator.
Type:
Method
Return Value:
TRUE if the object named pvtName of class pvtClassId was successfully created in
IPOD, FALSE if it could not be created. pvtParent object will depend on pvtClassId
(see table below). The pvtModel must be used for project components only and must
be a valid Icarus model. Important Note: When specifying the pvtModel, you must
use the items equivalent reference name from the back of this book. Some model
names begin with either a D or an E, which is dropped when displayed in ITS. If you
find that you are unable to create or open a piece of equipment, check that the model
name matches the model name given in the back of this documentation.
Parent object
SimCase object
SimCase object
SimCase object
Project object
icObject of class icClassProjectArea or Area object (future)
Project object
Project object
icObject of class icClassFlowsheetArea
Code Example
Dim Equip as ICAPILIB.ICObject
Dim nClass as ICAPILIB.icObjectClass
Dim bRet as Boolean
Set Equip = New ICAPILIB.ICObject
(Code for opening the project and an area whose variable name is HX_Area)
nClass = icClassProjectComponent
bRet = Equip.Create(HX, nClass, HX_Area, DHE FLOAT-HEAD)
(Remaining code for defining the heat exchanger)
bRet = Equip.Commit
39
Delete
Function Delete( ) As Long
Valid Classes: All icObjectClass values except icClassStreamPremap and icClassStreamSimulator.
Type:
Method
Return Value:
TRUE if the object was successfully deleted from IPOD, FALSE if it could not be
deleted.
Code example
Dim Equip as ICAPILIB.ICObject
Dim bRet as Boolean
Dim Area as ICAPILIB.ICObject
Dim ProjComp as ICAPILIB.ICObject
Dim ProjComponents as ICAPILIB.ICObjects
(Code for opening Icarus, a project and an area)
Rem
Get all components in the Area.
Set ProjComponents = Area.ProjectComponents
Rem
Look in Area for floating head heat exchangers. Delete them if found.
For Each ProjComp in ProjComponents
If ProjComp.Model = DHE FLOAT-HEAD then
bRet = ProjComp.Delete
End If
Next
(Remaining code for program)
DeleteAttribute
Sub DeleteAttribute ( bstrAttribute As String)
Valid Classes: All icObjectClass values
Type:
Method
Remarks:
This function will delete an attribute that is, a variable that can be set for this
object from IPOD.
40
DeleteRelation
Function DeleteRelation ( nRelation As Long, [pvntRelatedObject]) As Long
Valid Classes: All icObjectClass values
Type:
Method
Return Value:
TRUE if the objects relationship to another IPOD object was deleted. Otherwise, the
return value is FALSE.
Remarks:
This function will delete an existing relationship to the specified IPOD object. If no
relative is specified, all relations of the specified type will be deleted.
Code Example
Dim ExistingProject as ICAPILIB.Project
Dim ProjComp as ICAPILIB.ICObject
Dim bRet as Boolean
Dim Process as ICAPILIB.ICObject
Dim Offsites as ICAPILIB.ICObject
Dim ProjComponents as ICAPILIB.ICObjects
Dim nClass as icObjectClass
(Code for opening the Icarus system and the ExistingProject project which contains two areas. One
area is called Process and the other area is called Offsites. The program has already determined
that these two areas exist.)
nClass = icClassProjectArea
Set Process = New ICAPILIB.ICObject
Set Offsites = New ICAPILIB.ICObject
bRet = Process.Open(Process, nClass, ExistingProject)
bRet = Offsites.Open(Offsites, nClass, ExistingProject)
Set ProjComp as New ICAPILIB.ICObject
Set ProjComponents = Process.ProjectComponents
For Each ProjComp in ProjComponents
If ProjComp.Model = DVT STORAGE then
Rem Move the storage tank out of the Process Area
bRet = ProjComp.DeleteRelation(icRelationPartOf, Process)
Rem Move the storage tank in to the Offsites Area
Set Offsites = ProjComp.Relatives(icRelationPartOf, True)
End If
Next
(Remaining code for program)
41
Disconnect
Function Disconnect(bstrConnectorName As String, nConnectionType As Long) As
Long
Valid Classes:
icClassProjectComponent
Type:
Method
Return Value:
TRUE if the Target Object and the object the disconnect method is used on were
disconnected. Currently, only available for nConnectionType = icConnectionStream.
Edit
Function Edit() As Long
Valid Classes: IcClassGeneralDesignCriteria, IcClassGeneralStandardBasis,
IcClassInvestmentParameters, IcClassOperatingCostParameters,
IcClassUtilityResources, IcClassProductSpecs, IcClassRawMaterialSpecs,
icClassProjectComponent
Type:
Method
Return Value: TRUE if the GUI is closed and the information is saved in the IPOD.
Remarks:
This method calls the GUI for a valid object of the above classes.
42
Evaluate
Function Evaluate(bstrReportFile As String, [pvtFatalCount], [pvtErrorCount],
[pvtWarningCount]) As Long
Type:
Method
TRUE if the project object was successfully evaluated for errors and no fatal errors
were found. Otherwise, the return value is FALSE.
Remarks:
This function will evaluate only the current project component. If successful, the
results are reported in the file bstrReportFile. If the project could not be evaluated, or
if a fatal error is encountered the function will return FALSE. If valid integer
pointers are passed for the pvtFatalCount, pvtErrorCount and pvtWarningCount
parameters, the number of fatal errors, errors and warnings are reported back. If there
are any evaluation messages, they can be find in a file with the base name of
bstrReportFile and file extension of MG1. This file can be found in the
C:\Icarus\ic_cache\projects\Sample Project directory (assuming the system was
installed on the C: drive and the name of the currently opened project is sample
project.
Reports must be named *.ccp for ICedit32 to open.
Notes:
This function also updates the direct costs associated with the current project
component. This cost can be queried by checking the value of the Direct costs
attribute. This reflects the total installed cost for the component.
IsValid
Property IsValid As Boolean
Valid Classes: All icObjectClass values
Type:
43
ItemCode
Property ItemCode As String
Valid Classes: icClassProjectComponent
Type:
Return Value:
Returns the Icarus item type code associated with the project component.
Code Example
Dim ProjComp as ICAPILIB.ICObject
Dim ProjComponents as ICAPILIB.ICObjects
Dim bRet as Boolean
Dim nClass as icObjectClass
Dim strItemCode as String
(Code for opening the Icarus system, a project and an area.)
Set ProjComp as New ICAPILIB.ICObject
Set ProjComponents = Area.ProjectComponents
For Each ProjComp in ProjComponents
Rem Check the item code
strItemCode = ProjComp.ItemCode
If ItemCode = FLOAT-HEAD
MsgBox Youve found a floating head heat exchanger!
End If
Next
(Remaining code for program)
Model
Property Model As String
Valid Classes: icClassProjectComponent and icClassUnitOperation.
Type:
Return Value:
For icClassProjectComponent objects this property returns the Icarus code associated
with the project component. For icClassUnitOperation objects this method returns
the simulator model.
Read/Write Property
Return Value:
This property gets and sets the display name used with the Icarus systems.
44
ObjectName
Property ObjectName As String
Valid Classes: All icObjectClass values
Type:
Return Value:
This property gets the internal object name by which this item is identified in IPOD.
When getting the command line via the Custom Task in ITS, the name of the object
that is returned is the ObjectName, not the Name.
Open
Function Open([pvtSystem], [pvtClassId], [pvtParent], [pvtModel]) As Long
Valid Classes: All icObjectClass values.
Type:
Method
Return Value:
TRUE if the object of the specified class was successfully opened from IPOD,
FALSE if it could not be opened. The pvtModel can be used for project components
only. It should only be used when the object name is not known but the model and
object names suffix is known. Important Note: When specifying the pvtModel, you
must use the items equivalent reference name from the back of this book. Some
model names begin with either a D or an E, which is dropped when displayed in ITS.
If you find that you are unable to create or open a piece of equipment, check that the
model name matches the model name given in the back of this documentation.
Parent object
SimCase object
icObject of class icClassProjectComponent
icObject of class icClassProjectComponent
icObject of class icClassProjectComponent
icObject of class icClassProjectComponent
icObject of class icClassProjectComponent
icObject of class icClassProjectComponent
icObject of class icClassProjectComponent
icObject of class icClassProjectComponent
icObject of class icClassProjectComponent
icObject of class icClassProjectComponent
icObject of class icClassProjectComponent
icObject of class icClassProjectComponent
icObject of class icClassProjectComponent
icObject of class icClassProjectComponent
icObject of class icClassProjectComponent
icObject of class icClassProjectComponent
icObject of class icClassProjectComponent
icObject of class icClassProjectComponent
45
Class Identifier
icClassInstrumentSignalLine
icClassPipingLine
icClassPipingLineFitting
icClassPipingLineSegment
icClassPipingLineValve
icClassPipingLink
icClassPipingLogicalLine
icClassProcessStream
icClassProcessStreamIcarus
icClassProjectArea
icClassProjectComponent
icClassStreamPremap
icClassStreamSimulator
icClassStreamUser
icClassStreamUtility
icClassUnitOperation
Parent object
icObject of class icClassProjectComponent
icObject of class icClassProjectArea
icObject of class icClassProjectArea
icObject of class icClassProjectArea
icObject of class icClassProjectArea
icObject of class icClassProjectArea
icObject of class icClassProjectArea
SimCase object
SimCase object
Project object
icObject of class icClassProjectArea OR
Project object
Project object
Project object
Project object
Project object
icObject of class icClassFlowsheetArea OR
SimCase object
Project
Property Project As Object
Valid Classes: All icObjectClass values
Type:
Remarks:
ProjectComponents
Property ProjectComponents As Object
Valid Classes: icClassProjectArea
Type:
Return Value:
This property gets all the project components contained in this project area. The
project components are returned as a collection in an ICObjects object.
Relatives
Property Relatives (nRelation As Long, [vntInfo]) As Object
Icarus Technology Application Programming Interface Reference
AspenTech Copyright
July 2010 Version V7.2
46
Read/Write property
Return Value:
Remarks:
This property queries the existing relationships of the current IPOD object and
returns a list of the related IPOD objects. If vntInfo is set to a valid icObjectClass
value, only relatives of the specified class are returned.
This property will add a new relationship to the specified IPOD object name.
nRelation specifies the type of relation. If vntInfo is TRUE this relationship will
replace any other existing relationship of this exact type. Otherwise, this relationship
will be appended to the end of the list of current relationships. The default behavior
is to not delete any existing relations.
ResultAttributes
Property ResultAttributes As Object
Valid Classes: icClassProjectComponent
Type:
Return Value:
If the query is successful, an array of slot names (also known attributes) are returned.
Remarks:
This function queries the results database to find all components result names.
ResultValue
Property ResultValue (bstrSlotName As String, [pvntEnteredValue]) As Object
Valid Classes: icClassProjectComponent
Type:
Return Value:
If the query is successful, the value used for costing is returned as a Slot Object.
Remarks:
This function queries the results database to find the value for a particular slot as it
appears in the DESIGN relation in the results. The bstrSlotName parameter specifies
the slot name. A value specified by the user can be obtained in pvntEnteredValue.
See Also Icarus Reference Chapter 35 "Database Relations".
Note that if you query a result slot name that has duplicate names (e.g. for nozzles),
then the system will crash. This is currently slated for a fix.
ScenarioName
Property ScenarioName As String
Valid Classes: All icObjectClass values
Type:
47
UnitOperations
Property UnitOperations As Object
Valid Classes: icClassFlowsheetArea
Type:
Return Value:
This property gets all the unit operations contained in this flowsheet area. The unit
operations are returned as a collection in an ICObjects object.
UserInstance
Property UserInstance As Long
Valid Classes: All icObjectClass values
Type:
Remarks:
Will be used in the future for tracking users changes. Currently, not active.
Value
Property Value(bstrSlotName As String) As Object
Valid Classes: All icObjectClass values
Type:
Return Value:
If the objects attribute bstrSlotName exists, its value is retrieved and returned as a
Slot object.
ValueWithConversion
Property ValueWithConversion (bstrSlotName As String, bstrSrcUnits As String)
Valid Classes: All icObjectClass values
Type:
Return Value:
This property is saved to the database after converting the specified value from
bstrSrcUnits to the required internal units in the database.
Remarks:
Please refer to the section on Units of Measure Symbol List in this document. (To
use this function, the currently opened project must have already loaded the units
of measure by using the .LoadUnits function.)
ValueWithInheritance
Property ValueWithInheritance (bstrSlotName As String)
Valid Classes: All icObjectClass values
Type:
Return Value:
If the objects attribute bstrSlotName exists, its value is retrieved and returned as a
Slot object. If the specified attribute is not found in the current object, the simulator
stream from which the object was created will be searched.
48
ICObjects Object
Description
This object is a collection for the ICObject objects. The default member is the Item
method.
Methods
Add, Item
Properties
Property
Count
Data Type
Long
Read/Write attribute
Read Only
Detailed Reference
Count
Property Count As Long
Type:
Item
Function Item(vtIndex)
Type:
Remarks:
This function returns a member of the collection. The index can be a number or an
object name.
49
Project Object
Description
This object allows the user to create and manipulate project information in the
IPOD database. The public members of this object allow the user to perform Icarus
system tasks on the complete project.
Methods
CloseResults, Evaluate, EvaluateInvestmentAnalysis, EvaluateOperatingCosts,
ExportSpreadsheets, LoadResults, LoadUnits, Open, OpenResults, Save, Scan,
UnloadUnits
Properties
Property
Areas
IsResultLoaded
IsUnitsLoaded
IsValid
Results
ScenarioName
SimCase
Streams
System
UserInstance
Data Type
Object
Long
Long
Boolean
Object
Object
Object
Object
Object
Long
Read/Write attribute
Read Only
Read Only
Read Only
Read Only
Read Only
Read Only
Read Only
Read Only
Read Only
Read Only
Detailed Reference
Areas
Property Areas As Object
Type:
CloseResults
Function CloseResults( ) As Long
Type:
Method
Return Value:
TRUE if a connection to the results database was successfully closed. Otherwise, the
return value is FALSE.
Remarks:
50
Evaluate
Function Evaluate(bstrReportFile As String, [pvtFatalCount], [pvtErrorCount],
[pvtWarningCount]) As Long
Type:
Method
Return Value:
TRUE if the project was successfully evaluated for errors and no fatal errors were
found. Otherwise, the return value is FALSE.
Remarks:
This function will evaluate the project including all project areas and components in
the current project. If successful, the results are reported in the file bstrReportFile. If
the project could not be evaluated, or if a fatal error is encountered the function will
return FALSE. In the pvtFatalCount, pvtErrorCount and pvtWarningCount
parameters, the number of fatal errors, errors and warnings are reported back. If there
are any evaluation messages, they can be find in a file with the base name of
bstrReportFile and file extension of MG1. This file can be found in the
C:\Icarus\ic_cache\projects\Sample Project directory (assuming the system was
installed on the C: drive and the name of the currently opened project is sample
project.
EvaluateInvestmentAnalysis
Function EvaluateInvestmentAnalysis As Long
Type:
Method
Return Value:
TRUE if the investment analysis was successfully completed. Otherwise, the return
value is FALSE.
Remarks:
This function will evaluate and update the investment analysis for the current project.
The standard Icarus spreadsheets are updated to reflect these costs and are
automatically exported to an ASCII format. See the remarks for the
ExportSpreadsheets method.
EvaluateOperatingCosts
Function EvaluateOperatingCosts ( ) As Long
Type:
Method
Return Value:
TRUE if the operating costs were successfully evaluated. Otherwise, the return value
is FALSE.
Remarks:
This function will evaluate the operating costs. The standard Icarus spreadsheets are
updated to reflect these costs and are automatically exported to an ASCII format. See
the remarks for the ExportSpreadsheets method.
ExportSpreadsheets
Function ExportSpreadsheets ( ) As Long
Type:
Method
Return Value:
Remarks:
This function will export all the standard Icarus spreadsheets into an ASCII delimited
text format. After the export is completed the generated files will have the .txt
51
IsUnitsLoaded
Property IsUnitsLoaded As Long
Type:
IsValid
Property IsValid As Boolean
Type:
LoadResults
Function LoadResults([pvtDBName]) As Long
Return Value:
TRUE if the results database could was successfully loaded. Otherwise, the return
value is FALSE.
Remarks:
This function then loads the design and cost evaluation results, if they have not
already been loaded. A connection to the results database is opened. The pvtDBName
provides a way of loading a results database other than the default database.
Note:
When the connection to the results database is no longer required, the connection to
the results database should be closed.
LoadUnits
Function LoadUnits( ) As Long
Return Value:
TRUE if the units of measure information for the current project was successfully
loaded into memory, FALSE if it could not been loaded.
Remarks:
Any Project and ICObject object can have certain tasks performed on it. Many of
these tasks require that the units of measure information for the current project be
loaded into memory, before they are invoked.
Open
Function Open([pvtUserInstance], [pvtProjectName], [pvtScenarioName]) As Long
Return Value:
TRUE if the project was successfully opened. Otherwise, the return value is FALSE.
Remarks:
52
OpenResults
Function OpenResults([pvtDBName]) As Long
Return Value:
Remarks:
This function opens a connection to the results database. The database should already
have been loaded. The pvtDBName provides a way of opening a connection to a
results database other than the default database.
Note:
When the connection to the results database is no longer required, the connection to
the results database should be closed.
Results
Property Results As Result Object
Type:
Save
Function Save() As Long
Type:
Method
Return Value: TRUE if the project was successfully saved to the archive folder.
Remarks:
The project will be saved in the archive folder under the current scenario.
Scan
Function Scan(bstrReportFile As String, [pvtFatalCount], [pvtErrorCount],
[pvtWarningCount]) As Long
Return Value:
TRUE if the project was successfully scanned for errors and no fatal errors were
found. Otherwise, the return value is FALSE.
Remarks:
This function will scan the project including all project areas and components in the
current project for errors and warnings, which are reported in the bstrReportFile file.
In the pvtFatalCount, pvtErrorCount and pvtWarningCount parameters, the number
of fatal errors, errors and warnings are reported back. If there are any evaluation
messages, they can be find in a file with the base name of bstrReportFile and file
extension of MG1. This file can be found in the
C:\Icarus\ic_cache\projects\Sample Project directory (assuming the system was
installed on the C: drive and the name of the currently opened project is sample
project.
ScenarioName
Property ScenarioName As String
Type:
SimCase
53
Streams
Property Streams([vtStreamClassId]) As Object
Type:
System
Property System As Object
Type:
UnloadUnits
Function UnloadUnits() As Long
Return Value:
TRUE if units of measure information for the current project was successfully
unloaded from memory, FALSE if it could not be unloaded.
Remarks:
See remarks for method LoadUnits. To optimize memory usage, you should unload
the units of measure information when it is not required.
UserInstance
Property UserInstance As Long
Type:
54
Result Object
Description
This object allows a user to connect to the results database. It provides an interface
for loading and querying the results database.
Methods
Close, Load, Open
Properties
Property
ComponentAttributes
ComponentValue
IsLoaded
IsValid
Project
Value
ValueFromIndirects
ValueInCashFlow
ValueInSpreadsheetCell
Data Type
Object
Long
Object
Long
Object
Object
Object
Object
Object
Read/Write attribute
Read Only
Read Only
Read Only
Read Only
Read Only
Read Only
Read Only
Read Only
Read Only
Detailed Reference
Close
Function Close( ) As Long
Type:
Method.
Return Value:
TRUE if a connection to the results database was successfully closed. Otherwise, the
return value is FALSE.
Remarks:
ComponentAttributes
Property ComponentAttributes(bstrObjectName As String) As Object
Type:
Return Value:
55
ComponentValue
Property ComponentValue(bstrObjectName As String, bstrSlotName As String,
[pvntEnteredValue]) As Object
Type:
Return Value:
If the query is successful, the value used for costing is returned as a Slot Object.
Remarks:
This function queries the results database to find the value for a particular slot as it
appears in the DESIGN relation in the results. The bstrObjectName parameter
specifies the project component to be queried. The bstrSlotName parameter specifies
the slot name. A value specified by the user can be obtained in pvntEnteredValue.
See Also Icarus Reference Chapter 35 "Database Relations".
IsLoaded
Property IsLoaded As Long
Type:
IsValid
Property IsValid As Long
Type:
Return Value:
Returns TRUE if the object was constructed and a connection to the output database
was opened successfully. Otherwise, the return value is FALSE.
Load
Function Load( ) As Long
Type:
Method.
Return Value:
TRUE if the results database could was successfully loaded. Otherwise, the return
value is FALSE.
Remarks:
This function then loads the design and cost evaluation results, if they have not
already been loaded. A connection to the results database is opened.
Note:
When the connection to the results database is no longer required, the connection to
the results database should be closed.
56
Open
Function Open( ) As Long
Type:
Method.
Return Value:
Remarks:
This function opens a connection to the results database. The database should already
have been loaded.
Note:
When the connection to the results database is no longer required, the connection to
the results database should be closed.
Project
Property Project As Object
Type:
Value
Property Value(bstrSlotName As String, [pvntEnteredValue]) As Object
Type:
Return Value:
Remarks:
This function queries the results database to find the value for a particular slot
relating to the overall project information. The bstrSlotName parameter specifies the
slot name. A value specified by the user can be obtained in pvntEnteredValue.
ValueFromIndirects
Property ValueFromIndirects (nContractNum As Long, bstrSlotName As String,
[pvntAmount]) As Object
Type:
Return Value:
Remarks:
This function queries the results database to find the value for the slot bstrSlotName
and the contractor nContractorNum. The indirects cost data (data not directly related
to equipment) in the results database is searched. The amount is returned via the
pvntAmount parameter.
ValueInCashFlow
Property ValueInCashFlow (bstrSlotName As String, nPeriod As Long) As Object
Type:
Return Value:
Remarks:
This function queries the results database to find the value for a particular slot in the
cashflow spreadsheet. The bstrSlotName parameter specifies the slot name, while the
nPeriod parameter specifies the period.
ValueInSpreadsheetCell
Icarus Technology Application Programming Interface Reference
AspenTech Copyright
July 2010 Version V7.2
57
Return Value:
Remarks:
This function will query the results database to find the value contained in the
spreadsheet bstrSpreadsheet (it can be one of the following: equip, projsum, or
cashflow). The cell is specified via the row nRow and the column bstrColumn.
58
SimCase Object
Description
This object allows the user to create and manipulate simulator information in IPOD.
Methods
Open
Properties
Property
FlowsheetAreas
IsValid
Project
SimulatorType
Streams
Data Type
Object
Long
Object
Integer
Object
Read/Write attribute
Read Only
Read Only
Read Only
Read Only
Read Only
Detailed Reference
FlowsheetAreas
Property FlowsheetAreas As Object
Type:
Return Value:
IsValid
Property IsValid As Long
Type:
Open
Function Open( ) As Long
Type:
Method
Return Value:
TRUE if the simulation case in the project was successfully opened. Otherwise, the
return value is FALSE. If the project does not contain any simulator information the
return value is FALSE.
Remarks:
You can use this method to open the simulation case in an existing project.
Project
Property Project As Object
Type:
59
SimulatorType
Property SimulatorType As Integer
Type:
Streams
Property Streams ( [vtStreamClassId] ) As Object
Type:
60
Slot Object
Description
This is a utility object in memory which allows the user to store attribute values of
any format. The default member is the Value property.
Methods
Clear, ConvertValue, ValueInUnits
Properties
Property
HasUnits
IsList
IsNumeric
IsText
IsValid
Units
Value
ValueAsArray
Data Type
Long
Long
Long
Long
Long
String
Variant
Variant
Read/Write attribute
Read Only
Read Only
Read Only
Read Only
Read Only
Read/Write
Read/Write
Read Only
Detailed Reference
Clear
Sub Clear( )
Type:
Method
Remarks:
ConvertValue
Sub ConvertValue(nVal As Double, pszSrcUnits As String)
Type:
Remarks:
Method
This method changes the contents of the slot it is called from. The nVal value is
converted from the specified source units, pszSrcUnits, to the internal units of the
current slot. This method does not change the actual units represented inside the
slot object nor does it make any changes in IPOD. Important note: For this
method to operate correctly, there must already be a value for this slot in IPOD.
To use a more general function (one that does not require a value to be in IPOD
for this conversion to work), use the ICObjects ValueWithConversion. (To use
this function, the currently opened project must have already loaded the units of
measure by using the .LoadUnits function.)
61
HasUnits
Property HasUnits ( ) As Long
Type:
IsList
Property IsList ( ) As Long
Type:
IsNumeric
Property IsNumeric ( ) As Long
Type:
IsText
Property IsText ( ) As Long
Type:
IsValid
Property IsText ( ) As String
Type:
Units
Property Units ( ) As String
Type:
Read/Write Property
Value
Property Value ( ) As Variant
Type:
62
ValueInUnits
Function ValueInUnits(pszDesiredUnits As String) As Variant
Type:
Method
Return Value: Returns a variant containing the value of the Slot object after conversion from the
internal units of the Slot object to the desired units specified, pszDesiredUnits.
Remarks:
This method does not change the actual units represented inside the slot
object nor does it make changes to the value stored in the Slot object.
Upon failure of the units conversion, the value returned is simply the same
value as what the Value property would return. See Chapter 29 of the
Icarus Reference for valid internal units. (To use this function, the
currently opened project must have already loaded the units of measure by
using the .LoadUnits function.)
ValueAsArray
Property ValueAsArray ( ) As Variant
Type:
63
System Object
Description
The System object is used to initialize and terminate the Icarus Technology API. It
allows the user to login to API and to begin a session.
Methods
Initialize, Login, Terminate
Properties
Property
Project
UserInstance
Data Type
Object
Long
Read/Write attribute
Read Only
Read Only
Detailed Reference
Initialize
Function Initialize( ) As Long
Type:
Method
Return Value:
TRUE if the Icarus Technology API environment was initialized. Otherwise, the
return value is FALSE.
Remarks:
This function initializes the Icarus Technology API environment and prepares the
system for use of the other objects.
Login
Function Login(bstrUserName As String, pnUserInstance As Long) As Long
Type:
Method
Return Value:
TRUE if the user was successfully logged in. Otherwise, the return value is FALSE.
Remarks:
Project
Property Project(bstrProjectName As String) As Object
Type:
64
Terminate
Function Terminate( ) As Long
Type:
Method
Return Value:
TRUE if the Icarus Technology API environment was terminated. Otherwise, the
return value is FALSE.
Remarks:
UserInstance
Property UserInstance As Long
Type:
Remarks:
This property assigns a number to each person who logs into the system. This will be
used in the future to track users action and changes. It is not currently active,
although it will return a variable.
65
What is COM?
COM stands for Component Object Model. API objects have been created using the COM standard which
standardizes how these objects are built, what interfaces e.g. methods and properties the objects have,
how they are deleted, etc. A full description would be filled with lots of programming jargon, so in lieu of
that, we describe it as being the standard which was used in building the APIs objects.
I created an area and then a pump. I tried evaluating the pump, but it either doesnt return a value
or it returns what I know is a wrong value. Whats happening?
Check your code to see if you have committed the area after creating it and then the pump after finishing
the changes to it. These are the most common errors that are made that cause what you are experiencing.
Well, I did that and it still is giving me a wrong answer.
Does your code check to see whether the input is within the range for all inputs? This may be the source of
your problem. Another way to check is to code in a scan to see if there are any fatal errors, other errors
or warnings. You can also include code in the evaluate so that the program returns any of these three
types of errors. Finally, you can check to see if the item or project is being evaluated, by checking the
boolean return value, e.g.
Dim bRet as Boolean
Dim nFatal as Single
Dim nError as Single
Dim nWarn as Single
Dim HX as ICAPI.ICObject In this case, were going to say that it is a heat exchanger
(Here will be the programming for opening the Icarus system, the project, the area and creating, specifying
and committing the HX object)
bRet = HX.Evaluate(Cost.txt, nFatal, nError, nWarn)
(where Cost.txt is the item report, nFatal is the number of fatal errors, nError is the number of other
errors, and nWarn is the number of warnings.)
If bRet AND (nFatal + nError + nWarn) < 1 then
(continue with program)
Else
MsgBox Theres a problem with the specification!
End If
Given the Project Component, how do I get its simulator information?
66
Get the Project Components simulator object name using the Type attribute, then open up the Projects
SimCase and open the component using the object name that you just got. Example for getting a heat
exchangers duty:
Dim ProjectSimCase as ICAPILIB.SimCase
Dim SimCaseUnitOp as ICAPILIB.ICObject
Dim MyEquip as ICAPILIB.ICObject
Rem MyEquip is a Heat Exchanger. This would be noted in the ObjectName.
Dim ndDuty as Long
Dim ndDutyUnits as String
Dim szType as String
Dim EquipObjectName as String
Rem Put code for starting the system and opening the project. This assumes that you already know
Rem the equipment ObjectName.
nClass = icClassProjectComponent
Set MyEquip = New ICAPILIB.ICObject
bRet = MyEquip.Open(EquipObjectName, nClass, MyProject)
szType = MyEquip.Value("Type")
Set ProjectSimCase = MyProject.SimCase
bRet = ProjectSimCase.Open
If bRet then
Set SimCaseUnitOp = New ICAPILIB.ICObject
nClass = icClassUnitOperation
bRet = SimCaseUnitOp.Open(szType,nClass,ProjectSimCase)
Set CurSlot = SimCaseUnitOp.Value("DUTY (sim)")
ndDuty = CurSlot.Value
ndDutyUnits = CurSlot.Units
Rem Delete the following message box after you confirm that you
Rem are retrieving the duty.
msgbox ndDuty & ndDutyUnits
end if
67
The following lists the units of measure symbols used in Icarus Kbase systems for two categories of units:
"IP" indicating the inch-pound set of units and
"Metric"indicating the Metric set of units.
************************************************************
------------------------ Angular - IP
DEGREE
------------------------ Angular - Metric
DEGREE
************************************************************
------------------------ Area - IP
SY
SF
------------------------ Area - Metric
M2
************************************************************
------------------------ Electrical - IP
KV
V
KVA
W
KA
A
KW
------------------------ Electrical - Metric
KV
V
KVA
W
KA
A
KW
68
************************************************************
------------------------ Flow Rates - IP
TPD
CFH
LB/H
GPH
CFM/SF
GPM
TPH
CFM
------------------------ Flow Rates - Metric
M3/H
TON/H
KG/H
M3/H/M2
L/S
************************************************************
------------------------ Length - IP
FEET
MESH
INCHES
MILES
------------------------ Length - Metric
M
KM
MM
MESH
************************************************************
------------------------ Mass - IP
TONS
LBS
------------------------ Mass - Metric
TON
KG
************************************************************
------------------------ Mass per Length - IP
LB/YD
LB/FT
69
70
KM/H
M/H
HZ
RPM
************************************************************
------------------------ Viscosity - IP
CSTOKE
CPOISE
------------------------ Viscosity - Metric
MPA-S
MM2/S
************************************************************
------------------------ Volume - IP
GALLONS
BARRELS
CY
BAGS
BDFT
CF
------------------------ Volume - Metric
M3
BAG-50KG
71
************************************************************
------------------------ Miscellaneous - IP
IN WALL
SF/CF
BTU/LBMOL/DEG F
USD/MMBTU
USD/HR
/UNIT
/HR
/SHIFT
USD/MLB
USD/UNIT
PERCENT/YR
BTU
KY
PS
USD
CF/LBMOL
NO/CF/SEC
NO/FT/CF
BTU/LBMOL
FT/LB
CF/SEC2
LBMOL/MIN
LBMOL/S
LBMOL/H
LBMOL
POISE
STOKE
FT MHOLE
FT HT
FT DP
FT WD
FT LG
FT DIA
IN WL
IN HT
IN SZ
IN WD
IN DP
IN TH
IN LG
IN DIA
PAIR
BAYS
Icarus Technology Application Programming Interface Reference
AspenTech Copyright
July 2010 Version V7.2
72
EACH
FLOORS
LOOP(S)
ITEM(S)
STAGES
CIRCUITS
SPACES
CLASS
SECTION
CUTS
AWG
MCM
BWG
GAGE
PERCENT
BTU/H/FT/DEG F
BTU/H/SF/DEG F
BTU/H/DEG F
BTU/LB/DEG F
DYNES/CM
SFPS
LB-FT/S
MVA
LB/FT/H
LB/S
LB
CFS
FPS
FPH
IN DIAM
IN THK
FT
ATM
BAR
PSIA
DAY
HOUR
MINUTE
SECOND
INCH For nominal pipe size
DEG R
DEG K
DEG C
Other
------------------------ Miscellaneous - Metric
MM WALL
M2/M3
KJ/KGMOL/DEG K
USD/KJ
USD/HR
/UNIT
/HR
/SHIFT
USD/KG
USD/UNIT
Icarus Technology Application Programming Interface Reference
AspenTech Copyright
July 2010 Version V7.2
73
PERCENT/YR
J
KY
PS
USD
M3/KGMOL
NO/L/SEC
NO/M3/SEC
NO/M/M3
KJ/KGMOL
M/KG
M3/SEC2
KGMOL/MIN
KGMOL/S
KGMOL/H
KGMOL
M MHOLE
M HT
M DP
M WD
M LG
M DIA
MM WL
MM HT
MM SZ
MM WD
MM DP
MM TH
MM LG
MM DIA
BAYS
PAIR
EACH
FLOORS
LOOP(S)
ITEM(S)
STAGES
CIRCUITS
SPACES
CLASS
SECTION
CUTS
AWG
MCM
BWG
GAGE
PERCENT
CAL/CM2/S/DEG K
W/M2/DEG C
W/M/DEG K
CAL/CM/S/DEG K
CAL/H/DEG C
CAL/G/DEG K
J/KG/DEG C
CAL/GM
MVA
Icarus Technology Application Programming Interface Reference
AspenTech Copyright
July 2010 Version V7.2
74
KG/M/H
N/M
GM/CC
KG/H
KG/S
M3/MIN
M/S
L
CC
MM THK
MM DIAM
ATM
DEG R
DEG K
DEG F
DAY
HOUR
MINUTE
SECOND
PSIG
PSIA
Other
75
Reference
NOTICE
The information in this document is believed to be accurate in all respects.
However, AspenTech cannot assume responsibility for any consequences
resulting from the use thereof. Information in this document is subject to
change without notice and does not represent a commitment on the part of
AspenTech.
Table of Contents
Overview ....................................................................................................................................... 4
Icarus Project Components Objects ..................................................................................... 6
Process Stream Object ......................................................................................................... 222
Installation Bulk Items........................................................................................................... 223
Unit Operations Objects ....................................................................................................... 230
OBJECTS CREATED FROM ASPENTECHS SIMULATION RESULTS ..............................................................230
OBJECTS CREATED FROM SIMSCIS SIMULATION RESULTS ......................................................................240
OBJECTS CREATED FROM HYPROTECHS SIMULATION RESULTS..............................................................248
Overview
This document contains the definitions of various objects used in Aspen-Icarus systems. The
objects relating to a project are contained in the Icarus Project Object Database (IPOD).
A project database of an Aspen-Icarus system contains all the information pertaining to the
project. It is an object-oriented database. The information includes:
-
The Application Programming Interface (API) of IPOD allows a developer (who may also be
a user of the Icarus software) to interact with IPOD programmatically. IPOD API allows the
user to create a project, add areas to the project, add project components and set parameters
of the project components, etc.
This reference lists library of objects and related slots pertaining to:
Icarus Project Components
Process Streams
Unit Operations
As an example, consider an object representing a floating-head heat exchanger in the IPOD:
(please see next page.)
DEG F
CpDesignGaugePressureShell : 350,
PSIG
CpDesignTemperatureTube : 600,
DEG F
CpTubeDesignGaugePressure : 350,
PSIG
CpUserTag : E-101 Effluent Exchanger
CpHeatTransferArea : 7550,
SF
CpTubeSheetMaterial : A213C
CpNumberShells : 1
Each Object contains an object name, and a number of slots (attributes) made up of slot
names (attribute names) and slot values (attribute values). For example, the object above has
a slot called Equipment tag number whose slot value is E-101 Effluent Exchanger.
A slot may have one or more components. For instance, the heat exchanger object above
also has a slot called Surface area whose numeric value is 7550 and whose units value is SF.
In the text/ASCII representation of the object as shown above, the second slot value is placed
on the line immediately following the first slot value separated by a comma.
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Concrete type
Excavation slope
Footing depth
Foundation excavation type
Imported backfill
Miscellaneous concrete allowance
Pile compressive capacity
Pile design requirement
Pile driven depth
Pile shear capacity
Pile spacing
Pile tensile capacity
Pile type
Seal slab option
Soil density
Soil loading
Soil type
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Design allowance
Diameter option
Weld efficiency
Rotating equipment spares
Design deflection
Stress relief option
Wind design required
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Area height
Area length
Area type
Area width
Bay length
Bay width
Beam option
Bracing option
Casing side relief devices
ArColumnOption
ArDistributedLoadPerLevel
ArFlooringAreaPercent
ArHeightBottomBox
ArHeightOfModule1
ArHeightOfModule2
ArHeightOfModule3
ArHeightOfModule4
ArHighAmbientTemperature
ArImpactLoadHeightDirectionPercent
ArImpactLoadLengthDirectionPercent
ArImpactLoadWidthDirectionPercent
ArInstallCongestionAdjustment
ArLengthOfModule1
ArLengthOfModule2
ArLengthOfModule3
ArLengthOfModule4
ArLowAmbientTemperature
ArModuleBendForElbow
ArModuleBranchForTee
ArModuleInsulationType
ArModuleType
ArNumberFloorLevels
ArNumberOfLevelsModule1
ArNumberOfLevelsModule2
ArNumberOfLevelsModule3
ArNumberOfLevelsModule4
ArNumberOfModulesInArea
ArNumberStairways
ArPaintSidingSelection
ArPaintStructureSelection
ArRailShippingCostPerTon
ArSettingLaborPerTon
ArShippingTotalCost
ArShipShippingCostPerTon
ArSidingAreaPercent
ArSidingType
ArSlabThickness
ArSpecialShippingCost
ArStackedBoxOption
ArStackedOptionModule1
ArStackedOptionModule3
ArStructureCostPerTon
ArStructureTotalCost
ArStructureWeight
ArTruckShippingCostPerTon
ArWidthOfModule1
ArWidthOfModule2
ArWidthOfModule3
ArWidthOfModule4
Object: Area Paint
ArCarbonSteelEquipmentFinishCoats
ArCarbonSteelEquipmentPrimerCoats
ArEquipmentFinishCoatOption
ArEquipmentPrimerCoatOption
ArOtherEquipmentFinishCoats
ArStructuralSteelFinishCoatOption
ArStructuralSteelFinishCoats
ArStructuralSteelPrimerCoatOption
ArStructuralSteelPrimerCoats
CpSubcontractSelection
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Column option
Distributed load per level
Flooring - percent of area
Height of bottom box
Height of module 1
Height of module 2
Height of module 3
Height of module 4
High ambient temperature
Height direction
Length direction
Width direction
Install congestion adjustment
Length of module 1
Length of module 2
Length of module 3
Length of module 4
Low ambient temperature
Bend for elbow
Branch for tee
Insulation type
Module type
Number of floor levels
Number of levels for module 1
Number of levels for module 2
Number of levels for module 3
Number of levels for module 4
Number of modules
Number of stairways
Paint siding option
Paint structure option
Rail shipping cost per ton
Setting labor per ton
Total shipping cost
Ship shipping cost per ton
Siding - percent of wall area
Siding type
Slab thickness
Special shipping cost
Stacked box option
Stacked option for module 1
Stacked option for module 3
Structure cost per ton
Total cost of structure
Structure weight
Truck shipping cost per ton
Width of module 1
Width of module 2
Width of module 3
Width of module 4
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Chemical sewer
Control valve sizing option
Cooling water supply and return
Firewater loop and lateral
Flare header
Fuel gas
Heat tracing fluid medium
High pressure steam
Inert gas
Instrument air
Low pressure steam
Maximum pipe length
Medium pressure steam
Paint finish coat option
Paint primer coat option
Personnel protection
Pipe envelope height
Pipe envelope length
Pipe envelope width
Pipe fabrication type
Pipe length adjustment
Plant air
Potable water
Tracing tube material
Utility length parameter
Utility stations
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Area height
Area length
Area type
Area width
Bay length
Bay width
Distributed load per level
Flooring - percent of area
High ambient temperature
Low ambient temperature
Number of floor levels
Number of stairways
Siding - percent of wall area
Siding type
Slab thickness
:
:
:
:
:
:
:
:
:
:
:
:
Grating type
Number of catwalks on rack
Number of ladders on rack
Number of pipe rack levels
Pipe rack bent spacing
Pipe rack catwalk width
Distributed load
Pipe rack height
Pipe rack length
Pipe rack width
Platform width
Steel finish type
: Sub-area number
ArAreaSubAreaTitle
ArAreaWBSCode
ArReportGroupNumber
ArReportGroupTitle
ArScheduleAreaNumber
CsContractorSetNumber
:
:
:
:
:
:
Object: BC ABVGR-TANK
CpComponentWBS
CpFluidDensity
CpInsideDepth
CpInsideLengthDiameter
CpInsideWidth
CpItemDescription
CpNumberItems
CpRemarks1
CpRemarks2
CpShapeSymbol
CpSoilLoadCapacity
CpSoilType
CpThicknessFoundation
CpUserTag
CpWallThicknessBottom
CpWallThicknessTop
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Fluid density
Inside depth
Inside length or diameter
Inside width
Item description
Number of identical items
Remarks 1
Remarks 2
Shape symbol
Soil load capacity
Soil type
Foundation thickness
User tag number
Wall thickness Bottom
Wall thickness Top
Object: BC BELGR-TANK
CpComponentWBS
CpFluidDensity
CpHeightAboveGround
CpInsideDepth
CpInsideLengthDiameter
CpInsideWidth
CpItemDescription
CpNumberItems
CpRemarks1
CpRemarks2
CpShapeSymbol
CpSoilLoadCapacity
CpSoilType
CpThicknessFoundation
CpUserTag
CpWallThicknessBottom
CpWallThicknessTop
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Fluid density
Height above ground
Inside depth
Inside length or diameter
Inside width
Item description
Number of identical items
Remarks 1
Remarks 2
Shape symbol
Soil load capacity
Soil type
Foundation thickness
User tag number
Wall thickness Bottom
Wall thickness Top
Object: BC BUILDING
CpAirConditioningCostUnitArea
CpBuildersWorkCostUnitArea
CpBuildingHeight
CpBuildingLength
CpBuildingType
CpBuildingWidth
CpCeilingFinishesCostUnitArea
CpComponentWBS
CpCostAdjustmentSymbol
CpElectricalLoadPerArea
CpExplosionGaugePressure
CpExteriorDoorWindowCostUnitArea
CpExteriorWallCostUnitArea
CpFireProtectionCostUnitArea
CpFloorCostUnitArea
CpFloorFinishesCostUnitArea
CpFoundationType
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
10
CpFrameCostUnitArea
:
CpGrossFloorArea
:
CpHeatingVentilationCostUnitArea
:
CpInteriorDoorWindowCostUnitArea
:
CpItemDescription
:
CpLaborAdjustmentYN
:
CpLiftInstallationCostUnitArea
:
CpLightingElectricalCostUnitArea
:
CpNumberItems
:
CpNumberLevels
:
CpOverheadProfitCostUnitArea
:
CpPlumbingFixturesCostUnitArea
:
CpRemarks1
:
CpRemarks2
:
CpRoofCostUnitArea
:
CpRoofType
:
CpSecurityCommunicationCostUnitArea:
CpSpecialInstallationCostUnitArea :
CpStairCostUnitArea
:
CpTotalFittingFurnishCostUnitArea :
CpTotalInteriorFinishCostUnitArea :
CpTotalServicesCostUnitArea
:
CpTotalSubStructureCostUnitArea
:
CpTotalSuperStructureCostUnitArea :
CpUserTag
:
CpWallFinishesCostUnitArea
:
Frame cost
Gross floor area
Heating and ventilation cost
Interior door and window cost
Item description
Labor adjustment required
Lift installation cost
Lighting and electrical cost
Number of identical items
Number of levels
Overhead and Profit
Plumbing and fixtures cost
Remarks 1
Remarks 2
Roof cost
Roof type
Security and communication cost
Special installation cost
Stair cost
Total fittings and furnish cost
Total interior finish cost
Total services cost
Total substructure cost
Total superstructure cost
User tag number
Wall finishes cost
Object: BC CONCRETE
CpAnchorsEmbedmentsWeight
CpComponentWBS
CpConcreteQuantity
CpExcavationQuantity
CpFormworkQuantity
CpFoundationType
CpGroutQuantity
CpItemDescription
CpMembraneThickness
CpNumberItems
CpRebarQuantity
CpRemarks1
CpRemarks2
CpSealcoatLinerArea
CpSealcoatLinerType
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Object: BC CONTAINMNT
CpComponentWBS
CpItemDescription
CpNumberItems
CpNumberStairways
CpPavingArea
CpPavingDepth
CpRemarks1
CpRemarks2
CpSealcoatOption
CpUserTag
CpWallHeight
CpWallLength
CpWallThickness
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Number of identical items
Number of stairways
Paving area
Depth of paving
Remarks 1
Remarks 2
Sealcoat option
User tag number
Wall height
Wall length
Wall thickness
Object: BC DIKE-MEMBR
CpComponentWBS
: Component WBS
11
CpContainedDepth
CpContainedLength
CpContainedWidth
CpFillUnitCost
CpImportedFillDepth
CpItemDescription
CpMembraneLinerType
CpMembraneThickness
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Contained depth
Contained length
Contained width
Unit cost of fill
Imported fill depth
Item description
Membrane liner type
Membrane thickness
Number of identical items
Remarks 1
Remarks 2
User tag number
Object: BC HDPE-PIPE
CpComponentWBS
CpConfiguration
CpDepthBuriedPipe
CpDesignGaugePressure
CpDesignTemperature
CpItemDescription
CpNumberBlinds
CpNumberElbows
CpNumberItems
CpNumberReducers
CpNumberTees
CpNumberWyes
CpPipeDiameter
CpPipeLength
CpRemarks1
CpRemarks2
CpStandardDiameterRatio
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Configuration
Depth buried pipe
Design gauge pressure
Design temperature
Item description
Number of blinds
Number of elbows
Number of identical items
Number of reducers
Number of tees
Number of wyes
Pipe diameter
Pipe length
Remarks 1
Remarks 2
Standard Diameter Ratio (SDR)
User tag number
Object: BC LINING
CpComponentWBS
CpItemDescription
CpLiningAdjustment
CpLiningArea
CpMaterial
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Lining adjustment
Lining area
Material
Number of identical items
Remarks 1
Remarks 2
User tag number
Object: BC PIPE
CpComponentWBS
CpControlValveMinimumClass
CpControlValveReduction
CpCustomPipeSpec
CpDepthBuriedPipe
CpDesignGaugePressure
CpDesignTemperature
CpETraceCableType
CpETraceMaintenanceTemperature
CpFittingRulesYN
CpFluidDensity
CpFluidPhase
CpFluidViscosity
CpGasFlowrate
CpHeatTraceFluid
CpHorizontalAllowancePercent
CpItemDescription
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Control valve minimum class
Control valve reduced size
Custom pipe spec
Depth buried pipe
Design gauge pressure
Design temperature
E-trace cable type
E-trace maintenance temperature
Fitting rules application
Fluid density
Fluid phase
Fluid viscosity
Gas flow rate
Heat trace fluid
Horizontal allowance
Item description
12
CpLiquidFlowrate
CpNumberItems
CpNumberWelds
CpOperatingTemperature
CpPersonnelProtectionPercent
CpPipeBendForElbow
CpPipeBranchForTee
CpPipeConnectionType
CpPipeDiameter
CpPipeFlangeClass
CpPipeFlangeType
CpPipeInstallationOption
CpPipeInsulationJacketType
CpPipeInsulationThickness
CpPipeInsulationType
CpPipeLength
CpPipeMaterial
CpPipeNumberFinishCoats
CpPipeNumberPrimeCoats
CpPipeRoutingType
CpPipeSandblastAreaPercent
CpPipeScheduleGage
CpPipeThickness
CpPipeType
CpPrimaryEquipmentConnection
CpPrimaryEquipmentUserTag
CpRemarks1
CpRemarks2
CpSecondaryEquipmentConnection
CpSecondaryEquipmentUserTag
CpSpecialPipeDescription
CpSteamGaugePressure
CpStressRelief
CpUserTag
CpValveFittingsAQuantity
CpValveFittingsAType
CpValveFittingsBQuantity
CpValveFittingsBType
CpValveFittingsCQuantity
CpValveFittingsCType
CpValveFittingsDQuantity
CpValveFittingsDType
CpValveFittingsEQuantity
CpValveFittingsEType
CpValveFittingsFQuantity
CpValveFittingsFType
CpValveFittingsGQuantity
CpValveFittingsGType
CpValveFittingsHQuantity
CpValveFittingsHType
CpValveFittingsIQuantity
CpValveFittingsIType
CpValveFittingsJQuantity
CpValveFittingsJType
CpValvePackingSeal
CpValveRulesYN
CpVerticalAllowancePercent
CpWeldXrayPercent
Object: BC PIPE-RACK
CpAirCoolerLoading
CpBeamColumnMinimumWidth
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
13
CpCatwalkWidth
CpColumnBaseOption
CpComponentWBS
CpConcreteType
CpDistributedLoadPerLevel
CpExcludeEndBentYN
CpGratingType
CpHeight
CpHeightToFirstLevel
CpItemDescription
CpLength
CpMainBentSpacing
CpNumberBeamStrutsPerColumnLine
CpNumberBeamStrutsPerPipeLevel
CpNumberBracedBays
CpNumberCatwalks
CpNumberItems
CpNumberLadders
CpNumberLevels
CpNumberStairways
CpPipeRackType
CpRemarks1
CpRemarks2
CpSeismicForceAdjustment
CpStructuralSteelAnalysisType
CpThirdColumnYN
CpUserTag
CpWidth
CpWindForceAdjustment
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Catwalk width
Column base option
Component WBS
Concrete type
Distributed load per level
Exclude end bent
Grating type
Height
Height to 1st level
Item description
Length
Main bent spacing
Beam struts per column line
Beam struts per pipe level
Number of braced bays
Number of catwalks
Number of identical items
Number of ladders
Number of levels
Number of stairways
Pipe rack type
Remarks 1
Remarks 2
Seismic force adjustment
Structural steel analysis
Third column option
User tag number
Width
Wind force adjustment
Object: BC PIPE-SUPPT
CpComponentWBS
CpHeight
CpItemDescription
CpNumberItems
CpRemarks1
CpRemarks2
CpSectionWeightPerUnitLength
CpSupportType
CpUserTag
CpWidth
:
:
:
:
:
:
:
:
:
:
Component WBS
Height
Item description
Number of identical items
Remarks 1
Remarks 2
Section weight per unit length
Support type
User tag number
Width
Object: BC RCON-PIPE
CpComponentWBS
CpConcretePipeDiameter
CpItemDescription
CpMaterial
CpNumberElbows
CpNumberItems
CpNumberManholes
CpNumberTees
CpPipeLength
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Concrete pipe diameter
Item description
Material
Number of elbows
Number of identical items
Number of manholes
Number of tees
Pipe length
Remarks 1
Remarks 2
User tag number
Object: BC SCAFFOLD
CpComponentWBS
CpHeight
CpItemDescription
CpLength
CpNumberItems
:
:
:
:
:
Component WBS
Height
Item description
Length
Number of identical items
14
CpPlankingArea
CpRemarks1
CpRemarks2
CpUserTag
CpWidth
:
:
:
:
:
Planking area
Remarks 1
Remarks 2
User tag number
Width
Object: BC TRENCH
CpAverageInvertDepth
CpComponentWBS
CpItemDescription
CpLength
CpNumberItems
CpRemarks1
CpRemarks2
CpTrenchWidth
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Configuration
Control valve minimum class
Control valve reduced size
Custom pipe spec
Depth buried pipe
Design gauge pressure
Design temperature
E-trace maintenance temperature
Flange class
Item description
Number of angle valves
Number of ball valves
Number of blinds
Number of butterfly valves
Number of check valves
Number of control valves
Number of elbows
Number of flanges
Number of gate valves
Number of globe valves
Number of identical items
Number of knife gate valves
Number of orifice plates
Number of plug valves
Number of reducers
Number of regulating valves
Number of safety valves
Number of spectacle blinds
Number of tees
Number of threadolets
Personnel protection
Pipe diameter
Pipe length
Pipe material
Pipe schedule or gauge
Pipe thickness
Remarks 1
Remarks 2
Special pipe description
Steam gauge pressure
User tag number
Weld Xray
15
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Fluid density
Inside depth
Inside length or diameter
Inside width
Item description
Number of identical items
Remarks 1
Remarks 2
Shape symbol
Soil load capacity
Soil type
Foundation thickness
User tag number
Wall thickness Bottom
Wall thickness Top
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Fluid density
Height above ground
Inside depth
Inside length or diameter
Inside width
Item description
Number of identical items
Remarks 1
Remarks 2
Shape symbol
Soil load capacity
Soil type
Foundation thickness
User tag number
Wall thickness Bottom
Wall thickness Top
Object: BCIVBUILDING
CpAirConditioningCostUnitArea
CpBuildersWorkCostUnitArea
CpBuildingHeight
CpBuildingLength
CpBuildingType
CpBuildingWidth
CpCeilingFinishesCostUnitArea
CpComponentWBS
CpCostAdjustmentSymbol
CpElectricalLoadPerArea
CpExplosionGaugePressure
CpExteriorDoorWindowCostUnitArea
CpExteriorWallCostUnitArea
CpFireProtectionCostUnitArea
CpFloorCostUnitArea
CpFloorFinishesCostUnitArea
CpFoundationType
CpFrameCostUnitArea
CpGrossFloorArea
CpHeatingVentilationCostUnitArea
CpInteriorDoorWindowCostUnitArea
CpItemDescription
CpLaborAdjustmentYN
CpLiftInstallationCostUnitArea
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
16
CpLightingElectricalCostUnitArea
:
CpNumberItems
:
CpNumberLevels
:
CpOverheadProfitCostUnitArea
:
CpPlumbingFixturesCostUnitArea
:
CpRemarks1
:
CpRemarks2
:
CpRoofCostUnitArea
:
CpRoofType
:
CpSecurityCommunicationCostUnitArea:
CpSpecialInstallationCostUnitArea :
CpStairCostUnitArea
:
CpTotalFittingFurnishCostUnitArea :
CpTotalInteriorFinishCostUnitArea :
CpTotalServicesCostUnitArea
:
CpTotalSubStructureCostUnitArea
:
CpTotalSuperStructureCostUnitArea :
CpUserTag
:
CpWallFinishesCostUnitArea
:
Object: BCIVCONCRETE
CpAnchorsEmbedmentsWeight
CpComponentWBS
CpConcreteQuantity
CpExcavationQuantity
CpFormworkQuantity
CpFoundationType
CpGroutQuantity
CpItemDescription
CpMembraneThickness
CpNumberItems
CpRebarQuantity
CpRemarks1
CpRemarks2
CpSealcoatLinerArea
CpSealcoatLinerType
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Object: BCIVCONTAINMNT
CpComponentWBS
CpItemDescription
CpNumberItems
CpNumberStairways
CpPavingArea
CpPavingDepth
CpRemarks1
CpRemarks2
CpSealcoatOption
CpUserTag
CpWallHeight
CpWallLength
CpWallThickness
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Number of identical items
Number of stairways
Paving area
Depth of paving
Remarks 1
Remarks 2
Sealcoat option
User tag number
Wall height
Wall length
Wall thickness
:
:
:
:
:
:
:
:
Component WBS
Contained depth
Contained length
Contained width
Unit cost of fill
Imported fill depth
Item description
Membrane liner type
17
CpMembraneThickness
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
Membrane thickness
Number of identical items
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Configuration
Depth buried pipe
Design gauge pressure
Design temperature
Item description
Number of blinds
Number of elbows
Number of identical items
Number of reducers
Number of tees
Number of wyes
Pipe diameter
Pipe length
Remarks 1
Remarks 2
Standard Diameter Ratio (SDR)
User tag number
Object: BCIVLINING
CpComponentWBS
CpItemDescription
CpLiningAdjustment
CpLiningArea
CpMaterial
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Lining adjustment
Lining area
Material
Number of identical items
Remarks 1
Remarks 2
User tag number
Object: BCIVPIPE
CpComponentWBS
CpControlValveMinimumClass
CpControlValveReduction
CpCustomPipeSpec
CpDepthBuriedPipe
CpDesignGaugePressure
CpDesignTemperature
CpETraceCableType
CpETraceMaintenanceTemperature
CpFittingRulesYN
CpFluidDensity
CpFluidPhase
CpFluidViscosity
CpGasFlowrate
CpHeatTraceFluid
CpHorizontalAllowancePercent
CpItemDescription
CpLiquidFlowrate
CpNumberItems
CpNumberWelds
CpOperatingTemperature
CpPersonnelProtectionPercent
CpPipeBendForElbow
CpPipeBranchForTee
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Control valve minimum class
Control valve reduced size
Custom pipe spec
Depth buried pipe
Design gauge pressure
Design temperature
E-trace cable type
E-trace maintenance temperature
Fitting rules application
Fluid density
Fluid phase
Fluid viscosity
Gas flow rate
Heat trace fluid
Horizontal allowance
Item description
Liquid flow rate
Number of identical items
Number of welds
Operating temperature
Personnel protection
Bend for elbow
Branch for tee
18
CpPipeConnectionType
CpPipeDiameter
CpPipeFlangeClass
CpPipeFlangeType
CpPipeInstallationOption
CpPipeInsulationJacketType
CpPipeInsulationThickness
CpPipeInsulationType
CpPipeLength
CpPipeMaterial
CpPipeNumberFinishCoats
CpPipeNumberPrimeCoats
CpPipeRoutingType
CpPipeSandblastAreaPercent
CpPipeScheduleGage
CpPipeThickness
CpPipeType
CpPrimaryEquipmentConnection
CpPrimaryEquipmentUserTag
CpRemarks1
CpRemarks2
CpSecondaryEquipmentConnection
CpSecondaryEquipmentUserTag
CpSpecialPipeDescription
CpSteamGaugePressure
CpStressRelief
CpUserTag
CpValveFittingsAQuantity
CpValveFittingsAType
CpValveFittingsBQuantity
CpValveFittingsBType
CpValveFittingsCQuantity
CpValveFittingsCType
CpValveFittingsDQuantity
CpValveFittingsDType
CpValveFittingsEQuantity
CpValveFittingsEType
CpValveFittingsFQuantity
CpValveFittingsFType
CpValveFittingsGQuantity
CpValveFittingsGType
CpValveFittingsHQuantity
CpValveFittingsHType
CpValveFittingsIQuantity
CpValveFittingsIType
CpValveFittingsJQuantity
CpValveFittingsJType
CpValvePackingSeal
CpValveRulesYN
CpVerticalAllowancePercent
CpWeldXrayPercent
Object: BCIVPIPE RACK
CpAirCoolerLoading
CpBeamColumnMinimumWidth
CpCatwalkWidth
CpColumnBaseOption
CpComponentWBS
CpConcreteType
CpDistributedLoadPerLevel
CpExcludeEndBentYN
CpGratingType
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
19
CpHeight
CpHeightToFirstLevel
CpItemDescription
CpLength
CpMainBentSpacing
CpNumberBeamStrutsPerColumnLine
CpNumberBeamStrutsPerPipeLevel
CpNumberBracedBays
CpNumberCatwalks
CpNumberItems
CpNumberLadders
CpNumberLevels
CpNumberStairways
CpPipeRackType
CpRemarks1
CpRemarks2
CpSeismicForceAdjustment
CpStructuralSteelAnalysisType
CpThirdColumnYN
CpUserTag
CpWidth
CpWindForceAdjustment
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Height
Height to 1st level
Item description
Length
Main bent spacing
Beam struts per column line
Beam struts per pipe level
Number of braced bays
Number of catwalks
Number of identical items
Number of ladders
Number of levels
Number of stairways
Pipe rack type
Remarks 1
Remarks 2
Seismic force adjustment
Structural steel analysis
Third column option
User tag number
Width
Wind force adjustment
:
:
:
:
:
:
:
:
:
:
Component WBS
Height
Item description
Number of identical items
Remarks 1
Remarks 2
Section weight per unit length
Support type
User tag number
Width
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Concrete pipe diameter
Item description
Material
Number of elbows
Number of identical items
Number of manholes
Number of tees
Pipe length
Remarks 1
Remarks 2
User tag number
Object: BCIVSCAFFOLD
CpComponentWBS
CpHeight
CpItemDescription
CpLength
CpNumberItems
CpPlankingArea
CpRemarks1
CpRemarks2
CpUserTag
CpWidth
:
:
:
:
:
:
:
:
:
:
Component WBS
Height
Item description
Length
Number of identical items
Planking area
Remarks 1
Remarks 2
User tag number
Width
Object: BCIVTRENCH
20
CpAverageInvertDepth
CpComponentWBS
CpItemDescription
CpLength
CpNumberItems
CpRemarks1
CpRemarks2
CpTrenchWidth
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Configuration
Control valve minimum class
Control valve reduced size
Custom pipe spec
Depth buried pipe
Design gauge pressure
Design temperature
E-trace maintenance temperature
Flange class
Item description
Number of angle valves
Number of ball valves
Number of blinds
Number of butterfly valves
Number of check valves
Number of control valves
Number of elbows
Number of flanges
Number of gate valves
Number of globe valves
Number of identical items
Number of knife gate valves
Number of orifice plates
Number of plug valves
Number of reducers
Number of regulating valves
Number of safety valves
Number of spectacle blinds
Number of tees
Number of threadolets
Personnel protection
Pipe diameter
Pipe length
Pipe material
Pipe schedule or gauge
Pipe thickness
Remarks 1
Remarks 2
Special pipe description
Steam gauge pressure
User tag number
Weld Xray
Object: BE AC-DC-TRAN
CpComponentWBS
CpItemDescription
CpNumberItems
CpRatingAmpereHour
CpRemarks1
CpRemarks2
:
:
:
:
:
:
Component WBS
Item description
Number of identical items
Rating (ampere-hour)
Remarks 1
Remarks 2
21
CpUserTag
Object: BE AREA-LIGHT
CpCablePlacement
CpCableSize
CpComponentWBS
CpElectricalCableLength
CpElectricalCableType
CpFixtureType
CpItemDescription
CpNumberItems
CpNumberLights
CpNumberPoles
CpNumberReceptaclesGeneral
CpNumberWeldReceptacles
CpPoleHeight
CpPowerPerLight
CpRemarks1
CpRemarks2
CpSupportType
CpUserTag
CpWiringSystemType
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Cable placement
Cable size
Component WBS
Electrical cable length
Electrical cable type
Fixture type
Item description
Number of identical items
Number of lights
Number of poles
Number of general receptacles
Number of weld receptacles
Pole height
Power per light
Remarks 1
Remarks 2
Support type
User tag number
Wiring system
Object: BE BREAKER
CpBreakerLocation
CpCircuitBreakerType
CpComponentWBS
CpContinuousCurrent
CpInterruptCapacity
CpItemDescription
CpNumberItems
CpRatedVoltage
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Breaker location
Circuit breaker type
Component WBS
Continuous current
Interrupt capacity
Item description
Number of identical items
Rated voltage
Remarks 1
Remarks 2
User tag number
Object: BE BUS-DUCT
CpComponentWBS
CpContinuousCurrent
CpItemDescription
CpLength
CpNumberElbows
CpNumberItems
CpRatedVoltage
CpRemarks1
CpRemarks2
CpTerminationType
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Continuous current
Item description
Length
Number of elbows
Number of identical items
Rated voltage
Remarks 1
Remarks 2
Termination type
User tag number
:
:
:
:
:
:
:
:
:
:
Buried depth
Cable duct type
Cable duct width
Component WBS
Duct length
Item description
Number of identical items
Remarks 1
Remarks 2
User tag number
Object: BE
CONDUIT
22
CpComponentWBS
CpConduitDiameter
CpItemDescription
CpLength
CpMaterial
CpNumberConduitSeals
CpNumberElbows
CpNumberFittings
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Conduit diameter
Item description
Length
Material
Number of conduit seals
Number of elbows
Number of fittings
Number of identical items
Remarks 1
Remarks 2
User tag number
Object: BE CTRL-CABLE
CpCableSize
CpComponentWBS
CpConduitMaterial
CpItemDescription
CpLengthCable
CpMaterial
CpNumberConductors
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Cable size
Component WBS
Conduit material
Item description
Length of cable run
Material
Number of conductors
Number of identical items
Remarks 1
Remarks 2
User tag number
Object: BE DEEP-ANODE
CpAnodeCapacity
CpAnodeDepth
CpComponentWBS
CpItemDescription
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
CpWellCasingSymbol
:
:
:
:
:
:
:
:
:
Anode capacity
Anode depth
Component WBS
Item description
Number of identical items
Remarks 1
Remarks 2
User tag number
Well casing symbol
Object: BE DISCNCT-SW
CpComponentWBS
CpItemDescription
CpNumberItems
CpRatedVoltageKV
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
Component WBS
Item description
Number of identical items
Rated voltage
Remarks 1
Remarks 2
User tag number
Object: BE ELEC-CABLE
CpCableSize
CpComponentWBS
CpConduitMaterial
CpItemDescription
CpLengthCable
CpMaterial
CpNumberItems
CpRatedVoltage
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Cable size
Component WBS
Conduit material
Item description
Length of cable run
Material
Number of identical items
Rated voltage
Remarks 1
Remarks 2
User tag number
Object: BE ELEC-TRAY
CpComponentWBS
CpItemDescription
: Component WBS
: Item description
23
CpLength
CpMaterial
CpNumber90Bends
CpNumberItems
CpRemarks1
CpRemarks2
CpTrayType
CpTrayWidth
CpUserTag
:
:
:
:
:
:
:
:
:
Length
Material
Number of 90 degree bends
Number of identical items
Remarks 1
Remarks 2
Tray type
Tray width
User tag number
Object: BE EM-PWR-SET
CpComponentWBS
CpItemDescription
CpNumberItems
CpPowerOutputKVA
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
Component WBS
Item description
Number of identical items
Power output
Remarks 1
Remarks 2
User tag number
Object: BE EMER-LIGHT
CpComponentWBS
CpItemDescription
CpLightType
CpNumberItems
CpNumberLightBulbs
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
Component WBS
Item description
Light type
Number of identical items
Number of light bulbs
Remarks 1
Remarks 2
User tag number
Object: BE EQPT-TRACE
CpComponentWBS
CpDistanceToPanel
CpHeatingCableType
CpItemDescription
CpLength
CpNumberItems
CpNumberThermostats
CpRemarks1
CpRemarks2
CpThermostatType
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Distance to panel
Heating cable type
Item description
Length
Number of identical items
Number of thermostats
Remarks 1
Remarks 2
Thermostat control
User tag number
Object: BE GALV-ANODE
CpCableLengthPerRun
CpComponentWBS
CpItemDescription
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
Object: BE GRND-GRID
CpCableSize
CpComponentWBS
CpGridCableLength
CpGroundRodType
CpItemDescription
CpNumberGroundRods
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
Cable size
Component WBS
Grid cable length
Ground rod type
Item description
Number of ground rods
Number of identical items
Remarks 1
Remarks 2
User tag number
24
Object: BE MCC
CpComponentWBS
CpDriverPower
CpItemDescription
CpMCCType
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
CpVoltageRange
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Item description
MCC Type
Number of identical items
Remarks 1
Remarks 2
User tag number
Voltage range
Object: BE OIL-C-BRKR
CpComponentWBS
CpContinuousCurrent
CpItemDescription
CpNumberItems
CpRatedVoltageKV
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
Component WBS
Continuous current
Item description
Number of identical items
Rated voltage
Remarks 1
Remarks 2
User tag number
Object: BE PF-CORRECT
CpCapacityKVAR
CpComponentWBS
CpItemDescription
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
CpVoltageRange
:
:
:
:
:
:
:
:
Capacity (KVAR)
Component WBS
Item description
Number of identical items
Remarks 1
Remarks 2
User tag number
Voltage range
Object: BE PIPE-TRACE
CpComponentWBS
CpDistanceToPanel
CpETraceMaintenanceTemperature
CpHeatingCableType
CpItemDescription
CpNumberItems
CpNumberThermostats
CpRemarks1
CpRemarks2
CpThermostatType
CpTracedPipeDiameter
CpTracedPipeLength
CpTracerCableLength
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Distance to panel
E-trace maintenance temperature
Heating cable type
Item description
Number of identical items
Number of thermostats
Remarks 1
Remarks 2
Thermostat control
Traced pipe diameter
Traced pipe length
Length of tracer cable
User tag number
Object: BE PKG-TRANSF
CpComponentWBS
CpItemDescription
CpNumberItems
CpNumberPhases
CpRatedLoad
CpRemarks1
CpRemarks2
CpTransformerPrimaryVoltage
CpTransformerSecondaryVoltage
CpUserTag
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Number of identical items
Number of phases
Rated load
Remarks 1
Remarks 2
Transformer primary voltage
Transformer Secondary voltage
User tag number
Object: BE POLE-LINE
CpComponentWBS
: Component WBS
25
CpItemDescription
CpLength
CpNumberItems
CpNumberPoles
CpRatedVoltageKV
CpRemarks1
CpRemarks2
CpTotalLoadKVA
CpUserTag
CpWireSize
:
:
:
:
:
:
:
:
:
:
Item description
Length
Number of identical items
Number of poles
Rated voltage
Remarks 1
Remarks 2
Total load
User tag number
Wire size
Object: BE POT-TEST
CpComponentWBS
CpItemDescription
CpNumberItems
CpNumberTestStations
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
Component WBS
Item description
Number of identical items
Number of test stations
Remarks 1
Remarks 2
User tag number
Object: BE RECTIFIER
CpAnodeCapacity
CpCableLengthPerRun
CpComponentWBS
CpItemDescription
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
Anode capacity
Length per cable run
Component WBS
Item description
Number of identical items
Remarks 1
Remarks 2
User tag number
Object: BE SOLAR-PANL
CpCableLengthPerRun
CpComponentWBS
CpItemDescription
CpNumberItems
CpNumberPanelsPerItem
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
Object: BE SUBSTN-STL
CpComponentWBS
CpItemDescription
CpNumberItems
CpRemarks1
CpRemarks2
CpSteelWeight
CpUserTag
:
:
:
:
:
:
:
Component WBS
Item description
Number of identical items
Remarks 1
Remarks 2
Steel weight
User tag number
Object: BE SURF-ANODE
CpAnodeType
CpComponentWBS
CpItemDescription
CpNumberAnodesPerBed
CpNumberItems
CpRemarks1
CpRemarks2
CpSpacing
CpUserTag
:
:
:
:
:
:
:
:
:
Type of anode
Component WBS
Item description
Number of anodes per bed
Number of identical items
Remarks 1
Remarks 2
Spacing
User tag number
Object: BE SWITCH-BRD
CpComponentWBS
: Component WBS
26
CpContinuousCurrent
CpItemDescription
CpNumberItems
CpRatedVoltageKV
CpRemarks1
CpRemarks2
CpShortCircuitCurrent
CpSwitchBoardType
CpUserTag
:
:
:
:
:
:
:
:
:
Continuous current
Item description
Number of identical items
Rated voltage
Remarks 1
Remarks 2
Short circuit current
Switchboard type
User tag number
Object: BE TRANSFORM
CpComponentWBS
CpItemDescription
CpNumberItems
CpRatedLoad
CpRemarks1
CpRemarks2
CpTransformerPrimaryVoltage
CpTransformerSecondaryVoltage1
CpTransformerSecondaryVoltage2
CpTransformerType
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Number of identical items
Rated load
Remarks 1
Remarks 2
Transformer primary voltage
Secondary voltage 1st Tap
Secondary voltage 2nd Tap
Transformer type
User tag number
Object: BE UPS
CpComponentWBS
CpItemDescription
CpNumberItems
CpRatedLoad
CpRemarks1
CpRemarks2
CpUPSType
CpUserTag
:
:
:
:
:
:
:
:
Component WBS
Item description
Number of identical items
Rated load
Remarks 1
Remarks 2
UPS type
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Cable placement
Cable size
Component WBS
Electrical cable length
Electrical cable type
Fixture type
Item description
Number of identical items
Number of lights
Number of poles
Number of general receptacles
Number of weld receptacles
Pole height
Power per light
Remarks 1
Remarks 2
Support type
User tag number
Wiring system
:
:
:
:
:
:
:
Buried depth
Cable duct type
Cable duct width
Component WBS
Duct length
Item description
Number of identical items
27
CpRemarks1
CpRemarks2
CpUserTag
: Remarks 1
: Remarks 2
: User tag number
Object: BELCCONDUIT
CpComponentWBS
CpConduitDiameter
CpItemDescription
CpLength
CpMaterial
CpNumberConduitSeals
CpNumberElbows
CpNumberFittings
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Conduit diameter
Item description
Length
Material
Number of conduit seals
Number of elbows
Number of fittings
Number of identical items
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
:
:
Cable size
Component WBS
Conduit material
Item description
Length of cable run
Material
Number of conductors
Number of identical items
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
Anode capacity
Anode depth
Component WBS
Item description
Number of identical items
Remarks 1
Remarks 2
User tag number
Well casing symbol
:
:
:
:
:
:
:
:
:
:
:
Cable size
Component WBS
Conduit material
Item description
Length of cable run
Material
Number of identical items
Rated voltage
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
Component WBS
Item description
Length
Material
Number of 90 degree bends
Number of identical items
28
CpRemarks1
CpRemarks2
CpTrayType
CpTrayWidth
CpUserTag
:
:
:
:
:
Remarks 1
Remarks 2
Tray type
Tray width
User tag number
:
:
:
:
:
:
:
:
Component WBS
Item description
Light type
Number of identical items
Number of light bulbs
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Distance to panel
Heating cable type
Item description
Length
Number of identical items
Number of thermostats
Remarks 1
Remarks 2
Thermostat control
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Cable size
Component WBS
Grid cable length
Ground rod type
Item description
Number of ground rods
Number of identical items
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Distance to panel
E-trace maintenance temperature
Heating cable type
Item description
Number of identical items
Number of thermostats
Remarks 1
Remarks 2
Thermostat control
Traced pipe diameter
29
CpTracedPipeLength
CpTracerCableLength
CpUserTag
:
:
:
:
:
:
:
Component WBS
Item description
Number of identical items
Number of test stations
Remarks 1
Remarks 2
User tag number
Object: BELCRECTIFIER
CpAnodeCapacity
CpCableLengthPerRun
CpComponentWBS
CpItemDescription
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
Anode capacity
Length per cable run
Component WBS
Item description
Number of identical items
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Type of anode
Component WBS
Item description
Number of anodes per bed
Number of identical items
Remarks 1
Remarks 2
Spacing
User tag number
:
:
:
:
:
:
:
Component WBS
Item description
Number of identical items
Rating (ampere-hour)
Remarks 1
Remarks 2
User tag number
Object: BELSBREAKER
CpBreakerLocation
CpCircuitBreakerType
CpComponentWBS
CpContinuousCurrent
CpInterruptCapacity
CpItemDescription
CpNumberItems
CpRatedVoltage
:
:
:
:
:
:
:
:
Breaker location
Circuit breaker type
Component WBS
Continuous current
Interrupt capacity
Item description
Number of identical items
Rated voltage
30
CpRemarks1
CpRemarks2
CpUserTag
: Remarks 1
: Remarks 2
: User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Continuous current
Item description
Length
Number of elbows
Number of identical items
Rated voltage
Remarks 1
Remarks 2
Termination type
User tag number
Object: BELSDISCNCT SW
CpComponentWBS
CpItemDescription
CpNumberItems
CpRatedVoltageKV
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
Component WBS
Item description
Number of identical items
Rated voltage
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
Component WBS
Item description
Number of identical items
Power output
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
Component WBS
Item description
Number of identical items
Number of terminations
Remarks 1
Remarks 2
User tag number
Object: BELSMCC
CpComponentWBS
CpDriverPower
CpItemDescription
CpMCCType
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
CpVoltageRange
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Item description
MCC Type
Number of identical items
Remarks 1
Remarks 2
User tag number
Voltage range
:
:
:
:
:
:
Component WBS
Item description
Number of identical items
Remarks 1
Remarks 2
Surface area
31
CpUserTag
:
:
:
:
:
:
:
:
Component WBS
Continuous current
Item description
Number of identical items
Rated voltage
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
Capacity (KVAR)
Component WBS
Item description
Number of identical items
Remarks 1
Remarks 2
User tag number
Voltage range
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Number of identical items
Number of phases
Rated load
Remarks 1
Remarks 2
Transformer primary voltage
Transformer Secondary voltage
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Length
Number of identical items
Number of poles
Rated voltage
Remarks 1
Remarks 2
Total load
User tag number
Wire size
:
:
:
:
:
:
:
Component WBS
Item description
Number of identical items
Remarks 1
Remarks 2
Steel weight
User tag number
:
:
:
:
:
Component WBS
Continuous current
Item description
Number of identical items
Rated voltage
32
CpRemarks1
CpRemarks2
CpShortCircuitCurrent
CpSwitchBoardType
CpUserTag
:
:
:
:
:
Remarks 1
Remarks 2
Short circuit current
Switchboard type
User tag number
Object: BELSTRANSFORM
CpComponentWBS
CpItemDescription
CpNumberItems
CpRatedLoad
CpRemarks1
CpRemarks2
CpTransformerPrimaryVoltage
CpTransformerSecondaryVoltage1
CpTransformerSecondaryVoltage2
CpTransformerType
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Number of identical items
Rated load
Remarks 1
Remarks 2
Transformer primary voltage
Secondary voltage 1st Tap
Secondary voltage 2nd Tap
Transformer type
User tag number
Object: BELSUPS
CpComponentWBS
CpItemDescription
CpNumberItems
CpRatedLoad
CpRemarks1
CpRemarks2
CpUPSType
CpUserTag
:
:
:
:
:
:
:
:
Component WBS
Item description
Number of identical items
Rated load
Remarks 1
Remarks 2
UPS type
User tag number
Object: BI DATA-HIWAY
CpComponentWBS
CpEnclosureType
CpItemDescription
CpLengthCable
CpMaterial
CpNumberItems
CpNumberTerminations
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
Component WBS
Enclosure type
Item description
Length of cable run
Material
Number of identical items
Number of terminations
Remarks 1
Remarks 2
User tag number
Object: BI HL-PIU
CpComponentWBS
CpItemDescription
CpNumberAnalogInputCards
CpNumberCardAssemblies
CpNumberDigitalInputCards
CpNumberDigitalOutputCards
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Number of analog input cards
Number of card assemblies
Number of digital input cards
Number of digital output cards
Number of identical items
Remarks 1
Remarks 2
User tag number
Object: BI INST-PANEL
CpComponentWBS
CpItemDescription
CpLength
CpNumberItems
CpPanelType
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
Component WBS
Item description
Length
Number of identical items
Panel type
Remarks 1
Remarks 2
User tag number
33
Object: BI INST-TRAY
CpComponentWBS
CpItemDescription
CpLength
CpNumberItems
CpRemarks1
CpRemarks2
CpTrayWidth
CpUserTag
:
:
:
:
:
:
:
:
Component WBS
Item description
Length
Number of identical items
Remarks 1
Remarks 2
Tray width
User tag number
Object: BI INST-WIRE
CpComponentWBS
CpConductorSetType
CpItemDescription
CpJunctionBoxOption
CpLength
CpMaterial
CpNumberConductorSetsPerCable
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Conductor set type
Item description
Junction box required
Length
Material
Number conductor sets per cable
Number of identical items
Remarks 1
Remarks 2
User tag number
Object: BI JUNC-BOX
CpComponentWBS
CpEnclosureType
CpItemDescription
CpJunctionBoxType
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
Component WBS
Enclosure type
Item description
Junction box type
Number of identical items
Remarks 1
Remarks 2
User tag number
Object: BI LL-PIU
CpComponentWBS
CpItemDescription
CpNumberCardAssemblies
CpNumberItems
CpNumberRTDCards
CpNumberRTDPowerSupply
CpNumberTCInputCards
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Number of card assemblies
Number of identical items
Number of RTD input cards
Number of RTD power supply
Number Thermocouple input cards
Remarks 1
Remarks 2
User tag number
Object: BI MULTI-CONT
CpComponentWBS
CpItemDescription
CpNumberAnalogInputCards
CpNumberAnalogOutputCards
CpNumberBatteryBackups
CpNumberControllers
CpNumberDigitalInputCards
CpNumberDigitalOutputCards
CpNumberItems
CpRedundancyYN
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Number of analog input cards
Number of analog output cards
Number of battery backups
Number of controllers
Number of digital input cards
Number of digital output cards
Number of identical items
Redundancy
Remarks 1
Remarks 2
User tag number
Object: BI
OPER-CENT
34
CpComponentWBS
CpHistoryModuleYN
CpItemDescription
CpNumber1PenRecorders
CpNumber2PenRecorders
CpNumber3PenRecorders
CpNumberAnalogIndicators
CpNumberDiskDrives
CpNumberEngineerKeyboards
CpNumberHiwayGateways
CpNumberIndicatingCRT
CpNumberItems
CpNumberLCNCables
CpNumberOperatorDisplayUnits
CpNumberPrinters
CpOperatorCenterType
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
History module
Item description
Number of 1-pen recorders
Number of 2-pen recorders
Number of 3-pen recorders
Number of analog indicators
Number of disk drives
Number of engineers keyboards
Number of hiway gateways
Number of indicating CRT
Number of identical items
Number of LCN cables
Number of operator display units
Number of printers
Operator center type
Remarks 1
Remarks 2
User tag number
Object: BI PNU-TUBING
CpComponentWBS
CpItemDescription
CpJunctionBoxOption
CpLength
CpNumberItems
CpNumberTubesPerBundle
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Junction box required
Length
Number of identical items
Number of tubes per bundle
Remarks 1
Remarks 2
User tag number
Object: BI THCPL-WIRE
CpComponentWBS
CpConductorType
CpItemDescription
CpJunctionBoxOption
CpLength
CpMaterial
CpNumberConductorPairsPerCable
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Conductor type
Item description
Junction box required
Length
Material
Number conductor pairs per cable
Number of identical items
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
Component WBS
Fire resistance rating
Item description
Material
Number of identical items
Remarks 1
Remarks 2
Surface area
User tag number
:
:
:
:
:
:
Component WBS
Fire resistance rating
Item description
Material
Member depth
Member length
35
CpMemberWidth
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
Member width
Number of identical items
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Fire resistance rating
Item description
Length
Number of identical items
Remarks 1
Remarks 2
Tray depth
Tray width
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Insulation thickness
Item description
Jacket type
Material
Number of identical items
Remarks 1
Remarks 2
Surface area
Temperature
User tag number
:
:
:
:
:
:
:
:
Component WBS
Insulation volume
Item description
Material
Number of identical items
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Insulation thickness
Item description
Jacket type
Material
Number of identical items
Pipe diameter
Pipe length
Remarks 1
Remarks 2
Temperature
User tag number
:
:
:
:
:
:
Component WBS
Fire resistance rating
Item description
Material
Number of identical items
Remarks 1
36
CpRemarks2
CpSurfaceArea
CpUserTag
: Remarks 2
: Surface area
: User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Fire resistance rating
Item description
Material
Member depth
Member length
Member width
Number of identical items
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Fire resistance rating
Item description
Length
Number of identical items
Remarks 1
Remarks 2
Tray depth
Tray width
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Insulation thickness
Item description
Jacket type
Material
Number of identical items
Remarks 1
Remarks 2
Surface area
Temperature
User tag number
:
:
:
:
:
:
:
:
Component WBS
Insulation volume
Item description
Material
Number of identical items
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
Component WBS
Insulation thickness
Item description
Jacket type
Material
Number of identical items
Pipe diameter
Pipe length
Remarks 1
37
CpRemarks2
CpTemperature
CpUserTag
: Remarks 2
: Temperature
: User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Enclosure type
Item description
Length of cable run
Material
Number of identical items
Number of terminations
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Number of analog input cards
Number of card assemblies
Number of digital input cards
Number of digital output cards
Number of identical items
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
Component WBS
Item description
Length
Number of identical items
Panel type
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
Component WBS
Item description
Length
Number of identical items
Remarks 1
Remarks 2
Tray width
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Conductor set type
Item description
Junction box required
Length
Material
Number conductor sets per cable
Number of identical items
Remarks 1
Remarks 2
User tag number
38
CpComponentWBS
CpEnclosureType
CpItemDescription
CpJunctionBoxType
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
Component WBS
Enclosure type
Item description
Junction box type
Number of identical items
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Number of card assemblies
Number of identical items
Number of RTD input cards
Number of RTD power supply
Number Thermocouple input cards
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Number of analog input cards
Number of analog output cards
Number of battery backups
Number of controllers
Number of digital input cards
Number of digital output cards
Number of identical items
Redundancy
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
History module
Item description
Number of 1-pen recorders
Number of 2-pen recorders
Number of 3-pen recorders
Number of analog indicators
Number of disk drives
Number of engineers keyboards
Number of hiway gateways
Number of indicating CRT
Number of identical items
Number of LCN cables
Number of operator display units
Number of printers
Operator center type
Remarks 1
Remarks 2
User tag number
:
:
:
:
Component WBS
Item description
Junction box required
Length
39
CpNumberItems
CpNumberTubesPerBundle
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Conductor type
Item description
Junction box required
Length
Material
Number conductor pairs per cable
Number of identical items
Remarks 1
Remarks 2
User tag number
Object: BLDG
CpAirConditioningAdjustment
CpBuildingHeight
CpBuildingLength
CpBuildingType
CpBuildingWidth
CpComponentWBS
CpExplosionGaugePressure
CpFirePreventionAdjustment
CpFoundationType
CpFurnishingAdjustment
CpHeatingVentilationAdjustment
CpItemDescription
CpLightingElectricalAdjustment
CpNumberFloors
CpNumberItems
CpPlumbingAdjustment
CpRemarks1
CpRemarks2
CpRoofType
CpStructureAdjustment
CpSubcontractSelection
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Air conditioning
Building height
Building length
Building type
Building width
Component WBS
Explosion gauge pressure
Fire prevention
Foundation type
Furnishings
Heating and ventilation
Item description
Lighting and electrical
Number of floors
Number of identical items
Plumbing
Remarks 1
Remarks 2
Roof type
Structure adjustment
Subcontract
User tag number
Object: BP COAT+WRAP
CpApplication
CpComponentWBS
CpItemDescription
CpNumberItems
CpPipeDiameter
CpPipeLength
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
Application
Component WBS
Item description
Number of identical items
Pipe diameter
Pipe length
Remarks 1
Remarks 2
User tag number
Object: BP DUCT-RD
CpComponentWBS
CpConfiguration
CpDuctClass
CpDuctDesignPressure
CpDuctDiameter
CpDuctGage
CpDuctInsulationCladdingOption
:
:
:
:
:
:
:
Component WBS
Configuration
Duct class
Duct design pressure
Duct diameter
Duct gauge
Duct insulation cladding option
40
CpDuctInsulationThickness
CpDuctLength
CpDuctMaterial
CpDuctStiffenerSize
CpDuctStiffenerSpacing
CpDuctWallThickness
CpGasFlowrate
CpGasVelocity
CpItemDescription
CpNumberAccessDoors
CpNumberDampers
CpNumberElbows
CpNumberFlexibleConnections
CpNumberItems
CpNumberReducers
CpNumberTees
CpParticleDensity
CpRemarks1
CpRemarks2
CpSupportSpacing
CpSupportWeightPerItem
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Object: BP DUCT-SQ
CpComponentWBS
CpDuctClass
CpDuctDesignPressure
CpDuctGage
CpDuctInsulationCladdingOption
CpDuctInsulationThickness
CpDuctLength
CpDuctMaterial
CpDuctStiffenerSize
CpDuctStiffenerSpacing
CpDuctWallThickness
CpDuctWidth
CpGasFlowrate
CpGasVelocity
CpItemDescription
CpNumberAccessDoors
CpNumberDampers
CpNumberElbows
CpNumberFlexibleConnections
CpNumberItems
CpNumberReducers
CpNumberTees
CpParticleDensity
CpRemarks1
CpRemarks2
CpSupportSpacing
CpSupportWeight
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Duct class
Duct design pressure
Duct gauge
Duct insulation cladding option
Duct insulation thickness
Duct length
Duct material
Stiffener size
Stiffener spacing
Duct wall thickness
Duct width
Gas flow rate
Velocity of gas
Item description
Number of access doors
Number of dampers
Number of elbows
Number of flexible connection
Number of identical items
Number of reducers
Number of tees
Particle density
Remarks 1
Remarks 2
Support spacing
Support weight
User tag number
Object: BP EQPT-TRACE
CpComponentWBS
CpDistanceToReturnHeader
CpDistanceToSupplyHeader
CpHeatingMedium
CpItemDescription
CpMaterial
CpNumberItems
CpRemarks1
:
:
:
:
:
:
:
:
Component WBS
Distance to return header
Distance to supply header
Heating medium
Item description
Material
Number of identical items
Remarks 1
41
CpRemarks2
CpSteamGaugePressure
CpTracerTubeLength
CpTracingType
CpUserTag
:
:
:
:
:
Remarks 2
Steam gauge pressure
Tracer tube length
Tracing symbol
User tag number
Object: BP FLO-PANEL
CpClampConnectionType
CpComponentWBS
CpFerruleRequirement
CpItemDescription
CpNumberExtraUbends
CpNumberItems
CpNumberStationsPerPanel
CpPanelType
CpPipeDiameter
CpPipeMaterial
CpProximitySensors
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Object: BP FOAM
CpApplicationDensity
CpComponentWBS
CpDiameterLength
CpFoamConcentrationPercent
CpFoamDeliveryOption
CpFoamTankOption
CpHeight
CpItemDescription
CpNumberFoamOutlets
CpNumberHoseStations
CpNumberHydrants
CpNumberItems
CpNumberLevels
CpOutletArrangement
CpPipeMaterial
CpPipeSystemType
CpRemarks1
CpRemarks2
CpSystemType
CpTankDesignGaugePressure
CpTankDiameter
CpTankLength
CpTankTemperature
CpUserTag
CpWidth
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Application density
Component WBS
Diameter or length
Foam concentration
Foam delivery option
Foam tank option
Height
Item description
Number of foam outlets
Number of hose stations
Number of hydrants
Number of identical items
Number of levels
Outlet arrangement
Pipe material
Pipe system type
Remarks 1
Remarks 2
System type
Tank design gauge pressure
Tank diameter
Tank length
Tank temperature
User tag number
Width
Object: BP HDPE-PIPE
CpComponentWBS
CpConfiguration
CpDepthBuriedPipe
CpDesignGaugePressure
CpDesignTemperature
CpItemDescription
CpNumberBlinds
CpNumberElbows
CpNumberItems
CpNumberReducers
CpNumberTees
CpNumberWyes
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Configuration
Depth buried pipe
Design gauge pressure
Design temperature
Item description
Number of blinds
Number of elbows
Number of identical items
Number of reducers
Number of tees
Number of wyes
42
CpPipeDiameter
CpPipeLength
CpRemarks1
CpRemarks2
CpStandardDiameterRatio
CpUserTag
:
:
:
:
:
:
Pipe diameter
Pipe length
Remarks 1
Remarks 2
Standard Diameter Ratio (SDR)
User tag number
:
:
:
:
:
:
:
:
:
:
:
Object: BP LAUNDER-RD
CpComponentWBS
CpCoverType
CpItemDescription
CpLaunderDepth
CpLaunderWidth
CpLength
CpMaterial
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Cover type
Item description
Launder depth
Launder width
Length
Material
Number of identical items
Remarks 1
Remarks 2
User tag number
Object: BP LAUNDER-SQ
CpComponentWBS
CpCoverType
CpItemDescription
CpLaunderDepth
CpLaunderWidth
CpLength
CpMaterial
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Cover type
Item description
Launder depth
Launder width
Length
Material
Number of identical items
Remarks 1
Remarks 2
User tag number
Object: BP PIPE
CpComponentWBS
CpControlValveMinimumClass
CpControlValveReduction
CpCustomPipeSpec
CpDepthBuriedPipe
CpDesignGaugePressure
CpDesignTemperature
CpETraceCableType
CpETraceMaintenanceTemperature
CpFittingRulesYN
CpFluidDensity
CpFluidPhase
CpFluidViscosity
CpGasFlowrate
CpHeatTraceFluid
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Control valve minimum class
Control valve reduced size
Custom pipe spec
Depth buried pipe
Design gauge pressure
Design temperature
E-trace cable type
E-trace maintenance temperature
Fitting rules application
Fluid density
Fluid phase
Fluid viscosity
Gas flow rate
Heat trace fluid
43
CpHorizontalAllowancePercent
CpItemDescription
CpLiquidFlowrate
CpNumberItems
CpNumberWelds
CpOperatingTemperature
CpPersonnelProtectionPercent
CpPipeBendForElbow
CpPipeBranchForTee
CpPipeConnectionType
CpPipeDiameter
CpPipeFlangeClass
CpPipeFlangeType
CpPipeInstallationOption
CpPipeInsulationJacketType
CpPipeInsulationThickness
CpPipeInsulationType
CpPipeLength
CpPipeMaterial
CpPipeNumberFinishCoats
CpPipeNumberPrimeCoats
CpPipeRoutingType
CpPipeSandblastAreaPercent
CpPipeScheduleGage
CpPipeThickness
CpPipeType
CpPrimaryEquipmentConnection
CpPrimaryEquipmentUserTag
CpRemarks1
CpRemarks2
CpSecondaryEquipmentConnection
CpSecondaryEquipmentUserTag
CpSpecialPipeDescription
CpSteamGaugePressure
CpStressRelief
CpUserTag
CpValveFittingsAQuantity
CpValveFittingsAType
CpValveFittingsBQuantity
CpValveFittingsBType
CpValveFittingsCQuantity
CpValveFittingsCType
CpValveFittingsDQuantity
CpValveFittingsDType
CpValveFittingsEQuantity
CpValveFittingsEType
CpValveFittingsFQuantity
CpValveFittingsFType
CpValveFittingsGQuantity
CpValveFittingsGType
CpValveFittingsHQuantity
CpValveFittingsHType
CpValveFittingsIQuantity
CpValveFittingsIType
CpValveFittingsJQuantity
CpValveFittingsJType
CpValvePackingSeal
CpValveRulesYN
CpVerticalAllowancePercent
CpWeldsInShopPercent
CpWeldXrayPercent
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Horizontal allowance
Item description
Liquid flow rate
Number of identical items
Number of welds
Operating temperature
Personnel protection
Bend for elbow
Branch for tee
Pipe connection type
Pipe diameter
Flange class
Flange type
Pipe installation option
Pipe insulation jacket type
Pipe insulation thickness
Pipe insulation type
Pipe length
Pipe material
Pipe number of finish coats
Pipe number of prime coats
Pipe routing type
Pipe sandblast percent of area
Pipe schedule or gauge
Pipe thickness
Pipe type
Primary equipment connection
Primary equipment user tag
Remarks 1
Remarks 2
Secondary equipment connection
Secondary equipment user tag
Special pipe description
Steam gauge pressure
Stress relief
User tag number
Valve or fitting A quantity
Valve or fitting A type
Valve or fitting B quantity
Valve or fitting B type
Valve or fitting C quantity
Valve or fitting C type
Valve or fitting D quantity
Valve or fitting D type
Valve or fitting E quantity
Valve or fitting E type
Valve or fitting F quantity
Valve or fitting F type
Valve or fitting G quantity
Valve or fitting G type
Valve or fitting H quantity
Valve or fitting H type
Valve or fitting I quantity
Valve or fitting I type
Valve or fitting J quantity
Valve or fitting J type
Valve packing or seal
Valve rules application
Vertical allowance
Percent of welds in shop
Weld Xray
44
Object: BP PIPE-TRACE
CpComponentWBS
CpDistanceToReturnHeader
CpDistanceToSupplyHeader
CpHeatingMedium
CpItemDescription
CpMaterial
CpNumberItems
CpRemarks1
CpRemarks2
CpSteamGaugePressure
CpTracedPipeDiameter
CpTracedPipeLength
CpTracerTubeLength
CpTracingType
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Distance to return header
Distance to supply header
Heating medium
Item description
Material
Number of identical items
Remarks 1
Remarks 2
Steam gauge pressure
Traced pipe diameter
Traced pipe length
Tracer tube length
Tracing symbol
User tag number
Object: BP RCON-PIPE
CpComponentWBS
CpConcretePipeDiameter
CpItemDescription
CpMaterial
CpNumberElbows
CpNumberItems
CpNumberManholes
CpNumberTees
CpPipeLength
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Concrete pipe diameter
Item description
Material
Number of elbows
Number of identical items
Number of manholes
Number of tees
Pipe length
Remarks 1
Remarks 2
User tag number
Object: BP SCRAPER-LR
CpComponentWBS
CpFlangeClass
CpItemDescription
CpMaterial
CpNumberItems
CpPipeDiameter
CpPipeThickness
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
Component WBS
Flange class
Item description
Material
Number of identical items
Pipe diameter
Pipe thickness
Remarks 1
Remarks 2
User tag number
Object: BP SPHOS
CpComponentWBS
CpHoseLength
CpItemDescription
CpLength
CpMinimumFlowPerHose
CpNumberHoses
CpNumberHydrants
CpNumberItems
CpNumberLevels
CpPipeMaterial
CpPipeSystemType
CpRemarks1
CpRemarks2
CpSystemType
CpUserTag
CpWidth
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Length per hose
Item description
Length
Minimum flow per hose
Number of hoses
Number of hydrants
Number of identical items
Number of levels
Pipe material
Pipe system type
Remarks 1
Remarks 2
System type
User tag number
Width
Object: BP
SPRNK
45
CpApplicationDensity
CpComponentWBS
CpCoverageAreaPerSprinkler
CpDetectorType
CpDiameterLength
CpFoamConcentrationPercent
CpFoamTankOption
CpHazardType
CpHeight
CpItemDescription
CpNumberHoseStations
CpNumberHydrants
CpNumberItems
CpNumberLevels
CpNumberSprinklers
CpOutletArrangement
CpPipeMaterial
CpPipeSizingMethod
CpPipeSystemType
CpRemarks1
CpRemarks2
CpSprinklerLocation
CpSystemType
CpTankDesignGaugePressure
CpTankDiameter
CpTankLength
CpTankTemperature
CpUserTag
CpWidth
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Application density
Component WBS
Coverage area per sprinkler
Detector type
Diameter or length
Foam concentration
Foam tank option
Hazard type
Height
Item description
Number of hose stations
Number of hydrants
Number of identical items
Number of levels
Number of sprinklers
Outlet arrangement
Pipe material
Pipe sizing method
Pipe system type
Remarks 1
Remarks 2
Sprinkler Location
System type
Tank design gauge pressure
Tank diameter
Tank length
Tank temperature
User tag number
Width
Object: BP UTIL-PIPE
CpChemicalSewerDiameter
CpComponentWBS
CpCondensateReturnDiameter
CpCoolingWaterReturnDiameter
CpCoolingWaterSupplyDiameter
CpFirewaterLateralDiameter
CpFirewaterLoopDiameter
CpFlareHeaderDiameter
CpFuelGasHeaderDiameter
CpHeaderDiameterSymbol
CpHighPressureSteamDiameter
CpInertGasHeaderDiameter
CpInstrumentAirHeaderDiameter
CpItemDescription
CpLengthParameter
CpLowPressureSteamDiameter
CpMediumPressureSteamDiameter
CpNumberItems
CpNumberUtilityStations
CpPipeMaterial
CpPlantAirHeaderDiameter
CpPotableWaterDiameter
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Material
Number of identical items
46
CpPipeDiameter
CpRemarks1
CpRemarks2
CpUserTag
CpWellType
:
:
:
:
:
Pipe diameter
Remarks 1
Remarks 2
User tag number
Type of well
Object: BP WSHWR
CpComponentWBS
CpDrainRequirementYN
CpItemDescription
CpLengthSupplyPipe
CpNumberCombinedUnits
CpNumberItems
CpNumberNozzlesPerShower
CpNumberShowerUnits
CpNumberWashUnits
CpPipeMaterial
CpRemarks1
CpRemarks2
CpUserTag
CpWashUnitType
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Drain requirement
Item description
Length supply pipe
Number of combined units
Number of identical items
Number of nozzles per shower
Number of shower units
Number of wash units
Pipe material
Remarks 1
Remarks 2
User tag number
Wash unit type
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Configuration
Control valve minimum class
Control valve reduced size
Custom pipe spec
Depth buried pipe
Design gauge pressure
Design temperature
E-trace maintenance temperature
Flange class
Item description
Number of angle valves
Number of ball valves
Number of blinds
Number of butterfly valves
Number of check valves
Number of control valves
Number of elbows
Number of flanges
Number of gate valves
Number of globe valves
Number of identical items
Number of knife gate valves
Number of orifice plates
Number of plug valves
Number of reducers
Number of regulating valves
Number of safety valves
Number of spectacle blinds
Number of tees
Number of threadolets
Personnel protection
Pipe diameter
Pipe length
Pipe material
Pipe schedule or gauge
Pipe thickness
Remarks 1
Remarks 2
47
CpSpecialPipeDescription
CpSteamGaugePressure
CpUserTag
CpWeldXrayPercent
:
:
:
:
:
:
:
:
:
:
:
:
:
Application
Component WBS
Item description
Number of identical items
Pipe diameter
Pipe length
Remarks 1
Remarks 2
User tag number
Object: BPIPDUCT RD
CpComponentWBS
CpConfiguration
CpDuctClass
CpDuctDesignPressure
CpDuctDiameter
CpDuctGage
CpDuctInsulationCladdingOption
CpDuctInsulationThickness
CpDuctLength
CpDuctMaterial
CpDuctStiffenerSize
CpDuctStiffenerSpacing
CpDuctWallThickness
CpGasFlowrate
CpGasVelocity
CpItemDescription
CpNumberAccessDoors
CpNumberDampers
CpNumberElbows
CpNumberFlexibleConnections
CpNumberItems
CpNumberReducers
CpNumberTees
CpParticleDensity
CpRemarks1
CpRemarks2
CpSupportSpacing
CpSupportWeightPerItem
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Configuration
Duct class
Duct design pressure
Duct diameter
Duct gauge
Duct insulation cladding option
Duct insulation thickness
Duct length
Duct material
Stiffener size
Stiffener spacing
Duct wall thickness
Gas flow rate
Velocity of gas
Item description
Number of access doors
Number of dampers
Number of elbows
Number of flexible connection
Number of identical items
Number of reducers
Number of tees
Particle density
Remarks 1
Remarks 2
Support spacing
Support weight per item
User tag number
Object: BPIPDUCT SQ
CpComponentWBS
CpDuctClass
CpDuctDesignPressure
CpDuctGage
CpDuctInsulationCladdingOption
CpDuctInsulationThickness
CpDuctLength
CpDuctMaterial
CpDuctStiffenerSize
CpDuctStiffenerSpacing
CpDuctWallThickness
CpDuctWidth
CpGasFlowrate
CpGasVelocity
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Duct class
Duct design pressure
Duct gauge
Duct insulation cladding option
Duct insulation thickness
Duct length
Duct material
Stiffener size
Stiffener spacing
Duct wall thickness
Duct width
Gas flow rate
Velocity of gas
48
CpItemDescription
CpNumberAccessDoors
CpNumberDampers
CpNumberElbows
CpNumberFlexibleConnections
CpNumberItems
CpNumberReducers
CpNumberTees
CpParticleDensity
CpRemarks1
CpRemarks2
CpSupportSpacing
CpSupportWeight
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Item description
Number of access doors
Number of dampers
Number of elbows
Number of flexible connection
Number of identical items
Number of reducers
Number of tees
Particle density
Remarks 1
Remarks 2
Support spacing
Support weight
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Distance to return header
Distance to supply header
Heating medium
Item description
Material
Number of identical items
Remarks 1
Remarks 2
Steam gauge pressure
Tracer tube length
Tracing symbol
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Object: BPIPFOAM
CpApplicationDensity
CpComponentWBS
CpDiameterLength
CpFoamConcentrationPercent
CpFoamDeliveryOption
CpFoamTankOption
CpHeight
CpItemDescription
CpNumberFoamOutlets
CpNumberHoseStations
CpNumberHydrants
CpNumberItems
CpNumberLevels
CpOutletArrangement
CpPipeMaterial
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Application density
Component WBS
Diameter or length
Foam concentration
Foam delivery option
Foam tank option
Height
Item description
Number of foam outlets
Number of hose stations
Number of hydrants
Number of identical items
Number of levels
Outlet arrangement
Pipe material
49
CpPipeSystemType
CpRemarks1
CpRemarks2
CpSystemType
CpTankDesignGaugePressure
CpTankDiameter
CpTankLength
CpTankTemperature
CpUserTag
CpWidth
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Configuration
Depth buried pipe
Design gauge pressure
Design temperature
Item description
Number of blinds
Number of elbows
Number of identical items
Number of reducers
Number of tees
Number of wyes
Pipe diameter
Pipe length
Remarks 1
Remarks 2
Standard Diameter Ratio (SDR)
User tag number
:
:
:
:
:
:
:
:
:
:
:
Object: BPIPLAUNDER RD
CpComponentWBS
CpCoverType
CpItemDescription
CpLaunderDepth
CpLaunderWidth
CpLength
CpMaterial
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Cover type
Item description
Launder depth
Launder width
Length
Material
Number of identical items
Remarks 1
Remarks 2
User tag number
Object: BPIPLAUNDER SQ
CpComponentWBS
CpCoverType
CpItemDescription
CpLaunderDepth
:
:
:
:
Component WBS
Cover type
Item description
Launder depth
50
CpLaunderWidth
CpLength
CpMaterial
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
Object: BPIPPIPE
CpComponentWBS
CpControlValveMinimumClass
CpControlValveReduction
CpCustomPipeSpec
CpDepthBuriedPipe
CpDesignGaugePressure
CpDesignTemperature
CpETraceCableType
CpETraceMaintenanceTemperature
CpFittingRulesYN
CpFluidDensity
CpFluidPhase
CpFluidViscosity
CpGasFlowrate
CpHeatTraceFluid
CpHorizontalAllowancePercent
CpItemDescription
CpLiquidFlowrate
CpNumberItems
CpNumberWelds
CpOperatingTemperature
CpPersonnelProtectionPercent
CpPipeBendForElbow
CpPipeBranchForTee
CpPipeConnectionType
CpPipeDiameter
CpPipeFlangeClass
CpPipeFlangeType
CpPipeInstallationOption
CpPipeInsulationJacketType
CpPipeInsulationThickness
CpPipeInsulationType
CpPipeLength
CpPipeMaterial
CpPipeNumberFinishCoats
CpPipeNumberPrimeCoats
CpPipeRoutingType
CpPipeSandblastAreaPercent
CpPipeScheduleGage
CpPipeThickness
CpPipeType
CpPrimaryEquipmentConnection
CpPrimaryEquipmentUserTag
CpRemarks1
CpRemarks2
CpSecondaryEquipmentConnection
CpSecondaryEquipmentUserTag
CpSpecialPipeDescription
CpSteamGaugePressure
CpStressRelief
CpUserTag
CpValveFittingsAQuantity
CpValveFittingsAType
:
:
:
:
:
:
:
Launder width
Length
Material
Number of identical items
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Control valve minimum class
Control valve reduced size
Custom pipe spec
Depth buried pipe
Design gauge pressure
Design temperature
E-trace cable type
E-trace maintenance temperature
Fitting rules application
Fluid density
Fluid phase
Fluid viscosity
Gas flow rate
Heat trace fluid
Horizontal allowance
Item description
Liquid flow rate
Number of identical items
Number of welds
Operating temperature
Personnel protection
Bend for elbow
Branch for tee
Pipe connection type
Pipe diameter
Flange class
Flange type
Pipe installation option
Pipe insulation jacket type
Pipe insulation thickness
Pipe insulation type
Pipe length
Pipe material
Pipe number of finish coats
Pipe number of prime coats
Pipe routing type
Pipe sandblast percent of area
Pipe schedule or gauge
Pipe thickness
Pipe type
Primary equipment connection
Primary equipment user tag
Remarks 1
Remarks 2
Secondary equipment connection
Secondary equipment user tag
Special pipe description
Steam gauge pressure
Stress relief
User tag number
Valve or fitting A quantity
Valve or fitting A type
51
CpValveFittingsBQuantity
CpValveFittingsBType
CpValveFittingsCQuantity
CpValveFittingsCType
CpValveFittingsDQuantity
CpValveFittingsDType
CpValveFittingsEQuantity
CpValveFittingsEType
CpValveFittingsFQuantity
CpValveFittingsFType
CpValveFittingsGQuantity
CpValveFittingsGType
CpValveFittingsHQuantity
CpValveFittingsHType
CpValveFittingsIQuantity
CpValveFittingsIType
CpValveFittingsJQuantity
CpValveFittingsJType
CpValvePackingSeal
CpValveRulesYN
CpVerticalAllowancePercent
CpWeldXrayPercent
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Distance to return header
Distance to supply header
Heating medium
Item description
Material
Number of identical items
Remarks 1
Remarks 2
Steam gauge pressure
Traced pipe diameter
Traced pipe length
Tracer tube length
Tracing symbol
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Concrete pipe diameter
Item description
Material
Number of elbows
Number of identical items
Number of manholes
Number of tees
Pipe length
Remarks 1
Remarks 2
User tag number
Object: BPIPSCRAPER LR
CpComponentWBS
CpFlangeClass
CpItemDescription
CpMaterial
CpNumberItems
CpPipeDiameter
CpPipeThickness
:
:
:
:
:
:
:
Component WBS
Flange class
Item description
Material
Number of identical items
Pipe diameter
Pipe thickness
52
CpRemarks1
CpRemarks2
CpUserTag
: Remarks 1
: Remarks 2
: User tag number
Object: BPIPSPHOS
CpComponentWBS
CpHoseLength
CpItemDescription
CpLength
CpMinimumFlowPerHose
CpNumberHoses
CpNumberHydrants
CpNumberItems
CpNumberLevels
CpPipeMaterial
CpPipeSystemType
CpRemarks1
CpRemarks2
CpSystemType
CpUserTag
CpWidth
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Length per hose
Item description
Length
Minimum flow per hose
Number of hoses
Number of hydrants
Number of identical items
Number of levels
Pipe material
Pipe system type
Remarks 1
Remarks 2
System type
User tag number
Width
Object: BPIPSPRNK
CpApplicationDensity
CpComponentWBS
CpCoverageAreaPerSprinkler
CpDetectorType
CpDiameterLength
CpFoamConcentrationPercent
CpFoamTankOption
CpHazardType
CpHeight
CpItemDescription
CpNumberHoseStations
CpNumberHydrants
CpNumberItems
CpNumberLevels
CpNumberSprinklers
CpOutletArrangement
CpPipeMaterial
CpPipeSizingMethod
CpPipeSystemType
CpRemarks1
CpRemarks2
CpSprinklerLocation
CpSystemType
CpTankDesignGaugePressure
CpTankDiameter
CpTankLength
CpTankTemperature
CpUserTag
CpWidth
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Application density
Component WBS
Coverage area per sprinkler
Detector type
Diameter or length
Foam concentration
Foam tank option
Hazard type
Height
Item description
Number of hose stations
Number of hydrants
Number of identical items
Number of levels
Number of sprinklers
Outlet arrangement
Pipe material
Pipe sizing method
Pipe system type
Remarks 1
Remarks 2
Sprinkler Location
System type
Tank design gauge pressure
Tank diameter
Tank length
Tank temperature
User tag number
Width
:
:
:
:
:
:
:
:
53
CpFuelGasHeaderDiameter
CpHeaderDiameterSymbol
CpHighPressureSteamDiameter
CpInertGasHeaderDiameter
CpInstrumentAirHeaderDiameter
CpItemDescription
CpLengthParameter
CpLowPressureSteamDiameter
CpMediumPressureSteamDiameter
CpNumberItems
CpNumberUtilityStations
CpPipeMaterial
CpPlantAirHeaderDiameter
CpPotableWaterDiameter
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Material
Number of identical items
Pipe diameter
Remarks 1
Remarks 2
User tag number
Type of well
Object: BPIPWSHWR
CpComponentWBS
CpDrainRequirementYN
CpItemDescription
CpLengthSupplyPipe
CpNumberCombinedUnits
CpNumberItems
CpNumberNozzlesPerShower
CpNumberShowerUnits
CpNumberWashUnits
CpPipeMaterial
CpRemarks1
CpRemarks2
CpUserTag
CpWashUnitType
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Drain requirement
Item description
Length supply pipe
Number of combined units
Number of identical items
Number of nozzles per shower
Number of shower units
Number of wash units
Pipe material
Remarks 1
Remarks 2
User tag number
Wash unit type
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Configuration
Control valve minimum class
Control valve reduced size
Custom pipe spec
Depth buried pipe
Design gauge pressure
Design temperature
E-trace maintenance temperature
Flange class
Item description
Number of angle valves
Number of ball valves
Number of blinds
Number of butterfly valves
Number of check valves
54
CpNumberControlValves
CpNumberElbows
CpNumberFlanges
CpNumberGateValves
CpNumberGlobeValves
CpNumberItems
CpNumberKnifeGateValves
CpNumberOrificePlates
CpNumberPlugValves
CpNumberReducers
CpNumberRegulatingValve
CpNumberSafetyValves
CpNumberSpectacleBlinds
CpNumberTees
CpNumberThreadolets
CpPersonnelProtectionPercent
CpPipeDiameter
CpPipeLength
CpPipeMaterial
CpPipeScheduleGage
CpPipeThickness
CpRemarks1
CpRemarks2
CpSpecialPipeDescription
CpSteamGaugePressure
CpUserTag
CpWeldXrayPercent
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Number of finish coats
Number of identical items
Number of primer coats
Remarks 1
Remarks 2
Surface area
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Number of finish coats
Number of identical items
Number of primer coats
Pipe diameter
Pipe length
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Length
Number of finish coats
Number of identical items
Number of primer coats
Remarks 1
Remarks 2
Section weight per unit length
User tag number
55
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Number of finish coats
Number of identical items
Number of primer coats
Remarks 1
Remarks 2
Surface area
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Number of finish coats
Number of identical items
Number of primer coats
Pipe diameter
Pipe length
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Length
Number of finish coats
Number of identical items
Number of primer coats
Remarks 1
Remarks 2
Section weight per unit length
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Lining material Type 1
Lining material Type 2
Lining material Type 3
Lining per plate area Type 1
Lining per plate area Type 2
Lining per plate area Type 3
Lining thickness Type 1
Lining thickness Type 2
Lining thickness Type 3
Material
Number of identical items
Plate area per item
Plate thickness
Remarks 1
Remarks 2
Weight per fabricated plate
User tag number
:
:
:
:
Component WBS
Grating type
Item description
Length hand rail and toeplate
56
CpNumberItems
CpRemarks1
CpRemarks2
CpSurfaceArea
CpUserTag
Object: BST LADDER
CpComponentWBS
CpHeight
CpItemDescription
CpLadderType
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Height
Item description
Ladder type
Number of identical items
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Length
Number of identical items
Remarks 1
Remarks 2
Section weight per unit length
Steel type
User tag number
: Bay span
: Bay width
57
CpColumnBaseOption
CpComponentWBS
CpDistributedLoadPerLevel
CpFloorGratePercentArea
CpFloorSlabPercentArea
CpGratingType
CpHeight
CpItemDescription
CpLength
CpNumberFloors
CpNumberItems
CpNumberStairways
CpRemarks1
CpRemarks2
CpSeismicForceAdjustment
CpSidingPercentWallArea
CpSidingType
CpSlabThickness
CpStructuralSteelAnalysisType
CpUserTag
CpWidth
CpWindForceAdjustment
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Height
Item description
Number of identical items
Remarks 1
58
CpRemarks2
CpSectionWeightPerUnitLength
CpSupportType
CpUserTag
CpWidth
:
:
:
:
:
Remarks 2
Section weight per unit length
Support type
User tag number
Width
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Floor grate per area
Grating type
Hand rail percent perimeter
Item description
Number of columns
Number of identical items
Number of ladders
Platform area
Platform height
Platform width
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design loading
Equipment percent area
Equipment weight
Grating percent of floor area
Grating type
Item description
Length hand rail and toeplate
Number of columns
Number equipment access sides
Number of identical items
Number of ladders
Number of stairways
Platform area
Platform height
Platform length
Platform width
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Floor slab area
Item description
Main column spacing
Material
Number of identical items
Remarks 1
Remarks 2
Roofing area
Siding area
Slab thickness
User tag number
: Component WBS
: Item description
: Number of identical items
59
CpRemarks1
CpRemarks2
CpUserTag
CpVerticalHeight
:
:
:
:
Remarks 1
Remarks 2
User tag number
Vertical height
:
:
:
:
:
:
:
:
:
Component WBS
Grating type
Height
Item description
Number of identical items
Remarks 1
Remarks 2
User tag number
Width
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Lining material Type 1
Lining material Type 2
Lining material Type 3
Lining per plate area Type 1
Lining per plate area Type 2
Lining per plate area Type 3
Lining thickness Type 1
Lining thickness Type 2
Lining thickness Type 3
Material
Number of identical items
Plate area per item
Plate thickness
Remarks 1
Remarks 2
Weight per fabricated plate
User tag number
Object: BSTLGALLERY
CpCantileverLength
CpComponentWBS
CpDistributedLoad
CpGalleryEnclosureType
CpGalleryHeight
CpGalleryWidth
CpGratingType
CpHeightAboveGradeSection
CpHeightGradeSection
CpHeightSlopeSection
CpItemDescription
CpLengthAboveGradeSection
CpLengthGradeSection
CpLengthSlopeSection
CpNumberItems
CpNumberWalkways
CpRemarks1
CpRemarks2
CpTowerBentSpacing
CpUserTag
CpWalkwayWidth
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Cantilever length
Component WBS
Distributed load
Gallery enclosure
Gallery height
Gallery width
Grating type
Height Above grade section
Height Grade section
Height Slope section
Item description
Length Above grade section
Length Grade section
Length Slope section
Number of identical items
Number of walkways
Remarks 1
Remarks 2
Tower bent spacing
User tag number
Walkway width
Object: BSTLGRATE
CpComponentWBS
: Component WBS
60
CpGratingType
CpItemDescription
CpLengthHandRailToeplate
CpNumberItems
CpRemarks1
CpRemarks2
CpSurfaceArea
CpUserTag
Object: BSTLLADDER
CpComponentWBS
CpHeight
CpItemDescription
CpLadderType
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
Grating type
Item description
Length hand rail and toeplate
Number of identical items
Remarks 1
Remarks 2
Surface area
User tag number
:
:
:
:
:
:
:
:
Component WBS
Height
Item description
Ladder type
Number of identical items
Remarks 1
Remarks 2
User tag number
Component WBS
Item description
Length
Number of identical items
Remarks 1
Remarks 2
Section weight per unit length
Steel type
User tag number
:
:
:
:
:
:
:
:
:
61
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Bay span
Bay width
Column base option
Component WBS
Distributed load per level
Floor grate per area
Floor slab percent of area
Grating type
Height
Item description
Length
Number of floors
Number of identical items
Number of stairways
Remarks 1
Remarks 2
Seismic force adjustment
Siding per wall area
Siding type
Slab thickness
Structural steel analysis
User tag number
Width
Wind force adjustment
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
: Component WBS
: Height
62
CpItemDescription
CpNumberItems
CpRemarks1
CpRemarks2
CpSectionWeightPerUnitLength
CpSupportType
CpUserTag
CpWidth
:
:
:
:
:
:
:
:
Item description
Number of identical items
Remarks 1
Remarks 2
Section weight per unit length
Support type
User tag number
Width
Object: BSTLPLATFORM
CpComponentWBS
CpFloorGratePercentArea
CpGratingType
CpHandrailPerimeterPercent
CpItemDescription
CpNumberColumns
CpNumberItems
CpNumberLadders
CpPlatformArea
CpPlatformHeight
CpPlatformWidth
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Floor grate per area
Grating type
Hand rail percent perimeter
Item description
Number of columns
Number of identical items
Number of ladders
Platform area
Platform height
Platform width
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design loading
Equipment percent area
Equipment weight
Grating percent of floor area
Grating type
Item description
Length hand rail and toeplate
Number of columns
Number equipment access sides
Number of identical items
Number of ladders
Number of stairways
Platform area
Platform height
Platform length
Platform width
Remarks 1
Remarks 2
User tag number
Object: BSTLSIDING
CpComponentWBS
CpFloorSlabArea
CpItemDescription
CpMainColumnSpacing
CpMaterial
CpNumberItems
CpRemarks1
CpRemarks2
CpRoofingArea
CpSidingArea
CpSlabThickness
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Floor slab area
Item description
Main column spacing
Material
Number of identical items
Remarks 1
Remarks 2
Roofing area
Siding area
Slab thickness
User tag number
Object: BSTLSTAIR
63
CpComponentWBS
CpItemDescription
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
CpVerticalHeight
:
:
:
:
:
:
:
Component WBS
Item description
Number of identical items
Remarks 1
Remarks 2
User tag number
Vertical height
:
:
:
:
:
:
:
:
:
Component WBS
Grating type
Height
Item description
Number of identical items
Remarks 1
Remarks 2
User tag number
Width
Object: C
CpCodeOfAccount
CpComponentWBS
CpComponentWeight
CpIDInBulkReport
CpItemClassification
CpItemDescription
CpItemType
CpLaborHoursPerUnit
CpMaterial
CpMaterialCostPerUnit
CpNumberItems
CpRemarks1
CpRemarks2
CpTotalCostPerUnit
CpUnitOfMeasure
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Code of account
Component WBS
Component weight
ID in bulk report
Item classification
Item description
Item type
Labor hours per unit
Material
Material cost per unit
Number of identical items
Remarks 1
Remarks 2
Total cost per unit
Unit of measure
User tag number
:
:
:
:
:
:
:
:
:
:
:
Agitator diameter
Agitator height
Component WBS
Item description
Liquid volume
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Agitator diameter
Agitator height
Component WBS
Item description
Liquid volume
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
64
:
:
:
:
:
:
:
:
:
:
:
Agitator diameter
Agitator height
Component WBS
Item description
Liquid volume
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Driver type
Impeller type
Item description
Liquid volume
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Seal for shaft
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Agitator orientation
Component WBS
Consistency Air Dried
Driver power
Driver speed
Driver type
Fluid density
Fluid viscosity
Impeller diameter
Impeller speed
Impeller type
Item description
Liquid volume
Material
Number of impellers
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Seal type
Shaft diameter
Shaft length
Structure tag
User tag number
:
:
:
:
:
:
Angle riser
Component WBS
Driver power
Driver type
Impeller type
Item description
65
CpMountingType
CpNumberImpellers
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
Mounting type
Number of impellers
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Driver type
Item description
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Angle riser
Component WBS
Driver power
Driver type
Impeller type
Item description
Mounting type
Number of impellers
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Driver type
Item description
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Application
Component WBS
Configuration
Consistency Air Dried
Corrosion allowance
Design temperature
Driver speed
Driver type
Hydraulic volume
Impeller diameter
Impeller material
Impeller speed
66
CpImpellerType
CpItemDescription
CpManholeDiameter
CpNumberItems
CpNumberManholes
CpNumberRotorsDrives
CpPowerPerDrive
CpPulpingRateAD
CpQuotedCost
CpRemarks1
CpRemarks2
CpSealForShaft
CpShaftLength
CpStructureTag
CpTankLengthDiameter
CpTankVatMaterial
CpUserTag
CpVesselHeight
CpVesselLegHeight
CpVesselWidth
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Impeller type
Item description
Manhole diameter
Number of identical items
Number of manholes
Number of rotors or drives
Power per drive
Pulping rate Air Dried
Quoted cost per item
Remarks 1
Remarks 2
Seal for shaft
Shaft length
Structure tag
Tank length or diameter
Tank or vat material
User tag number
Vessel height
Vessel leg height
Vessel width
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Application
Component WBS
Configuration
Consistency Air Dried
Corrosion allowance
Design temperature
Driver speed
Driver type
Hydraulic volume
Impeller diameter
Impeller material
Impeller speed
Impeller type
Item description
Manhole diameter
Number of identical items
Number of manholes
Number of rotors or drives
Power per drive
Pulping rate Air Dried
Quoted cost per item
Remarks 1
Remarks 2
Seal for shaft
Shaft length
Structure tag
Tank length or diameter
Tank or vat material
User tag number
Vessel height
Vessel leg height
Vessel width
:
:
:
:
:
:
Agitator power
Application
Base material thickness
Cladding material
Cladding thickness
Component WBS
67
CpCorrosionAllowance
CpDesignGaugePressure
CpDesignTemperature
CpDiameterType
CpDriverType
CpFluidDensity
CpFluidDepth
CpFluidViscosity
CpImpellerDiameter
CpImpellerSpeed
CpImpellerType
CpItemDescription
CpJacketGaugePressure
CpJacketMaterial
CpJacketThickness
CpJacketType
CpLiquidVolume
CpManholeDiameter
CpNumberBodyFlangeSets
CpNumberImpellers
CpNumberItems
CpNumberManholes
CpOperatingTemperature
CpPowerFunction
CpQuotedCost
CpRemarks1
CpRemarks2
CpReynoldsNumber
CpShellMaterial
CpSkirtLegHeight
CpStiffeningRingSpacing
CpStressRelief
CpStructureTag
CpTangentTangentHeight
CpUserTag
CpVacuumDesignGaugePressure
CpVesselDiameter
CpWeldEfficiencyPercent
Object: DAT OFF MACH
CpApplication
CpComponentWBS
CpConfiguration
CpConsistencyADPercent
CpCorrosionAllowance
CpDesignTemperature
CpDriverSpeed
CpDriverType
CpHydraulicVolume
CpImpellerDiameter
CpImpellerMaterial
CpImpellerSpeed
CpImpellerType
CpItemDescription
CpManholeDiameter
CpNumberItems
CpNumberManholes
CpNumberRotorsDrives
CpPowerPerDrive
CpPulpingRateAD
CpQuotedCost
CpRemarks1
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Corrosion allowance
Design gauge pressure
Design temperature
Diameter option
Driver type
Fluid density
Fluid depth
Fluid viscosity
Impeller diameter
Impeller speed
Impeller type
Item description
Jacket design gauge pressure
Jacket material
Jacket thickness
Jacket type
Liquid volume
Manhole diameter
Number of body flange sets
Number of impellers
Number of identical items
Number of manholes
Operating temperature
Power function
Quoted cost per item
Remarks 1
Remarks 2
Reynolds number
Shell material
Skirt or leg height
Stiffening ring spacing
Stress relief
Structure tag
Vessel tangent to tangent height
User tag number
Vacuum design gauge pressure
Vessel diameter
Weld efficiency
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Application
Component WBS
Configuration
Consistency Air Dried
Corrosion allowance
Design temperature
Driver speed
Driver type
Hydraulic volume
Impeller diameter
Impeller material
Impeller speed
Impeller type
Item description
Manhole diameter
Number of identical items
Number of manholes
Number of rotors or drives
Power per drive
Pulping rate Air Dried
Quoted cost per item
Remarks 1
68
CpRemarks2
CpSealForShaft
CpShaftLength
CpStructureTag
CpTankLengthDiameter
CpTankVatMaterial
CpUserTag
CpVesselHeight
CpVesselLegHeight
CpVesselWidth
:
:
:
:
:
:
:
:
:
:
Remarks 2
Seal for shaft
Shaft length
Structure tag
Tank length or diameter
Tank or vat material
User tag number
Vessel height
Vessel leg height
Vessel width
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Application
Component WBS
Configuration
Consistency Air Dried
Corrosion allowance
Design temperature
Driver speed
Driver type
Hydraulic volume
Impeller diameter
Impeller material
Impeller speed
Impeller type
Item description
Manhole diameter
Number of identical items
Number of manholes
Number of rotors or drives
Power per drive
Pulping rate Air Dried
Quoted cost per item
Remarks 1
Remarks 2
Seal for shaft
Shaft length
Structure tag
Tank length or diameter
Tank or vat material
User tag number
Vessel height
Vessel leg height
Vessel width
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Agitator power
Application
Base material thickness
Cladding material
Cladding thickness
Component WBS
Corrosion allowance
Design temperature
Diameter option
Driver type
Fluid density
Fluid depth
Fluid viscosity
Impeller diameter
Impeller speed
Impeller type
69
CpItemDescription
CpJacketGaugePressure
CpJacketMaterial
CpJacketThickness
CpJacketType
CpLiquidVolume
CpManholeDiameter
CpNumberBodyFlangeSets
CpNumberImpellers
CpNumberItems
CpNumberManholes
CpOperatingTemperature
CpPowerFunction
CpQuotedCost
CpRemarks1
CpRemarks2
CpReynoldsNumber
CpShellMaterial
CpSkirtLegHeight
CpStiffeningRingSpacing
CpStressRelief
CpStructureTag
CpTangentTangentHeight
CpUserTag
CpVesselDiameter
CpWeldEfficiencyPercent
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Item description
Jacket design gauge pressure
Jacket material
Jacket thickness
Jacket type
Liquid volume
Manhole diameter
Number of body flange sets
Number of impellers
Number of identical items
Number of manholes
Operating temperature
Power function
Quoted cost per item
Remarks 1
Remarks 2
Reynolds number
Shell material
Skirt or leg height
Stiffening ring spacing
Stress relief
Structure tag
Vessel tangent to tangent height
User tag number
Vessel diameter
Weld efficiency
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Agitator power
Application
Base material thickness
Cladding material
Cladding thickness
Component WBS
Corrosion allowance
Design gauge pressure
Design temperature
Diameter option
Driver type
Fluid density
Fluid depth
Fluid viscosity
Impeller diameter
Impeller speed
Impeller type
Item description
Jacket design gauge pressure
Jacket material
Jacket thickness
Jacket type
Liquid volume
Manhole diameter
Number of body flange sets
Number of impellers
Number of identical items
Number of manholes
Operating temperature
Power function
Quoted cost per item
Remarks 1
Remarks 2
Reynolds number
70
CpShellMaterial
CpSkirtLegHeight
CpStiffeningRingSpacing
CpStressRelief
CpStructureTag
CpTangentTangentHeight
CpUserTag
CpVacuumDesignGaugePressure
CpVesselDiameter
CpWeldEfficiencyPercent
:
:
:
:
:
:
:
:
:
:
Shell material
Skirt or leg height
Stiffening ring spacing
Stress relief
Structure tag
Vessel tangent to tangent height
User tag number
Vacuum design gauge pressure
Vessel diameter
Weld efficiency
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Cover type
Item description
Jacket option
Liquid volume
Mounting type
Number of identical items
Operating temperature
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Blender diameter
Blender type
Bulk density
Component WBS
Driver power
Driver type
Flow rate
Item description
Material
Number of identical items
Product residence time
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Liquid volume
Material
Mounting type
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
Belt width
Cantilever length
Component WBS
Conveyor flow rate
71
CpConveyorLength
CpConveyorSpeed
CpDriverPowerPerSection
CpElevationChange
CpGalleryEnclosureType
CpHeightAboveGradeSection
CpHeightGradeSection
CpHeightSlopeSection
CpItemDescription
CpLengthAboveGradeSection
CpLengthGradeSection
CpLengthSlopeSection
CpMaximumLumpSize
CpNumberBeltPlies
CpNumberItems
CpNumberMotors
CpNumberWalkways
CpProductDensity
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpTowerBentSpacing
CpUserTag
CpWalkwayWidth
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Conveyor length
Conveyor speed
Driver power per section
Vertical lift(+) or drop(-)
Gallery enclosure
Height Above grade section
Height Grade section
Height Slope section
Item description
Length Above grade section
Length Grade section
Length Slope section
Maximum lump size
Number of belt plies
Number of identical items
Number of motors
Number of walkways
Product density
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Tower bent spacing
User tag number
Walkway width
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Belt width
Cantilever length
Component WBS
Conveyor flow rate
Conveyor length
Conveyor speed
Driver power per section
Vertical lift(+) or drop(-)
Gallery enclosure
Height Above grade section
Height Grade section
Height Slope section
Item description
Length Above grade section
Length Grade section
Length Slope section
Maximum lump size
Number of belt plies
Number of identical items
Number of motors
Number of walkways
Product density
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Tower bent spacing
User tag number
Walkway width
:
:
:
:
Belt width
Cantilever length
Component WBS
Conveyor flow rate
72
CpConveyorLength
CpConveyorSpeed
CpDriverPowerPerSection
CpElevationChange
CpGalleryEnclosureType
CpHeightAboveGradeSection
CpHeightGradeSection
CpHeightSlopeSection
CpItemDescription
CpLengthAboveGradeSection
CpLengthGradeSection
CpLengthSlopeSection
CpMaximumLumpSize
CpNumberBeltPlies
CpNumberItems
CpNumberMotors
CpNumberWalkways
CpProductDensity
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpTowerBentSpacing
CpUserTag
CpWalkwayWidth
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Conveyor length
Conveyor speed
Driver power per section
Vertical lift(+) or drop(-)
Gallery enclosure
Height Above grade section
Height Grade section
Height Slope section
Item description
Length Above grade section
Length Grade section
Length Slope section
Maximum lump size
Number of belt plies
Number of identical items
Number of motors
Number of walkways
Product density
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Tower bent spacing
User tag number
Walkway width
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Belt width
Component WBS
Conveyor length
Conveyor type
Driver power
Driver type
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Belt width
Component WBS
Driver power
Driver type
Length of incline section
Item description
Length of lead-in section
Length of lead-out section
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
: Belt width
: Component WBS
73
CpDriverPower
CpDriverType
CpElevationChange
CpItemDescription
CpLeadInLength
CpLeadOutLength
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
Driver power
Driver type
Vertical lift(+) or drop(-)
Item description
Length of lead-in section
Length of lead-out section
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Belt support
Belt width
Component WBS
Conveyor length
Dewatering screen
Discharge type
Driver power
Driver type
Item description
Material
Number of identical items
Number of lane dividers
Pneumatic gate
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Casing material
Component WBS
Cooling water pipe plan
Design gauge pressure
Design temperature
Driver power
Driver type
Fluid head
Fluid specific gravity
Fluid viscosity
Item description
Liquid flow rate
Number of identical items
Pump efficiency
Quoted cost per item
Remarks 1
Remarks 2
Pipe plan material type
Pipe plan pipe type
Primary seal pipe plan
Secondary seal pipe plan
Seal type
Speed
Steam gauge pressure
Structure tag
User tag number
74
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design gauge pressure
Design temperature
Driver power
Driver type
Fluid head
Fluid specific gravity
Fluid viscosity
Item description
Liquid flow rate
Number of identical items
Pump efficiency
Quoted cost per item
Remarks 1
Remarks 2
Seal type
Speed
Steam gauge pressure
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design gauge pressure
Design temperature
Driver power
Driver type
Fluid head
Fluid specific gravity
Fluid viscosity
Item description
Liquid flow rate
Number of identical items
Pump efficiency
Quoted cost per item
Remarks 1
Remarks 2
Seal type
Speed
Steam gauge pressure
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Casing material
Component WBS
Cooling water pipe plan
Design gauge pressure
Design temperature
Driver power
Driver type
Fluid head
Fluid specific gravity
Fluid viscosity
Item description
Liquid flow rate
Number of identical items
Pump efficiency
Quoted cost per item
Remarks 1
Remarks 2
75
CpSealPipePlanMaterial
CpSealPipePlanType
CpSealPipePlanTypePrimary
CpSealPipePlanTypeSecondary
CpSealType
CpSpeed
CpSteamGaugePressure
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Casing material
Component WBS
Cooling water pipe plan
Design gauge pressure
Design temperature
Driver power
Driver type
Fluid head
Fluid specific gravity
Fluid viscosity
Item description
Liquid flow rate
Number of identical items
Pump efficiency
Quoted cost per item
Remarks 1
Remarks 2
Pipe plan material type
Pipe plan pipe type
Primary seal pipe plan
Secondary seal pipe plan
Seal type
Speed
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Casing material
Component WBS
Cooling water pipe plan
Design gauge pressure
Design temperature
Driver power
Driver type
Fluid head
Fluid specific gravity
Fluid viscosity
Item description
Liquid flow rate
Number of identical items
Pump efficiency
Quoted cost per item
Remarks 1
Remarks 2
Pipe plan material type
Pipe plan pipe type
Primary seal pipe plan
Secondary seal pipe plan
Seal type
Speed
Structure tag
76
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Casing material
Component WBS
Design gauge pressure
Design temperature
Fluid head
Fluid specific gravity
Fluid viscosity
Item description
Liquid flow rate
Number of identical items
Pump efficiency
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Casing material
Component WBS
Cooling water pipe plan
Design gauge pressure
Design temperature
Driver power
Driver type
Fluid head
Fluid specific gravity
Fluid viscosity
Item description
Liquid flow rate
Number of identical items
Pump efficiency
Quoted cost per item
Remarks 1
Remarks 2
Pipe plan material type
Pipe plan pipe type
Primary seal pipe plan
Secondary seal pipe plan
Seal type
Speed
Steam gauge pressure
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design gauge pressure
Design temperature
Driver power
Fluid head
Fluid specific gravity
Hopper length
Inlet and outlet diameter
Item description
Liquid flow rate
Number of identical items
Product rate
Pump efficiency
77
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
CpWaterProductWeightRatio
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Casing material
Component WBS
Design gauge pressure
Design temperature
Driver power
Driver type
Fluid head
Fluid specific gravity
Fluid viscosity
Item description
Liquid flow rate
Number of identical items
Pump efficiency
Quoted cost per item
Remarks 1
Remarks 2
Seal type
Speed
Steam gauge pressure
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Casing material
Component WBS
Design gauge pressure
Design temperature
Driver power
Driver type
Fluid head
Fluid specific gravity
Fluid viscosity
Item description
Liquid flow rate
Number of identical items
Pump efficiency
Quoted cost per item
Remarks 1
Remarks 2
Seal type
Speed
Steam gauge pressure
Structure tag
User tag number
:
:
:
:
:
:
:
:
Casing material
Component WBS
Cooling water pipe plan
Design gauge pressure
Design temperature
Driver power
Driver type
Fluid head
78
CpFluidSpecificGravity
CpFluidViscosity
CpItemDescription
CpLiquidFlowrate
CpNumberItems
CpPumpEfficiencyPercent
CpQuotedCost
CpRemarks1
CpRemarks2
CpSealPipePlanMaterial
CpSealPipePlanType
CpSealPipePlanTypePrimary
CpSealPipePlanTypeSecondary
CpSealType
CpSpeed
CpSteamGaugePressure
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Casing material
Component WBS
Design gauge pressure
Design temperature
Driver power
Driver type
Fluid head
Fluid specific gravity
Fluid viscosity
Item description
Liquid flow rate
Number of identical items
Pump efficiency
Quoted cost per item
Remarks 1
Remarks 2
Seal type
Speed
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Casing material
Component WBS
Design gauge pressure
Design temperature
Driver power
Driver type
Fluid head
Fluid specific gravity
Fluid viscosity
Item description
Liquid flow rate
Number of identical items
Pump efficiency
Quoted cost per item
Remarks 1
Remarks 2
Speed
Structure tag
User tag number
79
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Casing material
Component WBS
Consistency Air Dried
Design temperature
Driver power
Driver type
Fluid head
Fluid specific gravity
Item description
Liquid flow rate
Number of identical items
Pump efficiency
Quoted cost per item
Remarks 1
Remarks 2
Speed
Steam gauge pressure
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design gauge pressure
Design temperature
Driver power
Driver type
Fluid head
Fluid specific gravity
Item description
Liquid flow rate
Number of identical items
Pump efficiency
Pump size selection
Quoted cost per item
Remarks 1
Remarks 2
Seal type
Speed
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design gauge pressure
Design temperature
Driver power
Driver type
Fluid head
Fluid specific gravity
Item description
Liquid flow rate
Number of identical items
Pump efficiency
Pump size selection
Quoted cost per item
Remarks 1
Remarks 2
Seal type
Speed
Structure tag
User tag number
80
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Boiler capacity
Component WBS
Gas flow rate
Item description
Effective migration velocity
Number of identical items
Particle load
Particle resistance x10E10
Particle size (microns)
Quoted cost per item
Remarks 1
Remarks 2
Removal efficiency
SO3 Concentration (ppm)
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Boiler capacity
Component WBS
Gas flow rate
Item description
Effective migration velocity
Number of identical items
Particle load
Particle resistance x10E10
Particle size (microns)
Quoted cost per item
Remarks 1
Remarks 2
Removal efficiency
SO3 Concentration (ppm)
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Cooker length
Cook time
Cooler length
Driver power
Driver type
Dryer drum diameter
Food flow rate
Item description
Material
Number of identical items
Product density
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
Component WBS
Cooker length
Cook time
Cooler length
Driver power
81
CpDriverType
CpDryerDrumDiameter
CpFoodFlowrate
CpItemDescription
CpMaterial
CpNumberItems
CpProductDensity
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Driver type
Dryer drum diameter
Food flow rate
Item description
Material
Number of identical items
Product density
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Object: DDDTPACKED
CpApplication
: Application
CpASMEDesignBasis
: ASME design basis
CpBaseMaterialBottomSection
: Base material Bottom
CpBaseMaterialTopSection
: Base material Top
CpCladdingMaterialBottomSection
: Cladding material Bottom
CpCladdingMaterialTopSection
: Cladding material Top
CpCladdingThicknessBottomSection
: Cladding thickness Bottom
CpCladdingThicknessTopSection
: Cladding thickness Top
CpComponentWBS
: Component WBS
CpCorrosionAllowanceBottomSection : Corrosion allowance Bottom
CpCorrosionAllowanceTopSection
: Corrosion allowance Top
CpDesignPressureBottomSection
: Design gauge pressure Bottom
CpDesignPressureTopSection
: Design gauge pressure Top
CpDesignTemperatureBottomSection
: Design temperature Bottom
CpDesignTemperatureTopSection
: Design temperature Top
CpDiameterBottomSection
: Diameter Bottom section
CpDiameterTopSection
: Diameter Top section
CpDiameterType
: Diameter option
CpFluidVolumePercent
: Fluid volume
CpItemDescription
: Item description
CpManholeDiameterBottomSection
: Manhole diameter Bottom
CpManholeDiameterTopSection
: Manhole diameter Top
CpMolecularWeightOverheads
: Molecular weight Overhead prod
CpNumberBodyFlangeSetsBottomSection: Number body flange sets Bottom
CpNumberBodyFlangeSetsTopSection
: Number body flange sets Top
CpNumberHydrostaticTests
: Number of hydrostatic tests
CpNumberItems
: Number of identical items
CpNumberManholesBottomSection
: Number of manholes Bottom
CpNumberManholesTopSection
: Number of manholes Top
CpNumberPlatforms
: Number of platforms
CpOperatingTemperatureBottomSection: Operating temperature Bottom
CpOperatingTemperatureTopSection
: Operating temperature Top
CpPackingHeightBottomSection
: Packing height Bottom
CpPackingHeightTopSection
: Packing height Top
CpPackingMaterialBottomSection
: Packing material Bottom
CpPackingMaterialTopSection
: Packing material Top
CpPipeMaterialBottomSection
: Pipe material Bottom
CpPipeMaterialTopSection
: Pipe material Top
CpPressureAmplitudePercent
: Pressure amplitude
CpPressureCycles
: Pressure cycles x 1000
CpQuotedCost
: Quoted cost per item
CpRemarks1
: Remarks 1
CpRemarks2
: Remarks 2
CpSkirtHeight
: Skirt height
CpStartStopCycles
: Start Stop cycles x 1000
CpStiffeningRingSpacingBottomSection: Stiffening ring spacing Bottom
CpStiffeningRingSpacingTopSection : Stiffening ring spacing Top
CpStressRelief
: Stress relief
82
CpStructureTag
:
CpTangentTangentHeightBottomSection:
CpTangentTangentHeightTopSection
:
CpTemperatureAmplitudePercent
:
CpTemperatureCycles
:
CpThicknessBottomSection
:
CpThicknessTopSection
:
CpTransitionHeight
:
CpUserTag
:
CpVacuumDesignGaugePressure
:
CpWeldEfficiencyPercent
:
CpWindSeismicDesign
:
Structure tag
Bottom tangent to tangent height
Top tangent to tangent height
Temperature amplitude
Temperature cycles x 1000
Thickness Bottom section
Thickness Top section
Transition height
User tag number
Vacuum design gauge pressure
Weld efficiency
Wind or seismic design
Object: DDDTTRAYED
CpApplication
: Application
CpASMEDesignBasis
: ASME design basis
CpBaseMaterialBottomSection
: Base material Bottom
CpBaseMaterialTopSection
: Base material Top
CpCladdingMaterialBottomSection
: Cladding material Bottom
CpCladdingMaterialTopSection
: Cladding material Top
CpCladdingThicknessBottomSection
: Cladding thickness Bottom
CpCladdingThicknessTopSection
: Cladding thickness Top
CpComponentWBS
: Component WBS
CpCorrosionAllowanceBottomSection : Corrosion allowance Bottom
CpCorrosionAllowanceTopSection
: Corrosion allowance Top
CpDesignPressureBottomSection
: Design gauge pressure Bottom
CpDesignPressureTopSection
: Design gauge pressure Top
CpDesignTemperatureBottomSection
: Design temperature Bottom
CpDesignTemperatureTopSection
: Design temperature Top
CpDiameterBottomSection
: Diameter Bottom section
CpDiameterTopSection
: Diameter Top section
CpDiameterType
: Diameter option
CpFluidVolumePercent
: Fluid volume
CpItemDescription
: Item description
CpManholeDiameterBottomSection
: Manhole diameter Bottom
CpManholeDiameterTopSection
: Manhole diameter Top
CpMolecularWeightOverheads
: Molecular weight Overhead prod
CpNumberBodyFlangeSetsBottomSection: Number body flange sets Bottom
CpNumberBodyFlangeSetsTopSection
: Number body flange sets Top
CpNumberHydrostaticTests
: Number of hydrostatic tests
CpNumberItems
: Number of identical items
CpNumberManholesBottomSection
: Number of manholes Bottom
CpNumberManholesTopSection
: Number of manholes Top
CpNumberPlatforms
: Number of platforms
CpNumberTraysBottomSection
: Number of trays Bottom section
CpNumberTraysTopSection
: Number of trays Top section
CpOperatingTemperatureBottomSection: Operating temperature Bottom
CpOperatingTemperatureTopSection
: Operating temperature Top
CpPackingHeightBottomSection
: Packing height Bottom
CpPackingHeightTopSection
: Packing height Top
CpPipeMaterialBottomSection
: Pipe material Bottom
CpPipeMaterialTopSection
: Pipe material Top
CpPressureAmplitudePercent
: Pressure amplitude
CpPressureCycles
: Pressure cycles x 1000
CpQuotedCost
: Quoted cost per item
CpRemarks1
: Remarks 1
CpRemarks2
: Remarks 2
CpSkirtHeight
: Skirt height
CpStartStopCycles
: Start Stop cycles x 1000
CpStiffeningRingSpacingBottomSection: Stiffening ring spacing Bottom
CpStiffeningRingSpacingTopSection : Stiffening ring spacing Top
CpStressRelief
: Stress relief
83
CpStructureTag
:
CpTangentTangentHeightBottomSection:
CpTangentTangentHeightTopSection
:
CpTemperatureAmplitudePercent
:
CpTemperatureCycles
:
CpThicknessBottomSection
:
CpThicknessTopSection
:
CpTransitionHeight
:
CpTrayMaterialPackingBottomSection :
CpTrayMaterialPackingTopSection
:
CpTrayThickness
:
CpTrayType
:
CpUserTag
:
CpVacuumDesignGaugePressure
:
CpWeldEfficiencyPercent
:
CpWindSeismicDesign
:
Structure tag
Bottom tangent to tangent height
Top tangent to tangent height
Temperature amplitude
Temperature cycles x 1000
Thickness Bottom section
Thickness Top section
Transition height
Bottom Tray material or Packing
Top Tray material or Packing
Tray thickness
Tray type
User tag number
Vacuum design gauge pressure
Weld efficiency
Wind or seismic design
Object: DF COMPRSDGAS
CpComponentWBS
CpDesignGaugePressureInlet
CpGasFlowrate
CpItemDescription
CpMolecularWeight
CpNumberItems
CpPressureDrop
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpTemperature
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design gauge pressure Inlet
Gas flow rate
Item description
Molecular weight
Number of identical items
Pressure drop
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Temperature
User tag number
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Number of identical items
Pipe diameter
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Cover type
Distribution header
Fluming rate
Item description
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Object: DF RECL-REEL
CpComponentWBS
CpCoverType
CpDistributionHeader
CpFlumingRate
CpItemDescription
:
:
:
:
:
Component WBS
Cover type
Distribution header
Fluming rate
Item description
84
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Application
Component WBS
Consistency Air Dried
Disk diameter
Driver power
Driver speed
Item description
Liquid flow rate
Material
Number of disks
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Solid flow rate
Solids handling rate
Structure tag
Surface area
Tank or vat material
User tag number
Filter vat length
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Application
Component WBS
Consistency Air Dried
Driver power
Driver speed
Drum diameter
Drum length
Item description
Liquid flow rate
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Solid flow rate
Solids handling rate
Structure tag
Surface area
Tank or vat material
User tag number
Object: DF ROTY-DISK
CpApplication
CpComponentWBS
CpConsistencyADPercent
CpDiskDiameter
CpDriverPower
CpDriverSpeed
CpItemDescription
CpLiquidFlowrate
CpMaterial
:
:
:
:
:
:
:
:
:
Application
Component WBS
Consistency Air Dried
Disk diameter
Driver power
Driver speed
Item description
Liquid flow rate
Material
85
CpNumberDisks
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpSolidFlowrate
CpSolidsHandlingRate
CpStructureTag
CpSurfaceArea
CpTankVatMaterial
CpUserTag
CpVatLength
:
:
:
:
:
:
:
:
:
:
:
:
Number of disks
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Solid flow rate
Solids handling rate
Structure tag
Surface area
Tank or vat material
User tag number
Filter vat length
Object: DF ROTY-DRUM
CpApplication
CpComponentWBS
CpConsistencyADPercent
CpDriverPower
CpDriverSpeed
CpDrumDiameter
CpDrumLength
CpItemDescription
CpLiquidFlowrate
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpSolidFlowrate
CpSolidsHandlingRate
CpStructureTag
CpSurfaceArea
CpTankVatMaterial
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Application
Component WBS
Consistency Air Dried
Driver power
Driver speed
Drum diameter
Drum length
Item description
Liquid flow rate
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Solid flow rate
Solids handling rate
Structure tag
Surface area
Tank or vat material
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Body size
Component WBS
Item description
Number of identical items
Pipe diameter
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Style
User tag number
86
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Feed pump type
Head and stand material
Hydraulic closure
Item description
Number of identical items
Number of plates
Plate material
Plate size
Plate thickness
Plate type
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Total plate area
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Body diameter
Body length
Component WBS
Flow rate
Item description
Number of identical items
Pipe diameter
Quoted cost per item
Remarks 1
Remarks 2
Steam gauge pressure
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Body size
Component WBS
Configuration
Item description
Number of identical items
Pipe diameter
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Style
User tag number
Object: DF SAN-AIR
CpAirFlowrate
CpComponentWBS
CpDesignGaugePressure
CpItemDescription
CpNumberItems
CpNumberStages
CpPipeDiameter
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
87
Object: DF SAN-PIPE
CpBodySize
CpComponentWBS
CpItemDescription
CpNumberItems
CpPipeDiameter
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpStyle
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Body size
Component WBS
Item description
Number of identical items
Pipe diameter
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Style
User tag number
Object: DF SAN-PRESS
CpComponentWBS
CpFeedPumpType
CpHeadStandMaterial
CpHydraulicClosure
CpItemDescription
CpNumberItems
CpNumberPlates
CpPlateMaterial
CpPlateSize
CpPlateThickness
CpPlateType
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpTotalPlateArea
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Feed pump type
Head and stand material
Hydraulic closure
Item description
Number of identical items
Number of plates
Plate material
Plate size
Plate thickness
Plate type
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Total plate area
User tag number
Object: DF SAN-STEAM
CpBodyDiameter
CpBodyLength
CpComponentWBS
CpFlowrate
CpItemDescription
CpNumberItems
CpPipeDiameter
CpQuotedCost
CpRemarks1
CpRemarks2
CpSteamGaugePressure
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
Body diameter
Body length
Component WBS
Flow rate
Item description
Number of identical items
Pipe diameter
Quoted cost per item
Remarks 1
Remarks 2
Steam gauge pressure
Structure tag
User tag number
Object: DF SAN-STRAIN
CpBodySize
CpComponentWBS
CpConfiguration
CpItemDescription
CpNumberItems
CpPipeDiameter
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpStyle
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Body size
Component WBS
Configuration
Item description
Number of identical items
Pipe diameter
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Style
User tag number
88
CpComponentWBS
CpContainerType
CpDumpHeight
CpHydraulicPowerPack
CpItemDescription
CpLiftType
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpRetainerHoldDown
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Container type
Dump height
Hydraulic power pack
Item description
Lift type
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Retainer hold down
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Control type
Discharge type
Frame loading type
Item description
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Sack size
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Control type
Discharge type
Frame loading type
Item description
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Sack size
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Enclosure type
Feeder width
Flow rate
Item description
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
Component WBS
Control type
Enclosure type
Flow rate
Item description
Extended auger length
89
CpNumberItems
CpProductDensity
CpProductType
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
CpVolumetricRate
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Enclosure type
Feeder width
Flow rate
Item description
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Control type
Enclosure type
Flow rate
Item description
Extended auger length
Number of identical items
Product density
Product type
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Volumetric rate
Object: DFLRDERRICK
CpComponentWBS
CpFlameEmissivity
CpFlareType
CpGasHeatContent
CpGasMassFlowrate
CpGasTemperature
CpHeightBottomSection
CpHeightMiddleSection
CpHeightTopSection
CpItemDescription
CpMolecularWeight
CpNumberItems
CpQuotedCost
CpRadiationIntensityAllowable
CpRadiationIntensityRadius
CpRemarks1
CpRemarks2
CpShellMaterial
CpSonicVelocityPercent
CpStackDiameterBottomSection
CpStackDiameterMiddleSection
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flame emissivity
Flare type
Gas heat content
Gas mass flow rate
Gas temperature
Height Bottom section
Height Middle section
Height Top section
Item description
Molecular weight
Number of identical items
Quoted cost per item
Allowable radiation intensity
Radius of radiation intensity
Remarks 1
Remarks 2
Shell material
Percent sonic velocity at exit
Diameter Bottom section
Diameter Middle section
90
CpStackDiameterTopSection
CpStructureTag
CpThicknessBottomSection
CpThicknessMiddleSection
CpThicknessTopSection
CpUserTag
:
:
:
:
:
:
Object: DFLRGUYED
CpComponentWBS
CpFlameEmissivity
CpFlareType
CpGasHeatContent
CpGasMassFlowrate
CpGasTemperature
CpHeightBottomSection
CpHeightMiddleSection
CpHeightTopSection
CpItemDescription
CpMolecularWeight
CpNumberItems
CpQuotedCost
CpRadiationIntensityAllowable
CpRadiationIntensityRadius
CpRemarks1
CpRemarks2
CpShellMaterial
CpSonicVelocityPercent
CpStackDiameterBottomSection
CpStackDiameterMiddleSection
CpStackDiameterTopSection
CpStructureTag
CpThicknessBottomSection
CpThicknessMiddleSection
CpThicknessTopSection
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flame emissivity
Flare type
Gas heat content
Gas mass flow rate
Gas temperature
Height Bottom section
Height Middle section
Height Top section
Item description
Molecular weight
Number of identical items
Quoted cost per item
Allowable radiation intensity
Radius of radiation intensity
Remarks 1
Remarks 2
Shell material
Percent sonic velocity at exit
Diameter Bottom section
Diameter Middle section
Diameter Top section
Structure tag
Thickness Bottom section
Thickness Middle section
Thickness Top section
User tag number
Object: DFLRHORIZONTAL
CpComponentWBS
CpFlameEmissivity
CpFlareType
CpGasHeatContent
CpGasMassFlowrate
CpGasTemperature
CpItemDescription
CpLengthBottomSection
CpLengthMiddleSection
CpLengthTopSection
CpMolecularWeight
CpNumberItems
CpQuotedCost
CpRadiationIntensityAllowable
CpRadiationIntensityRadius
CpRemarks1
CpRemarks2
CpShellMaterial
CpSonicVelocityPercent
CpStackDiameterBottomSection
CpStackDiameterMiddleSection
CpStackDiameterTopSection
CpStructureTag
CpThicknessBottomSection
CpThicknessMiddleSection
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flame emissivity
Flare type
Gas heat content
Gas mass flow rate
Gas temperature
Item description
Length Bottom section
Length Middle section
Length Top section
Molecular weight
Number of identical items
Quoted cost per item
Allowable radiation intensity
Radius of radiation intensity
Remarks 1
Remarks 2
Shell material
Percent sonic velocity at exit
Diameter Bottom section
Diameter Middle section
Diameter Top section
Structure tag
Thickness Bottom section
Thickness Middle section
91
CpThicknessTopSection
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flame emissivity
Flare type
Gas heat content
Gas mass flow rate
Gas temperature
Height Bottom section
Height Middle section
Height Top section
Item description
Molecular weight
Number of identical items
Quoted cost per item
Allowable radiation intensity
Radius of radiation intensity
Remarks 1
Remarks 2
Shell material
Percent sonic velocity at exit
Diameter Bottom section
Diameter Middle section
Diameter Top section
Structure tag
Thickness Bottom section
Thickness Middle section
Thickness Top section
User tag number
Object: DFLRSELF-SUPP
CpComponentWBS
CpFlameEmissivity
CpFlareType
CpGasHeatContent
CpGasMassFlowrate
CpGasTemperature
CpHeightBottomSection
CpHeightMiddleSection
CpHeightTopSection
CpItemDescription
CpMolecularWeight
CpNumberItems
CpQuotedCost
CpRadiationIntensityAllowable
CpRadiationIntensityRadius
CpRemarks1
CpRemarks2
CpShellMaterial
CpSonicVelocityPercent
CpStackDiameterBottomSection
CpStackDiameterMiddleSection
CpStackDiameterTopSection
CpStructureTag
CpThicknessBottomSection
CpThicknessMiddleSection
CpThicknessTopSection
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flame emissivity
Flare type
Gas heat content
Gas mass flow rate
Gas temperature
Height Bottom section
Height Middle section
Height Top section
Item description
Molecular weight
Number of identical items
Quoted cost per item
Allowable radiation intensity
Radius of radiation intensity
Remarks 1
Remarks 2
Shell material
Percent sonic velocity at exit
Diameter Bottom section
Diameter Middle section
Diameter Top section
Structure tag
Thickness Bottom section
Thickness Middle section
Thickness Top section
User tag number
92
CpActualGasFlowrateInlet
CpCasingMaterial
CpComponentWBS
CpCompressibilityFactorInlet
CpCompressibilityFactorOutlet
CpCompressorSpeed
CpDesignGaugePressureInlet
CpDesignGaugePressureOutlet
CpDesignTemperatureInlet
CpDriverPower
CpDriverType
CpGearReducerType
CpIntercoolerOutletTemperature
CpInterstageTemperatureMaximum
CpItemDescription
CpLubeOilYN
CpMolecularWeight
CpNumberImpellers
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpSpecificHeatRatio
CpStructureTag
CpTurbineGaugePressure
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
93
CpCasingMaterial
CpComponentWBS
CpCompressibilityFactorInlet
CpCompressibilityFactorOutlet
CpDesignGaugePressureInlet
CpDesignGaugePressureOutlet
CpDesignTemperatureInlet
CpDesignTemperatureOutlet
CpDriverPower
CpDriverSpeed
CpDriverType
CpGasType
CpIntercoolerOutletTemperature
CpInterCoolerYN
CpInterstageTemperatureMaximum
CpItemDescription
CpLubeOilYN
CpMolecularWeight
CpNumberImpellers
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpShopAssemblyYN
CpSpecificHeatRatio
CpStructureTag
CpTurbineGaugePressure
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Casing material
Component WBS
Compressibility factor Inlet
Compressibility factor Outlet
Design gauge pressure Inlet
Design gauge pressure Outlet
Design temperature Inlet
Design temperature Outlet
Driver power
Driver speed
Driver type
Gas type option
Intercooler outlet temperature
Intercooler required
Maximum interstage temperature
Item description
Lube oil system
Molecular weight
Number of impellers
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Shop assembly option
Specific heat ratio
Structure tag
Turbine gauge pressure
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
94
CpDesignGaugePressureInlet
CpDesignGaugePressureOutlet
CpDesignTemperatureInlet
CpDriverPower
CpDriverType
CpGearReducerType
CpIntercoolerOutletTemperature
CpInterstageTemperatureMaximum
CpItemDescription
CpLubeOilYN
CpMolecularWeight
CpNumberItems
CpNumberStages
CpQuotedCost
CpRemarks1
CpRemarks2
CpSpecificHeatRatio
CpStructureTag
CpTurbineGaugePressure
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
95
CpTubeWallThicknessFirstService
CpTubeWallThicknessSecondService
CpTubeWallThicknessThirdService
CpUserTag
:
:
:
:
Tube
Tube
Tube
User
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Double pipe size
Frame option
Item description
Number of identical items
Number of tube passes
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Total tube area
Tube length per pass
Tube material
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Channel material
Cladding location
Cladding material
Cladding thickness
Component WBS
Shell design gauge pressure
Shell design temperature
Tube design temperature
Expansion joint
Heat transfer area
Item description
Number of identical items
Number of shell passes
Number of shells
Number of tube passes
Number of tubes per shell
Shell operating temperature
Tube operating temperature
Quoted cost per item
Regulation type
Remarks 1
Remarks 2
Shell corrosion allowance
Shell diameter
Shell material
Shell side pipe material
Shell wall thickness
Stress relief
Structure tag
TEMA type
Tube corrosion allowance
Tube design gauge pressure
Tube gauge
Tube length extended
Tube material
Tube outside diameter
Tube pitch
Tube pitch symbol
Tube seal type
Tube sheet corrosion allowance
96
CpTubeSheetMaterial
CpTubeSheetThickness
CpTubeSidePipeMaterial
CpTubeWallThickness
CpUserTag
CpVendorGrade
CpWeldXrayPercent
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Channel material
Cladding location
Cladding material
Cladding thickness
Component WBS
Shell design gauge pressure
Shell design temperature
Tube design temperature
Expansion joint
Heat transfer area
Item description
Number of identical items
Number of shell passes
Number of shells
Number of tube passes
Number of tubes per shell
Shell operating temperature
Tube operating temperature
Quoted cost per item
Regulation type
Remarks 1
Remarks 2
Shell corrosion allowance
Shell diameter
Shell material
Shell side pipe material
Shell wall thickness
Stress relief
Structure tag
TEMA type
Tube corrosion allowance
Tube design gauge pressure
Tube gauge
Tube length extended
Tube material
Tube outside diameter
Tube pitch
Tube pitch symbol
Tube seal type
Tube sheet corrosion allowance
Tube sheet material
Tube sheet thickness
Tube side pipe material
Tube wall thickness
User tag number
Vendor grade
Weld Xray
:
:
:
:
Channel material
Cladding location
Cladding material
Cladding thickness
97
CpComponentWBS
CpDesignGaugePressureShell
CpDesignTemperatureShell
CpDesignTemperatureTube
CpExpansionJointYN
CpHeatTransferArea
CpItemDescription
CpNumberItems
CpNumberShellPasses
CpNumberShells
CpNumberTubePasses
CpNumberTubesPerShell
CpOperatingTemperatureShell
CpOperatingTemperatureTube
CpQuotedCost
CpRegulationType
CpRemarks1
CpRemarks2
CpShellCorrosionAllowance
CpShellDiameter
CpShellMaterial
CpShellSidePipeMaterial
CpShellThickness
CpStressRelief
CpStructureTag
CpTEMAType
CpTubeCorrosionAllowance
CpTubeDesignGaugePressure
CpTubeGage
CpTubeLengthExtended
CpTubeMaterial
CpTubeOutsideDiameter
CpTubePitch
CpTubePitchSymbol
CpTubeSealType
CpTubeSheetCorrosionAllowance
CpTubeSheetMaterial
CpTubeSheetThickness
CpTubeSidePipeMaterial
CpTubeWallThickness
CpUserTag
CpVendorGrade
CpWeldXrayPercent
Object: DHE FLOAT-HEAD
CpChannelMaterial
CpCladdingLocation
CpCladdingMaterial
CpCladdingThickness
CpComponentWBS
CpDesignGaugePressureShell
CpDesignTemperatureShell
CpDesignTemperatureTube
CpExpansionJointYN
CpHeatTransferArea
CpItemDescription
CpNumberItems
CpNumberShellPasses
CpNumberShells
CpNumberTubePasses
CpNumberTubesPerShell
CpOperatingTemperatureShell
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Shell design gauge pressure
Shell design temperature
Tube design temperature
Expansion joint
Heat transfer area
Item description
Number of identical items
Number of shell passes
Number of shells
Number of tube passes
Number of tubes per shell
Shell operating temperature
Tube operating temperature
Quoted cost per item
Regulation type
Remarks 1
Remarks 2
Shell corrosion allowance
Shell diameter
Shell material
Shell side pipe material
Shell wall thickness
Stress relief
Structure tag
TEMA type
Tube corrosion allowance
Tube design gauge pressure
Tube gauge
Tube length extended
Tube material
Tube outside diameter
Tube pitch
Tube pitch symbol
Tube seal type
Tube sheet corrosion allowance
Tube sheet material
Tube sheet thickness
Tube side pipe material
Tube wall thickness
User tag number
Vendor grade
Weld Xray
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Channel material
Cladding location
Cladding material
Cladding thickness
Component WBS
Shell design gauge pressure
Shell design temperature
Tube design temperature
Expansion joint
Heat transfer area
Item description
Number of identical items
Number of shell passes
Number of shells
Number of tube passes
Number of tubes per shell
Shell operating temperature
98
CpOperatingTemperatureTube
CpQuotedCost
CpRegulationType
CpRemarks1
CpRemarks2
CpShellCorrosionAllowance
CpShellDiameter
CpShellMaterial
CpShellSidePipeMaterial
CpShellThickness
CpStressRelief
CpStructureTag
CpTEMAType
CpTubeCorrosionAllowance
CpTubeDesignGaugePressure
CpTubeGage
CpTubeLengthExtended
CpTubeMaterial
CpTubeOutsideDiameter
CpTubePitch
CpTubePitchSymbol
CpTubeSealType
CpTubeSheetCorrosionAllowance
CpTubeSheetMaterial
CpTubeSheetThickness
CpTubeSidePipeMaterial
CpTubeWallThickness
CpUserTag
CpVendorGrade
CpWeldXrayPercent
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Condensate return pump
Expansion tank
Item description
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
SS skid water pipe required
Structure tag
Temperature rise
User tag number
Water flow rate
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
99
CpTotalPlateAreaZone3
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design gauge pressure
Design temperature
Heat transfer area
Item description
Number of identical items
Number of plates
Plate material
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design gauge pressure
Design temperature
Heat transfer area
Item description
Number of identical items
Number of plates
Plate material
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
Component WBS
Shell design gauge pressure
Shell design temperature
Tube design temperature
Heat transfer area
Item description
Number of identical items
Number of tubes
Shell operating temperature
100
CpOperatingTemperatureTube
CpQuotedCost
CpRemarks1
CpRemarks2
CpShellCorrosionAllowance
CpShellDiameter
CpShellMaterial
CpShellThickness
CpStructureTag
CpTubeCorrosionAllowance
CpTubeDesignGaugePressure
CpTubeGage
CpTubeLengthExtended
CpTubeMaterial
CpTubeOutsideDiameter
CpTubePitch
CpTubePitchSymbol
CpTubeWallThickness
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Shell design gauge pressure
Shell design temperature
Tube design temperature
Heat transfer area
Item description
Number of identical items
Number of tubes
Shell operating temperature
Tube operating temperature
Quoted cost per item
Remarks 1
Remarks 2
Shell corrosion allowance
Shell diameter
Shell material
Shell wall thickness
Structure tag
Tube corrosion allowance
Tube design gauge pressure
Tube gauge
Tube length extended
Tube material
Tube outside diameter
Tube pitch
Tube pitch symbol
Tube wall thickness
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Liquid flow rate
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Specific heat
Structure tag
Temperature rise
User tag number
101
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Liquid flow rate
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Specific heat
Structure tag
Temperature rise
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Channel material
Cladding location
Cladding material
Cladding thickness
Component WBS
Shell design gauge pressure
Shell design temperature
Tube design temperature
Expansion joint
Front end TEMA symbol
Heat exchanger design option
Heat transfer area
Item description
Number of identical items
Number of shell passes
Number of shells
Number of tube passes
Number of tubes per shell
Shell operating temperature
Tube operating temperature
Quoted cost per item
Rear end TEMA symbol
Regulation type
Remarks 1
Remarks 2
Shell corrosion allowance
Shell diameter
Shell material
Shell side pipe material
Shell TEMA symbol
Shell wall thickness
Stress relief
Structure tag
Tube corrosion allowance
Tube design gauge pressure
Tube gauge
Tube length extended
Tube material
Tube outside diameter
Tube pitch
Tube pitch symbol
Tube seal type
Tube sheet corrosion allowance
Tube sheet material
Tube sheet thickness
Tube side pipe material
Tube wall thickness
102
CpUserTag
CpVendorGrade
CpWeldXrayPercent
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Channel material
Cladding location
Cladding material
Cladding thickness
Component WBS
Shell design gauge pressure
Shell design temperature
Tube design temperature
Expansion joint
Front end TEMA symbol
Heat exchanger design option
Heat transfer area
Item description
Number of identical items
Number of shell passes
Number of shells
Number of tube passes
Number of tubes per shell
Shell operating temperature
Tube operating temperature
Quoted cost per item
Rear end TEMA symbol
Regulation type
Remarks 1
Remarks 2
Shell corrosion allowance
Shell diameter
Shell material
Shell side pipe material
Shell TEMA symbol
Shell wall thickness
Stress relief
Structure tag
Tube corrosion allowance
Tube design gauge pressure
Tube gauge
Tube length extended
Tube material
Tube outside diameter
Tube pitch
Tube pitch symbol
Tube seal type
Tube sheet corrosion allowance
Tube sheet material
Tube sheet thickness
Tube side pipe material
Tube wall thickness
User tag number
Vendor grade
Weld Xray
:
:
:
:
:
Channel material
Cladding location
Cladding material
Cladding thickness
Component WBS
103
CpDesignGaugePressureShell
CpDesignTemperatureShell
CpDesignTemperatureTube
CpExpansionJointYN
CpHeatTransferArea
CpItemDescription
CpNumberItems
CpNumberShellPasses
CpNumberShells
CpNumberTubePasses
CpNumberTubesPerShell
CpOperatingTemperatureShell
CpOperatingTemperatureTube
CpQuotedCost
CpRegulationType
CpRemarks1
CpRemarks2
CpShellCorrosionAllowance
CpShellDiameter
CpShellMaterial
CpShellSidePipeMaterial
CpShellThickness
CpStressRelief
CpStructureTag
CpTEMAType
CpTubeCorrosionAllowance
CpTubeDesignGaugePressure
CpTubeGage
CpTubeLengthExtended
CpTubeMaterial
CpTubeOutsideDiameter
CpTubePitch
CpTubePitchSymbol
CpTubeSealType
CpTubeSheetCorrosionAllowance
CpTubeSheetMaterial
CpTubeSheetThickness
CpTubeSidePipeMaterial
CpTubeWallThickness
CpUserTag
CpVendorGrade
CpWeldXrayPercent
Object: DHE U-TUBE
CpChannelMaterial
CpCladdingLocation
CpCladdingMaterial
CpCladdingThickness
CpComponentWBS
CpDesignGaugePressureShell
CpDesignTemperatureShell
CpDesignTemperatureTube
CpExpansionJointYN
CpHeatTransferArea
CpItemDescription
CpNumberItems
CpNumberShellPasses
CpNumberShells
CpNumberTubePasses
CpNumberTubesPerShell
CpOperatingTemperatureShell
CpOperatingTemperatureTube
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Channel material
Cladding location
Cladding material
Cladding thickness
Component WBS
Shell design gauge pressure
Shell design temperature
Tube design temperature
Expansion joint
Heat transfer area
Item description
Number of identical items
Number of shell passes
Number of shells
Number of tube passes
Number of tubes per shell
Shell operating temperature
Tube operating temperature
104
CpQuotedCost
CpRegulationType
CpRemarks1
CpRemarks2
CpShellCorrosionAllowance
CpShellDiameter
CpShellMaterial
CpShellSidePipeMaterial
CpShellThickness
CpStressRelief
CpStructureTag
CpTEMAType
CpTubeCorrosionAllowance
CpTubeDesignGaugePressure
CpTubeGage
CpTubeLengthExtended
CpTubeMaterial
CpTubeOutsideDiameter
CpTubePitch
CpTubePitchSymbol
CpTubeSealType
CpTubeSheetCorrosionAllowance
CpTubeSheetMaterial
CpTubeSheetThickness
CpTubeSidePipeMaterial
CpTubeWallThickness
CpUserTag
CpVendorGrade
CpWeldXrayPercent
Object: DHT HORIZ DRUM
CpApplication
CpBaseMaterialThickness
CpCladdingMaterial
CpCladdingThickness
CpComponentWBS
CpCorrosionAllowance
CpDemisterArea
CpDemisterThickness
CpDesignGaugePressure
CpDesignTemperature
CpDiameterType
CpDripLegDiameter
CpDripLegLength
CpHeadType
CpInternalsWeightPercent
CpItemDescription
CpLiquidVolume
CpManholeDiameter
CpNumberBodyFlangeSets
CpNumberItems
CpNumberManholes
CpOperatingTemperature
CpQuotedCost
CpRemarks1
CpRemarks2
CpShellMaterial
CpStiffeningRingSpacing
CpStressRelief
CpStructureTag
CpTangentTangentLength
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Application
Base material thickness
Cladding material
Cladding thickness
Component WBS
Corrosion allowance
Demister area
Demister thickness
Design gauge pressure
Design temperature
Diameter option
Diameter of drip leg
Length of drip leg
Head type
Allowance for internals
Item description
Liquid volume
Manhole diameter
Number of body flange sets
Number of identical items
Number of manholes
Operating temperature
Quoted cost per item
Remarks 1
Remarks 2
Shell material
Stiffening ring spacing
Stress relief
Structure tag
Vessel tangent to tangent length
User tag number
105
CpVacuumDesignGaugePressure
CpVesselDiameter
CpWeldEfficiencyPercent
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Application
Base material thickness
Cladding material
Cladding thickness
Component WBS
Corrosion allowance
Demister area
Demister thickness
Design gauge pressure
Design temperature
Diameter option
Diameter of drip leg
Length of drip leg
Head type
Allowance for internals
Item description
Liquid volume
Manhole diameter
Number of body flange sets
Number of identical items
Number of manholes
Operating temperature
Quoted cost per item
Remarks 1
Remarks 2
Shell material
Stiffening ring spacing
Stress relief
Structure tag
Vessel tangent to tangent length
User tag number
Vacuum design gauge pressure
Vessel diameter
Weld efficiency
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Application
Base material thickness
Cladding material
Cladding thickness
Component WBS
Corrosion allowance
Demister area
Demister thickness
Design gauge pressure
Design temperature
Diameter option
Diameter of drip leg
Length of drip leg
Head type
Allowance for internals
Item description
Jacket design gauge pressure
Jacket material
Jacket thickness
Jacket type
Liquid volume
106
CpManholeDiameter
CpNumberBodyFlangeSets
CpNumberItems
CpNumberManholes
CpOperatingTemperature
CpQuotedCost
CpRemarks1
CpRemarks2
CpShellMaterial
CpStiffeningRingSpacing
CpStressRelief
CpStructureTag
CpTangentTangentLength
CpUserTag
CpVacuumDesignGaugePressure
CpVesselDiameter
CpWeldEfficiencyPercent
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Manhole diameter
Number of body flange sets
Number of identical items
Number of manholes
Operating temperature
Quoted cost per item
Remarks 1
Remarks 2
Shell material
Stiffening ring spacing
Stress relief
Structure tag
Vessel tangent to tangent length
User tag number
Vacuum design gauge pressure
Vessel diameter
Weld efficiency
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Application
Base material thickness
Cladding material
Cladding thickness
Component WBS
Corrosion allowance
Demister area
Demister thickness
Design gauge pressure
Design temperature
Diameter option
Diameter of drip leg
Length of drip leg
Head type
Allowance for internals
Item description
Liquid volume
Manhole diameter
Number of body flange sets
Number of identical items
Number of manholes
Operating temperature
Quoted cost per item
Remarks 1
Remarks 2
Shell material
Stiffening ring spacing
Stress relief
Structure tag
Vessel tangent to tangent length
User tag number
Vacuum design gauge pressure
Vessel diameter
Weld efficiency
:
:
:
:
:
:
:
Component WBS
Head type
Item description
Jacket type
Liquid volume
Number of identical items
Operating temperature
107
CpQuotedCost
CpRemarks1
CpRemarks2
CpShellMaterial
CpStructureTag
CpUserTag
CpVesselDiameter
CpVesselLength
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Head type
Item description
Jacket type
Liquid volume
Number of identical items
Operating temperature
Quoted cost per item
Remarks 1
Remarks 2
Shell material
Structure tag
User tag number
Vessel diameter
Vessel length
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver type
Impeller type
Item description
Liquid volume
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Item description
Liquid flow rate per hour
Number of identical items
Operating gauge pressure
Plunger diameter
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
Blender type
Component WBS
Cover type
Driver power per shaft
Driver type
Item description
Jacket option
108
CpLegMaterial
CpLiquidVolume
CpMaterial
CpNumberItems
CpOperatingTemperature
CpQuotedCost
CpRemarks1
CpRemarks2
CpSealForShaft
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Leg material
Liquid volume
Material
Number of identical items
Operating temperature
Quoted cost per item
Remarks 1
Remarks 2
Seal for shaft
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Cooler option
Driver power
Driver type
Item description
Liquid flow rate
Number of identical items
Number of stages
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design gauge pressure
Design temperature
Element material
Flow type
Fluid density
Fluid viscosity
Item description
Liquid flow rate
Mixer length
Number of elements
Number of identical items
Pipe diameter
Pipe material
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design gauge pressure
Design temperature
Fluid head
Fluid specific gravity
Inlet and outlet diameter
Item description
Liquid flow rate
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
109
CpUserTag
Object: DP HD STOCK
CpCasingMaterial
CpComponentWBS
CpConsistencyADPercent
CpDesignGaugePressureOutlet
CpDesignTemperature
CpDriverPower
CpDriverType
CpFluidSpecificGravity
CpItemDescription
CpNumberItems
CpPumpEfficiencyPercent
CpQuotedCost
CpRemarks1
CpRemarks2
CpSpeed
CpSteamGaugePressure
CpStockFlowrateAD
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Casing material
Component WBS
Consistency Air Dried
Design gauge pressure Outlet
Design temperature
Driver power
Driver type
Fluid specific gravity
Item description
Number of identical items
Pump efficiency
Quoted cost per item
Remarks 1
Remarks 2
Speed
Steam gauge pressure
Stock flow rate Air Dried
Structure tag
User tag number
Object: DP ROTARYLOBE
CpComponentWBS
CpDesignGaugePressureOutlet
CpDesignTemperature
CpDriverPower
CpFluidSpecificGravity
CpFluidViscosity
CpImpellerSpeed
CpItemDescription
CpLiquidFlowrate
CpNumberItems
CpPumpSizeSelection
CpQuotedCost
CpReliefCoverType
CpRemarks1
CpRemarks2
CpSealType
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design gauge pressure Outlet
Design temperature
Driver power
Fluid specific gravity
Fluid viscosity
Impeller speed
Item description
Liquid flow rate
Number of identical items
Pump size selection
Quoted cost per item
Relief cover type
Remarks 1
Remarks 2
Seal type
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Cladding location
Cladding material
Cladding thickness
Component WBS
Shell design gauge pressure
Shell design temperature
Tube design temperature
Duty
Heat exchanger design option
Heat of vaporization
Heat transfer area
Item description
Molecular weight Bottoms
Number of identical items
Number of shells
Number of tube passes
Number of tubes per shell
Shell operating temperature
110
CpOperatingTemperatureTube
CpQuotedCost
CpRemarks1
CpRemarks2
CpShellCorrosionAllowance
CpShellDiameter
CpShellMaterial
CpShellSidePipeMaterial
CpShellThickness
CpSpecificGravityBottoms
CpStressRelief
CpStructureTag
CpTEMAType
CpTubeCorrosionAllowance
CpTubeDesignGaugePressure
CpTubeGage
CpTubeLengthExtended
CpTubeMaterial
CpTubeOutsideDiameter
CpTubePitch
CpTubePitchSymbol
CpTubePortDiameter
CpTubeSheetCorrosionAllowance
CpTubeSheetMaterial
CpTubeSheetThickness
CpTubeSidePipeMaterial
CpTubeWallThickness
CpUserTag
CpVaporizationPercent
Object: DRB THERMOSIPH
CpCladdingLocation
CpCladdingMaterial
CpCladdingThickness
CpComponentWBS
CpDesignGaugePressureShell
CpDesignTemperatureShell
CpDesignTemperatureTube
CpDuty
CpHeatExchangerOption
CpHeatOfVaporization
CpHeatTransferArea
CpItemDescription
CpMolecularWeightBottoms
CpNumberItems
CpNumberShells
CpNumberTubePasses
CpNumberTubesPerShell
CpOperatingTemperatureShell
CpOperatingTemperatureTube
CpQuotedCost
CpRemarks1
CpRemarks2
CpShellCorrosionAllowance
CpShellDiameter
CpShellMaterial
CpShellSidePipeMaterial
CpShellThickness
CpSpecificGravityBottoms
CpStressRelief
CpStructureTag
CpTEMAType
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Cladding location
Cladding material
Cladding thickness
Component WBS
Shell design gauge pressure
Shell design temperature
Tube design temperature
Duty
Heat exchanger design option
Heat of vaporization
Heat transfer area
Item description
Molecular weight Bottoms
Number of identical items
Number of shells
Number of tube passes
Number of tubes per shell
Shell operating temperature
Tube operating temperature
Quoted cost per item
Remarks 1
Remarks 2
Shell corrosion allowance
Shell diameter
Shell material
Shell side pipe material
Shell wall thickness
Specific gravity tower bottoms
Stress relief
Structure tag
TEMA type
111
CpThermosiphonType
CpTubeCorrosionAllowance
CpTubeDesignGaugePressure
CpTubeGage
CpTubeLengthExtended
CpTubeMaterial
CpTubeOutsideDiameter
CpTubePitch
CpTubePitchSymbol
CpTubeSheetCorrosionAllowance
CpTubeSheetMaterial
CpTubeSheetThickness
CpTubeSidePipeMaterial
CpTubeWallThickness
CpUserTag
CpVaporizationPercent
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Thermosiphon type
Tube corrosion allowance
Tube design gauge pressure
Tube gauge
Tube length extended
Tube material
Tube outside diameter
Tube pitch
Tube pitch symbol
Tube sheet corrosion allowance
Tube sheet material
Tube sheet thickness
Tube side pipe material
Tube wall thickness
User tag number
Vaporization
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Cladding location
Cladding material
Cladding thickness
Component WBS
Shell design gauge pressure
Shell design temperature
Tube design temperature
Duty
Heat exchanger design option
Heat of vaporization
Heat transfer area
Item description
Molecular weight Bottoms
Number of identical items
Number of shells
Number of tube passes
Number of tubes per shell
Shell operating temperature
Tube operating temperature
Quoted cost per item
Remarks 1
Remarks 2
Shell corrosion allowance
Shell diameter
Shell material
Shell side pipe material
Shell wall thickness
Specific gravity tower bottoms
Stress relief
Structure tag
TEMA type
Tube corrosion allowance
Tube design gauge pressure
Tube gauge
Tube length extended
Tube material
Tube outside diameter
Tube pitch
Tube pitch symbol
Tube port diameter
Tube sheet corrosion allowance
Tube sheet material
Tube sheet thickness
Tube side pipe material
112
CpTubeWallThickness
CpUserTag
CpVaporizationPercent
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Cladding location
Cladding material
Cladding thickness
Component WBS
Shell design gauge pressure
Shell design temperature
Tube design temperature
Duty
Heat exchanger design option
Heat of vaporization
Heat transfer area
Item description
Molecular weight Bottoms
Number of identical items
Number of shells
Number of tube passes
Number of tubes per shell
Shell operating temperature
Tube operating temperature
Quoted cost per item
Remarks 1
Remarks 2
Shell corrosion allowance
Shell diameter
Shell material
Shell side pipe material
Shell wall thickness
Specific gravity tower bottoms
Stress relief
Structure tag
TEMA type
Tube corrosion allowance
Tube design gauge pressure
Tube gauge
Tube length extended
Tube material
Tube outside diameter
Tube pitch
Tube pitch symbol
Tube port diameter
Tube sheet corrosion allowance
Tube sheet material
Tube sheet thickness
Tube side pipe material
Tube wall thickness
User tag number
Vaporization
:
:
:
:
:
:
:
:
Component WBS
Deck lift
Deck surface
Local digital indicator
Floor installation
Item description
Number of identical items
Platform size
113
CpQuotedCost
CpRemarks1
CpRemarks2
CpScaleCapacity
CpStructureTag
CpUserTag
:
:
:
:
:
:
Object: DS SAN-FLOOR
CpComponentWBS
CpDeckLift
CpDeckSurface
CpDigitalIndicatorLocal
CpFloorInstallation
CpItemDescription
CpNumberItems
CpPlatformSize
CpQuotedCost
CpRemarks1
CpRemarks2
CpScaleCapacity
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Deck lift
Deck surface
Local digital indicator
Floor installation
Item description
Number of identical items
Platform size
Quoted cost per item
Remarks 1
Remarks 2
Scale capacity
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Application
Component WBS
Cone section material
Configuration
Contaminant density
Contaminant size
Cyclone diameter
Item description
Liquid flow rate
Main section material
Number of cyclones per manifold
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Object: DSTKSTACK
CpComponentWBS
CpGasTemperature
CpHeightBottomSection
CpHeightMiddleSection
CpHeightTopSection
CpItemDescription
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpShellMaterial
CpStackDiameterBottomSection
CpStackDiameterMiddleSection
CpStackDiameterTopSection
CpStructureTag
CpThicknessBottomSection
CpThicknessMiddleSection
CpThicknessTopSection
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Gas temperature
Height Bottom section
Height Middle section
Height Top section
Item description
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Shell material
Diameter Bottom section
Diameter Middle section
Diameter Top section
Structure tag
Thickness Bottom section
Thickness Middle section
Thickness Top section
User tag number
114
Object: DT THICKENER
CpAdditionalCapacity
CpApplication
CpBaseMaterialThickness
CpBridgeType
CpClarifierPower
CpComponentWBS
CpCorrosionAllowance
CpDesignTemperature
CpDriveHeadType
CpFlocculatorPower
CpFlocculatorYN
CpInternalsWeightPercent
CpItemDescription
CpLiquidVolume
CpManholeDiameter
CpNumberItems
CpNumberManholes
CpOperatingTemperature
CpQuotedCost
CpRakeMechanismMaterial
CpRemarks1
CpRemarks2
CpStructureTag
CpTankVatMaterial
CpUserTag
CpVesselDiameter
CpVesselHeight
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Additional capacity
Application
Base material thickness
Bridge type
Clarifier power
Component WBS
Corrosion allowance
Design temperature
Drive head type
Flocculator power
Flocculator required
Allowance for internals
Item description
Liquid volume
Manhole diameter
Number of identical items
Number of manholes
Operating temperature
Quoted cost per item
Rake and mechanism material
Remarks 1
Remarks 2
Structure tag
Tank or vat material
User tag number
Vessel diameter
Vessel height
Object: DTURTURBOEXP
CpActualGasFlowrateInlet
CpComponentWBS
CpCompressibilityFactorInlet
CpDesignGaugePressureInlet
CpDesignGaugePressureOutlet
CpDesignTemperatureInlet
CpIsentropicEfficiency
CpItemDescription
CpMolecularWeight
CpNumberItems
CpNumSpareCartridges
CpPowerOutput
CpQuotedCost
CpRemarks1
CpRemarks2
CpSpecificHeatRatio
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Object: DTW DC HE TW
CpBaseMaterialThickness
CpCladdingMaterial
CpCladdingThickness
CpComponentWBS
CpCorrosionAllowance
CpDesignGaugePressure
CpDesignTemperature
CpDiameterType
CpDuty
CpFluidVolumePercent
CpGasFlowrateInlet
:
:
:
:
:
:
:
:
:
:
:
115
CpHeadType
CpItemDescription
CpJacketGaugePressure
CpJacketMaterial
CpJacketThickness
CpJacketType
CpManholeDiameter
CpNumberBodyFlangeSets
CpNumberItems
CpNumberManholes
CpNumberPackedSections
CpNumberPlatforms
CpOperatingTemperature
CpPackingHeight1
CpPackingHeight2
CpPackingType1
CpPackingType2
CpQuotedCost
CpRemarks1
CpRemarks2
CpShellMaterial
CpSkirtHeight
CpStiffeningRingSpacing
CpStressRelief
CpStructureTag
CpTangentTangentHeight
CpUserTag
CpVacuumDesignGaugePressure
CpVesselDiameter
CpWeldEfficiencyPercent
CpWindSeismicDesign
Object: DTW PACKED
CpApplication
CpASMEDesignBasis
CpBaseMaterialThickness
CpCladdingMaterial
CpCladdingThickness
CpComponentWBS
CpCorrosionAllowance
CpDemisterThickness
CpDesignGaugePressure
CpDesignTemperature
CpDiameterType
CpFluidVolumePercent
CpHeadType
CpItemDescription
CpJacketGaugePressure
CpJacketMaterial
CpJacketThickness
CpJacketType
CpManholeDiameter
CpMolecularWeightOverheads
CpNumberBodyFlangeSets
CpNumberHydrostaticTests
CpNumberItems
CpNumberManholes
CpNumberPackedSections
CpNumberPlatforms
CpOperatingTemperature
CpPackingType
CpPressureAmplitudePercent
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Head type
Item description
Jacket design gauge pressure
Jacket material
Jacket thickness
Jacket type
Manhole diameter
Number of body flange sets
Number of identical items
Number of manholes
Number of packed sections
Number of platforms
Operating temperature
Packing height Section 1
Packing height Section 2
Packing type Section 1
Packing type Section 2
Quoted cost per item
Remarks 1
Remarks 2
Shell material
Skirt height
Stiffening ring spacing
Stress relief
Structure tag
Vessel tangent to tangent height
User tag number
Vacuum design gauge pressure
Vessel diameter
Weld efficiency
Wind or seismic design
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Application
ASME design basis
Base material thickness
Cladding material
Cladding thickness
Component WBS
Corrosion allowance
Demister thickness
Design gauge pressure
Design temperature
Diameter option
Fluid volume
Head type
Item description
Jacket design gauge pressure
Jacket material
Jacket thickness
Jacket type
Manhole diameter
Molecular weight Overhead prod
Number of body flange sets
Number of hydrostatic tests
Number of identical items
Number of manholes
Number of packed sections
Number of platforms
Operating temperature
Packing type
Pressure amplitude
116
CpPressureCycles
CpQuotedCost
CpRemarks1
CpRemarks2
CpShellMaterial
CpSkirtHeight
CpStartStopCycles
CpStiffeningRingSpacing
CpStressRelief
CpStructureTag
CpTangentTangentHeight
CpTemperatureAmplitudePercent
CpTemperatureCycles
CpTotalPackingHeight
CpUserTag
CpVacuumDesignGaugePressure
CpVesselDiameter
CpWeldEfficiencyPercent
CpWindSeismicDesign
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Application
ASME design basis
Base material thickness
Cladding material
Cladding thickness
Component WBS
Corrosion allowance
Demister thickness
Design gauge pressure
Design temperature
Diameter option
Fluid volume
Head type
Item description
Jacket design gauge pressure
Jacket material
Jacket thickness
Jacket type
Manhole diameter
Molecular weight Overhead prod
Number of body flange sets
Number of hydrostatic tests
Number of identical items
Number of manholes
Number of platforms
Number of trays
Operating temperature
Pressure amplitude
Pressure cycles x 1000
Quoted cost per item
Remarks 1
Remarks 2
Shell material
Skirt height
Start Stop cycles x 1000
Stiffening ring spacing
Stress relief
Structure tag
Vessel tangent to tangent height
Temperature amplitude
Temperature cycles x 1000
117
CpTrayMaterial
CpTraySpacing
CpTrayThickness
CpTrayType
CpUserTag
CpVacuumDesignGaugePressure
CpVesselDiameter
CpWeldEfficiencyPercent
CpWindSeismicDesign
:
:
:
:
:
:
:
:
:
Tray material
Tray spacing
Tray thickness
Tray type
User tag number
Vacuum design gauge pressure
Vessel diameter
Weld efficiency
Wind or seismic design
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Length
Liquid flow rate
118
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpScreenMaterial
CpStructureTag
CpSurfaceArea
CpUserTag
CpWidth
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Consistency Air Dried
Frame material
Item description
Length
Liquid flow rate
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Screen material
Structure tag
Surface area
User tag number
Width
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Basket diameter
Basket height
Basket material
Component WBS
Design gauge pressure
Driver power
Driver speed
Hydraulic capacity
Item description
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Seal type
Shell material
Operating speed
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Fluming rate
Item description
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Screen size
Solids capacity
Spreader option
Structure tag
User tag number
119
CpChestVolume
CpComponentWBS
CpConfiguration
CpDiameterInside
CpExcavationExclusionPercent
CpFloorExclusionPercent
CpFootingsExclusionPercent
CpInstallationOption
CpItemDescription
CpNumberItems
CpProductDensity
CpQuotedCost
CpRemarks1
CpRemarks2
CpRoofThickness
CpShapeSymbol
CpSoilLoadCapacity
CpSoilType
CpStructureTag
CpThicknessBottom
CpTileLiningPercent
CpTileLiningType
CpUserTag
CpVesselHeight
CpWallThicknessBottom
CpWallThicknessTop
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Chest volume
Component WBS
Configuration
Inside diameter
Exclude excavation
Floor exclusion
Footings exclusion
Installation option
Item description
Number of identical items
Product density
Quoted cost per item
Remarks 1
Remarks 2
Roof thickness
Shape symbol
Soil load capacity
Soil type
Structure tag
Thickness Bottom
Tile or lining
Tile or lining type
User tag number
Vessel height
Wall thickness Bottom
Wall thickness Top
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Chest volume
Component WBS
Configuration
Exclude excavation
120
CpFloorExclusionPercent
CpFootingsExclusionPercent
CpGroupType
CpGroupVolume
CpInsideLength
CpInsideWidth
CpInstallationOption
CpItemDescription
CpNumberChestsInGroup
CpNumberItems
CpNumberPartitionsLengthwise
CpNumberPartitionsWidthwise
CpProductDensity
CpQuotedCost
CpRemarks1
CpRemarks2
CpRoofThickness
CpSoilLoadCapacity
CpSoilType
CpStructureTag
CpThicknessBottom
CpTileLiningPercent
CpTileLiningType
CpUserTag
CpVesselHeight
CpWallLengthExclusionPercent
CpWallThicknessBottom
CpWallThicknessTop
CpWallWidthExclusionPercent
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Floor exclusion
Footings exclusion
Grouping option
Volume of group
Inside length
Inside width
Installation option
Item description
Number of chests in group
Number of identical items
Number of partitions lengthwise
Number of partitions widthwise
Product density
Quoted cost per item
Remarks 1
Remarks 2
Roof thickness
Soil load capacity
Soil type
Structure tag
Thickness Bottom
Tile or lining
Tile or lining type
User tag number
Vessel height
Wall length exclusion
Wall thickness Bottom
Wall thickness Top
Wall width exclusion
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Chest volume
Component WBS
Configuration
Inside diameter
Exclude excavation
Floor exclusion
Footings exclusion
Installation option
Item description
Number of identical items
Product density
Quoted cost per item
Remarks 1
Remarks 2
Roof thickness
Shape symbol
Soil load capacity
Soil type
Structure tag
Thickness Bottom
Tile or lining
Tile or lining type
User tag number
Vessel height
Wall thickness Bottom
Wall thickness Top
121
CpCladdingThickness
CpComponentWBS
CpCorrosionAllowance
CpDesignGaugePressure
CpDesignTemperature
CpDiameterType
CpFluidSpecificGravity
CpInternalsWeightPercent
CpItemDescription
CpLiquidVolume
CpManholeDiameter
CpNumberItems
CpNumberManholes
CpOperatingTemperature
CpQuotedCost
CpRemarks1
CpRemarks2
CpRoofType
CpShellMaterial
CpStructureTag
CpTileLiningPercent
CpTileLiningType
CpUserTag
CpVesselDiameter
CpVesselHeight
Object: DVT CHEST-REC
CpChestVolume
CpComponentWBS
CpConfiguration
CpExcavationExclusionPercent
CpFloorExclusionPercent
CpFootingsExclusionPercent
CpGroupType
CpGroupVolume
CpInsideLength
CpInsideWidth
CpInstallationOption
CpItemDescription
CpNumberChestsInGroup
CpNumberItems
CpNumberPartitionsLengthwise
CpNumberPartitionsWidthwise
CpProductDensity
CpQuotedCost
CpRemarks1
CpRemarks2
CpRoofThickness
CpSoilLoadCapacity
CpSoilType
CpStructureTag
CpThicknessBottom
CpTileLiningPercent
CpTileLiningType
CpUserTag
CpVesselHeight
CpWallLengthExclusionPercent
CpWallThicknessBottom
CpWallThicknessTop
CpWallWidthExclusionPercent
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Cladding thickness
Component WBS
Corrosion allowance
Design gauge pressure
Design temperature
Diameter option
Fluid specific gravity
Allowance for internals
Item description
Liquid volume
Manhole diameter
Number of identical items
Number of manholes
Operating temperature
Quoted cost per item
Remarks 1
Remarks 2
Roof type
Shell material
Structure tag
Tile or lining
Tile or lining type
User tag number
Vessel diameter
Vessel height
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Chest volume
Component WBS
Configuration
Exclude excavation
Floor exclusion
Footings exclusion
Grouping option
Volume of group
Inside length
Inside width
Installation option
Item description
Number of chests in group
Number of identical items
Number of partitions lengthwise
Number of partitions widthwise
Product density
Quoted cost per item
Remarks 1
Remarks 2
Roof thickness
Soil load capacity
Soil type
Structure tag
Thickness Bottom
Tile or lining
Tile or lining type
User tag number
Vessel height
Wall length exclusion
Wall thickness Bottom
Wall thickness Top
Wall width exclusion
122
CpASMEDesignBasis
CpBaseMaterialThickness
CpCladdingMaterial
CpCladdingThickness
CpComponentWBS
CpCorrosionAllowance
CpDesignGaugePressure
CpDesignTemperature
CpDiameterType
CpFluidSpecificGravity
CpHeadThicknessBottom
CpHeadThicknessTop
CpInternalsWeightPercent
CpItemDescription
CpLiquidVolume
CpManholeDiameter
CpNumberBodyFlangeSets
CpNumberHydrostaticTests
CpNumberItems
CpNumberManholes
CpOperatingTemperature
CpPressureAmplitudePercent
CpPressureCycles
CpQuotedCost
CpRemarks1
CpRemarks2
CpShellMaterial
CpStartStopCycles
CpStressRelief
CpStructureTag
CpTemperatureAmplitudePercent
CpTemperatureCycles
CpUserTag
CpVesselDiameter
CpVesselHeight
CpVesselLegHeight
Object: DVT CRYOGENIC
CpBaseMaterialThickness
CpComponentWBS
CpCorrosionAllowance
CpDesignGaugePressure
CpDesignTemperature
CpDiameterType
CpFluidVolumePercent
CpHeadType
CpInternalsWeightPercent
CpItemDescription
CpJacketGaugePressure
CpJacketMaterial
CpJacketThickness
CpLiquidVolume
CpManholeDiameter
CpNumberItems
CpNumberManholes
CpOperatingTemperature
CpQuotedCost
CpRemarks1
CpRemarks2
CpShellMaterial
CpSkirtHeight
CpStiffeningRingSpacing
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
123
CpStressRelief
CpStructureTag
CpTangentTangentHeight
CpUserTag
CpVacuumDesignGaugePressure
CpVesselDiameter
CpVesselLegHeight
CpWeldEfficiencyPercent
CpWindSeismicDesign
:
:
:
:
:
:
:
:
:
Stress relief
Structure tag
Vessel tangent to tangent height
User tag number
Vacuum design gauge pressure
Vessel diameter
Vessel leg height
Weld efficiency
Wind or seismic design
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Application
ASME design basis
Base material thickness
Cladding material
Cladding thickness
Component WBS
Corrosion allowance
Demister area
Demister thickness
Design gauge pressure
Design temperature
Diameter option
Fluid volume
Head thickness Bottom
Head thickness Top
Head type
Allowance for internals
Item description
Liquid volume
Manhole diameter
Number of body flange sets
Number of hydrostatic tests
Number of identical items
Number of manholes
Operating temperature
Pressure amplitude
Pressure cycles x 1000
Quoted cost per item
Remarks 1
Remarks 2
Shell material
Skirt height
Start Stop cycles x 1000
Stiffening ring spacing
Stress relief
Structure tag
Vessel tangent to tangent height
Temperature amplitude
Temperature cycles x 1000
User tag number
Vacuum design gauge pressure
Vessel diameter
Vessel leg height
Weld efficiency
Wind or seismic design
:
:
:
:
124
CpCorrosionAllowance
CpDesignGaugePressure
CpDesignTemperature
CpDiameterType
CpGasVolume
CpInternalsWeightPercent
CpItemDescription
CpManholeDiameter
CpNumberItems
CpNumberManholes
CpOperatingTemperature
CpQuotedCost
CpRemarks1
CpRemarks2
CpShellMaterial
CpStructureTag
CpUserTag
CpVesselDiameter
CpVesselHeight
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Corrosion allowance
Design gauge pressure
Design temperature
Diameter option
Gas volume
Allowance for internals
Item description
Manhole diameter
Number of identical items
Number of manholes
Operating temperature
Quoted cost per item
Remarks 1
Remarks 2
Shell material
Structure tag
User tag number
Vessel diameter
Vessel height
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Application
ASME design basis
Base material thickness
Cladding material
Cladding thickness
Component WBS
Corrosion allowance
Demister area
Demister thickness
Design gauge pressure
Design temperature
Diameter option
Fluid volume
Head thickness Bottom
Head thickness Top
Head type
Allowance for internals
Item description
Jacket design gauge pressure
Jacket material
Jacket thickness
Jacket type
Liquid volume
Manhole diameter
Number of body flange sets
Number of hydrostatic tests
Number of identical items
Number of manholes
Operating temperature
Pressure amplitude
Pressure cycles x 1000
Quoted cost per item
Remarks 1
Remarks 2
Shell material
Skirt height
Start Stop cycles x 1000
Stiffening ring spacing
Stress relief
Structure tag
Vessel tangent to tangent height
125
CpTemperatureAmplitudePercent
CpTemperatureCycles
CpUserTag
CpVacuumDesignGaugePressure
CpVesselDiameter
CpVesselLegHeight
CpWeldEfficiencyPercent
CpWindSeismicDesign
:
:
:
:
:
:
:
:
Temperature amplitude
Temperature cycles x 1000
User tag number
Vacuum design gauge pressure
Vessel diameter
Vessel leg height
Weld efficiency
Wind or seismic design
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Application
ASME design basis
Base material thickness
Cladding material
Cladding thickness
Component WBS
Corrosion allowance
Demister area
Demister thickness
Design gauge pressure
Design temperature
Diameter option
Fluid volume
Head thickness Bottom
Head thickness Top
Head type
Allowance for internals
Item description
Liquid volume
Manhole diameter
Number of body flange sets
Number of hydrostatic tests
Number of identical items
Number of manholes
126
CpOperatingTemperature
CpPressureAmplitudePercent
CpPressureCycles
CpQuotedCost
CpRemarks1
CpRemarks2
CpShellMaterial
CpSkirtHeight
CpStartStopCycles
CpStiffeningRingSpacing
CpStressRelief
CpStructureTag
CpTangentTangentHeight
CpTemperatureAmplitudePercent
CpTemperatureCycles
CpUserTag
CpVacuumDesignGaugePressure
CpVesselDiameter
CpVesselLegHeight
CpWeldEfficiencyPercent
CpWindSeismicDesign
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Operating temperature
Pressure amplitude
Pressure cycles x 1000
Quoted cost per item
Remarks 1
Remarks 2
Shell material
Skirt height
Start Stop cycles x 1000
Stiffening ring spacing
Stress relief
Structure tag
Vessel tangent to tangent height
Temperature amplitude
Temperature cycles x 1000
User tag number
Vacuum design gauge pressure
Vessel diameter
Vessel leg height
Weld efficiency
Wind or seismic design
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Agitator height
Application
Component WBS
Conveyor belt option
Conveyor driver power
Conveyor driver type
Distance floor to hopper top
Hopper diameter
Hopper support details
Item description
Material
Number of identical items
Pneumatic actuators
Product density
Product discharge mechanism
Product flow rate
Quoted cost per item
Remarks 1
Remarks 2
Solid volume
Structure tag
User tag number
Weigh cells required
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Application
Bottom type
Component WBS
Cover type
Item description
Jacket type
Liquid volume
Number of identical items
Operating temperature
Quoted cost per item
Remarks 1
Remarks 2
Shell material
Structure tag
127
CpUserTag
CpVesselDiameter
CpVesselHeight
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Application
Bottom type
Component WBS
Cover type
Item description
Jacket type
Liquid volume
Number of identical items
Operating temperature
Quoted cost per item
Remarks 1
Remarks 2
Shell material
Structure tag
User tag number
Vessel diameter
Vessel height
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
128
CpDiameterType
CpInternalsWeightPercent
CpItemDescription
CpLiquidVolume
CpManholeDiameter
CpNumberItems
CpNumberManholes
CpOperatingTemperature
CpQuotedCost
CpRemarks1
CpRemarks2
CpShellMaterial
CpStructureTag
CpUserTag
CpVesselDiameter
CpVesselHeight
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Diameter option
Allowance for internals
Item description
Liquid volume
Manhole diameter
Number of identical items
Number of manholes
Operating temperature
Quoted cost per item
Remarks 1
Remarks 2
Shell material
Structure tag
User tag number
Vessel diameter
Vessel height
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Object: DWTSAERATOR
CpAerationCapacity
CpAeratorType
CpComponentWBS
CpDriverPower
CpDriverSpeed
CpImpellerDiameter
CpImpellerSpeed
CpItemDescription
CpMaterial
CpNumberItems
CpNumberPontoons
CpQuotedCost
CpRemarks1
:
:
:
:
:
:
:
:
:
:
:
:
:
Aeration capacity
Aerator type
Component WBS
Driver power
Driver speed
Impeller diameter
Impeller speed
Item description
Material
Number of identical items
Number of pontoons
Quoted cost per item
Remarks 1
129
CpRemarks2
CpStructureTag
CpUserTag
: Remarks 2
: Structure tag
: User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
130
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
131
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
132
CpDriverPower
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
Driver power
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Gas flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
: Component WBS
: Driver power
: Item description
133
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Driver type
Impeller diameter
Impeller speed
Impeller type
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Driver type
Impeller diameter
Impeller speed
Impeller type
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
134
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Cell volume
Component WBS
Driver power
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Cell volume
Component WBS
Driver power
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Material
Number of cells
Number of cells per motor
Number of identical items
Power per drive
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Volume per cell
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Material
Number of cells
Number of cells per motor
Number of identical items
Power per drive
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Volume per cell
: Blender volume
: Component WBS
: Driver power
135
CpDriverSpeed
CpItemDescription
CpMaterial
CpNumberItems
CpProductDensity
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
Driver speed
Item description
Material
Number of identical items
Product density
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Blender volume
Component WBS
Driver power
Driver speed
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Object: EC BAROMETRIC
CpComponentWBS
CpFlowrate
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
CpWaterFlowrate
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Water flow rate
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Crane Capacity
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Second hook capacity
Span
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
Component WBS
Crane Capacity
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Second hook capacity
136
CpSpan
CpStructureTag
CpUserTag
: Span
: Structure tag
: User tag number
:
:
:
:
:
:
:
:
:
:
:
Beam length
Component WBS
Crane Capacity
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Conveyor flow rate
Conveyor length
Conveyor width
Driver power
Item description
Material
Number of identical items
Product density
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Bucket width
Component WBS
Conveyor flow rate
Conveyor length
Driver power
Item description
Material
Number of identical items
Product density
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Bucket width
Component WBS
Conveyor flow rate
Conveyor length
Driver power
Item description
Material
Number of identical items
Product density
Quoted cost per item
Remarks 1
Remarks 2
137
CpStructureTag
CpUserTag
: Structure tag
: User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Bucket width
Component WBS
Conveyor flow rate
Conveyor length
Driver power
Item description
Material
Number of identical items
Product density
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Bucket width
Component WBS
Conveyor flow rate
Conveyor length
Driver power
Item description
Material
Number of identical items
Product density
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Conveyor flow rate
Conveyor length
Item description
Material
Number of identical items
Product density
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Tube diameter
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Conveyor length
Conveyor width
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Roller spacing
Structure tag
138
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Belt width
Component WBS
Conveyor length
Conveyor type
Driver power
Driver type
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Belt width
Component WBS
Driver power
Driver type
Length of incline section
Item description
Length of lead-in section
Length of lead-out section
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Belt width
Component WBS
Driver power
Driver type
Vertical lift(+) or drop(-)
Item description
Length of lead-in section
Length of lead-out section
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
Belt support
Belt width
Component WBS
Conveyor length
Dewatering screen
Discharge type
Driver power
Driver type
Item description
139
CpMaterial
CpNumberItems
CpNumberLaneDividers
CpPneumaticGateRequired
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
Material
Number of identical items
Number of lane dividers
Pneumatic gate
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Conveyor flow rate
Conveyor length
Driver power
Item description
Material
Number of identical items
Product density
Quoted cost per item
Remarks 1
Remarks 2
Screw diameter
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Conveyor flow rate
Conveyor length
Item description
Material
Number of identical items
Pan width
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design temperature
Driver power
Fluid head
Fluid specific gravity
Item description
Liquid flow rate
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
Component WBS
Design temperature
Driver power
Fluid head
Fluid specific gravity
140
CpItemDescription
CpLiquidFlowrate
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
Item description
Liquid flow rate
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Crusher flow rate
Driver power
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Crusher flow rate
Crusher type
Driver power
Item description
Mantle diameter
Material
Number of identical items
Product size
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Crusher flow rate
Driver power
Item description
Material
Number of identical items
Product size
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
Component WBS
Crusher flow rate
Crusher type
Driver power
Item description
Mantle diameter
Material
Number of identical items
141
CpProductSize
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
Product size
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Crusher flow rate
Driver power
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Crusher flow rate
Driver power
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Crusher flow rate
Driver power
Item description
Material
Number of identical items
Product size
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Flow rate
Item description
Material
Number of identical items
Feed size
Product size
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
142
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Crusher flow rate
Driver power
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Crusher flow rate
Driver power
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Crusher flow rate
Driver power
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Crusher flow rate
Driver power
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
Component WBS
Crusher flow rate
Driver power
Item description
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
143
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Crusher flow rate
Driver power
Item description
Material
Number of identical items
Product size
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Crusher flow rate
Driver power
Item description
Material
Number of identical items
Product size
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Crusher flow rate
Driver power
Item description
Material
Number of identical items
Product size
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Crusher flow rate
Driver power
Item description
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
Component WBS
Crusher flow rate
Driver power
Item description
Material
144
CpNumberItems
CpProductSize
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Crusher flow rate
Driver power
Item description
Material
Number of identical items
Product size
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Crusher flow rate
Driver power
Item description
Material
Number of identical items
Product size
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Crusher flow rate
Driver power
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Crusher flow rate
Driver power
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
145
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Crusher flow rate
Driver power
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Crystallizer rate
Item description
Liquid volume
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Object: ECRYMECHANICAL
CpComponentWBS
CpCrystallizerRate
CpDriverPower
CpItemDescription
CpLength
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpSpeed
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Crystallizer rate
Driver power
Item description
Length
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Speed
Structure tag
User tag number
Object: ECRYOSLO
CpComponentWBS
CpCrystallizerRate
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
Component WBS
Crystallizer rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
Component WBS
Driver power
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
146
CpRemarks2
CpStructureTag
CpUserTag
: Remarks 2
: Structure tag
: User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Centrifuge diameter
Component WBS
Driver power
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
147
:
:
:
:
:
:
:
:
:
:
:
:
Centrifuge diameter
Component WBS
Driver power
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Centrifuge diameter
Component WBS
Driver power
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Centrifuge diameter
Component WBS
Driver power
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
Centrifuge diameter
Component WBS
Driver power
Flow rate
Item description
148
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Centrifuge diameter
Component WBS
Driver power
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Centrifuge diameter
Component WBS
Driver power
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
Bowl diameter
Bowl length
Component WBS
Driver power
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
149
CpRemarks2
CpStructureTag
CpUserTag
: Remarks 2
: Structure tag
: User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Bowl diameter
Bowl length
Component WBS
Driver power
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Centrifuge diameter
Component WBS
Driver power
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Centrifuge diameter
Component WBS
Driver power
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Bowl diameter
Bowl length
Component WBS
Driver power
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
150
:
:
:
:
:
:
:
:
:
:
:
:
:
Centrifuge capacity
Centrifuge diameter
Component WBS
Driver power
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Bowl diameter
Component WBS
Driver power
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Object: ECTWCOOLING
CpApproachGradient
CpComponentWBS
CpItemDescription
CpLengthEachHeader
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpTemperatureRange
CpUserTag
CpWaterFlowrate
CpWetBulbTemperature
:
:
:
:
:
:
:
:
:
:
:
:
:
Approach gradient
Component WBS
Item description
Length each header
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Temperature range
User tag number
Water flow rate
Wet bulb temperature
Object: ECTWCOOLING WP
CpApproachGradient
CpComponentWBS
: Approach gradient
: Component WBS
151
CpItemDescription
CpLengthEachHeader
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpTemperatureRange
CpUserTag
CpWaterFlowrate
CpWetBulbTemperature
:
:
:
:
:
:
:
:
:
:
:
Item description
Length each header
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Temperature range
User tag number
Water flow rate
Wet bulb temperature
Object: ECTWCOOLING-WP
CpApproachGradient
CpComponentWBS
CpItemDescription
CpLengthEachHeader
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpTemperatureRange
CpUserTag
CpWaterFlowrate
CpWetBulbTemperature
:
:
:
:
:
:
:
:
:
:
:
:
:
Approach gradient
Component WBS
Item description
Length each header
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Temperature range
User tag number
Water flow rate
Wet bulb temperature
Object: ECTWPACKAGED
CpApproachGradient
CpComponentWBS
CpItemDescription
CpNumberCells
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpTemperatureRange
CpUserTag
CpWaterFlowrate
CpWetBulbTemperature
:
:
:
:
:
:
:
:
:
:
:
:
:
Approach gradient
Component WBS
Item description
Number of cells
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Temperature range
User tag number
Water flow rate
Wet bulb temperature
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Tray area
User tag number
Object: ED ATMOS-TRAY
CpComponentWBS
CpFlowrate
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
:
:
:
:
:
:
Component WBS
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
152
CpRemarks1
CpRemarks2
CpStructureTag
CpTrayArea
CpUserTag
:
:
:
:
:
Remarks 1
Remarks 2
Structure tag
Tray area
User tag number
Object: ED PAN
CpComponentWBS
CpDiameter
CpDriverPower
CpFlowrate
CpItemDescription
CpMaterial
CpNumberItems
CpPanDepth
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpSurfaceArea
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Diameter
Driver power
Flow rate
Item description
Material
Number of identical items
Pan depth
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Surface area
User tag number
Object: ED SPRAY
CpComponentWBS
CpDesignTemperatureInlet
CpEvaporationRate
CpFlowrate
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design temperature Inlet
Evaporation rate
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Tray area
User tag number
Object: ED VAC-TRAY
CpComponentWBS
CpFlowrate
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpTrayArea
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Tray area
User tag number
153
:
:
:
:
:
:
:
:
:
:
:
Air temperature
Component WBS
Gas flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Air temperature
Component WBS
Gas flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Air temperature
Component WBS
Cyclone diameter
Pressure drop
Gas flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
Component WBS
Gas flow rate
Item description
Material
154
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Gas flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Cyclone diameter
Gas flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Cyclone diameter
Gas flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
155
CpAirTemperature
CpComponentWBS
CpGasFlowrate
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Air temperature
Component WBS
Gas flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Driver speed
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Surface area
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Driver speed
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Surface area
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Driver speed
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Surface area
User tag number
:
:
:
:
Component WBS
Driver power
Flow rate
Heat transfer area
156
CpItemDescription
CpLiquidVolume
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpSpeed
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
Item description
Liquid volume
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Speed
Structure tag
User tag number
Object: EE FALL-FILM
CpComponentWBS
CpDriverPower
CpFlowrate
CpHeatTransferArea
CpItemDescription
CpLiquidVolume
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpSpeed
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Flow rate
Heat transfer area
Item description
Liquid volume
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Speed
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Heat transfer area
Item description
Liquid volume
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Speed
Structure tag
Tube material
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Heat transfer area
Item description
Liquid volume
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
Component WBS
Flow rate
Item description
Material
157
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpSurfaceArea
CpTubeMaterial
CpUserTag
:
:
:
:
:
:
:
:
Object: EE LONG-VERT
CpComponentWBS
CpFlowrate
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpSurfaceArea
CpTubeMaterial
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Surface area
Tube material
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Item description
Liquid volume
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Surface area
Tube material
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Item description
Liquid volume
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Surface area
Tube material
User tag number
Object: EE STAND-HOR
CpComponentWBS
CpFlowrate
CpItemDescription
CpLiquidVolume
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Item description
Liquid volume
Material
Number of identical items
Quoted cost per item
Remarks 1
158
CpRemarks2
CpStructureTag
CpSurfaceArea
CpTubeMaterial
CpUserTag
:
:
:
:
:
Remarks 2
Structure tag
Surface area
Tube material
User tag number
Object: EE STAND-VERT
CpComponentWBS
CpFlowrate
CpItemDescription
CpLiquidVolume
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpSurfaceArea
CpTubeMaterial
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Item description
Liquid volume
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Surface area
Tube material
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Material
Number of identical items
Output KW
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver type
Item description
Material
Number of identical items
Output KVA
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver type
Item description
Material
Number of identical items
Output KVA
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
159
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpSuctionAbsolutePressure
CpUserTag
:
:
:
:
:
:
:
:
:
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Suction absolute pressure
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
160
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Elevator capacity
Height
Item description
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Elevator capacity
Height
Item description
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
161
Object: EF CARTRIDGE
CpComponentWBS
CpItemDescription
CpLiquidFlowrate
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Liquid flow rate
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Object: EF LEAF-DRY
CpBatchFlowrate
CpComponentWBS
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpSurfaceArea
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Object: EF LEAF-WET
CpBatchFlowrate
CpComponentWBS
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
:
:
:
:
:
:
:
:
:
162
CpSurfaceArea
CpUserTag
: Surface area
: User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Object: EF PLATE+FRAM
CpBatchFlowrate
CpComponentWBS
CpFrameCapacity
CpItemDescription
CpMaterial
CpNumberItems
CpPlateSize
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Object: EF SCROLL
CpComponentWBS
CpDriverPower
CpFilterFlowrate
CpItemDescription
CpMaterial
CpNumberItems
CpProductFeedSizeSelection
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Filter flow rate
Item description
Material
Number of identical items
Feed size selection
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Object: EF SEWAGE
CpComponentWBS
CpFlowrate
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpSurfaceArea
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Surface area
User tag number
Object: EF SPARKLER
CpComponentWBS
CpItemDescription
CpMaterial
: Component WBS
: Item description
: Material
163
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpSparklerDiameter
CpSparklerVolume
CpStructureTag
CpSurfaceArea
CpUserTag
:
:
:
:
:
:
:
:
:
Object: EF TUBULAR
CpComponentWBS
CpItemDescription
CpLiquidFlowrate
CpMaterial
CpMeshSize
CpNumberItems
CpOperationMode
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Liquid flow rate
Material
Mesh size
Number of identical items
Mode of operation
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Object: EF WHITEWATER
CpComponentWBS
CpConsistencyADPercent
CpItemDescription
CpLiquidFlowrate
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
Component WBS
Consistency Air Dried
Item description
Liquid flow rate
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Feeder rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Diameter
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
164
CpComponentWBS
CpDiameter
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
Component WBS
Diameter
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Rotary feeder diameter
Speed
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Conveyor flow rate
Driver power
Feeder width
Item description
Length
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
Component WBS
Driver power
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
165
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Speed
Structure tag
Surface area
User tag number
Object: EFLRSTORAGE
CpComponentWBS
CpGasHeatContentPerVolume
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStandardGasLoadrate
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Gas heat content
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Standard gas load rate
Structure tag
User tag number
Object: EFLRTHRM OX LC
CpComponentWBS
CpGasHeatContentPerVolume
CpGasO2Percent
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStandardGasFlowrate
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Gas heat content
Gas oxygen content
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Standard gas flow rate
Structure tag
User tag number
Object: EFLRTHRM-OX LC
CpComponentWBS
CpGasHeatContentPerVolume
CpGasO2Percent
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStandardGasFlowrate
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Gas heat content
Gas oxygen content
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Standard gas flow rate
Structure tag
User tag number
166
CpActualGasFlowrate
CpComponentWBS
CpDesignGaugePressureOutlet
CpDriverPower
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpSpeed
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
167
CpDriverPower
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpSpeed
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
Driver power
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Speed
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design gauge pressure
Design temperature
Duty
Item description
Material
Number of identical items
Process type
Quoted cost per item
Remarks 1
Remarks 2
Standard gas flow rate
Structure tag
User tag number
:
:
:
:
:
Component WBS
Design gauge pressure
Design temperature
Duty
Item description
168
CpMaterial
CpNumberItems
CpProcessType
CpQuotedCost
CpRemarks1
CpRemarks2
CpStandardGasFlowrate
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
Material
Number of identical items
Process type
Quoted cost per item
Remarks 1
Remarks 2
Standard gas flow rate
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design gauge pressure
Design temperature
Duty
Item description
Material
Number of identical items
Process type
Quoted cost per item
Remarks 1
Remarks 2
Standard gas flow rate
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design gauge pressure
Design temperature
Duty
Item description
Material
Number of identical items
Process type
Quoted cost per item
Remarks 1
Remarks 2
Standard gas flow rate
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design gauge pressure
Design temperature
Duty
Item description
Material
Number of identical items
Process type
Quoted cost per item
Remarks 1
Remarks 2
Standard gas flow rate
Structure tag
User tag number
169
CpDesignGaugePressureOutlet
CpDesignTemperatureInlet
CpDriverPower
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Item description
Liquid flow rate
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Speed
Structure tag
User tag number
Viscosity
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Item description
Liquid flow rate
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Speed
Structure tag
User tag number
Viscosity
: Component WBS
: Driver power
: Item description
170
CpLiquidFlowrate
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpSpeed
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Item description
Liquid flow rate
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Speed
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Heat transfer area
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design gauge pressure
Heat transfer area
Item description
Material
Number of fins
Number of identical items
Number of tubes per shell
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Tube length
User tag number
:
:
:
:
:
:
:
:
Component WBS
Power output
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
171
CpStructureTag
CpUserTag
: Structure tag
: User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Heat transfer area
Item description
Material
Number of identical items
Pipe diameter
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Power output
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Heat transfer area
Item description
Material
Number of identical items
Pipe diameter
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design gauge pressure
Design temperature
Heat transfer area
Item description
Material
Number of identical items
Number of tubes per shell
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Tube length
User tag number
: Component WBS
: Heat transfer area
172
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Heat transfer area
Item description
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Tube length
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Heat transfer area
Item description
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Tube length
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Heat transfer area
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Tube design gauge pressure
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Heat transfer area
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
: Component WBS
173
CpHeatTransferArea
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Heat transfer area
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Heat transfer area
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Hoist Capacity
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Hoist Capacity
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
: Component WBS
: Hoist Capacity
174
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Hoist Capacity
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Hoist Capacity
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Hoist Capacity
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design gauge pressure
Design temperature
Duty
Item description
Liquid flow rate
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Object: EK STATIONARY
CpComponentWBS
: Component WBS
175
CpDriverPower
CpFlowrate
CpItemDescription
CpLiquidVolume
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Driver power
Flow rate
Item description
Liquid volume
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Object: EK TILTING
CpComponentWBS
CpDriverPower
CpFlowrate
CpItemDescription
CpLiquidVolume
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Flow rate
Item description
Liquid volume
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Flow rate
Item description
Liquid volume
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Object: EK VAC-TILTNG
CpComponentWBS
CpDriverPower
CpFlowrate
CpItemDescription
CpLiquidVolume
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Flow rate
Item description
Liquid volume
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
Component WBS
Item description
Lining adjustment
Lining area
Material
Mortar type
Number of identical items
176
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
Object: ELINMONOLITHIC
CpComponentWBS
CpItemDescription
CpLiningAdjustment
CpLiningArea
CpLiningThickness
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Lining adjustment
Lining area
Lining thickness
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Object: ELINOTHER
CpComponentWBS
CpItemDescription
CpLiningAdjustment
CpLiningArea
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Lining adjustment
Lining area
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Object: EM ATTRITION
CpComponentWBS
CpCrusherFlowrate
CpDriverPower
CpDriverSpeed
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Crusher flow rate
Driver power
Driver speed
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Object: EM AUTOGENOUS
CpApplication
CpComponentWBS
CpDiameterInside
CpDriverPower
CpInsideLength
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpSolidFlowrate
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Application
Component WBS
Inside diameter
Driver power
Inside length
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Solid flow rate
Structure tag
User tag number
177
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Application
Component WBS
Inside diameter
Driver power
Inside length
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Solid flow rate
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Crusher flow rate
Driver power
Driver speed
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Object: EM MIKRO-PULV
CpComponentWBS
CpCrusherFlowrate
CpDriverPower
CpDriverSpeed
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Crusher flow rate
Driver power
Driver speed
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Length
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Rod diameter
Structure tag
User tag number
:
:
:
:
Application
Component WBS
Inside diameter
Driver power
178
CpInsideLength
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpSolidFlowrate
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
Inside length
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Solid flow rate
Structure tag
User tag number
Object: EM ROD-CHARGR
CpComponentWBS
CpItemDescription
CpLength
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpRodDiameter
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Length
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Rod diameter
Structure tag
User tag number
Object: EM ROLLER
CpComponentWBS
CpCrusherFlowrate
CpDriverPower
CpDriverSpeed
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Crusher flow rate
Driver power
Driver speed
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Object: EMOTENCLOSED
CpComponentWBS
CpDriverPower
CpDriverType
CpItemDescription
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpSpeed
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Driver type
Item description
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Speed
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Driver type
Item description
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Speed
Structure tag
User tag number
179
Object: EMOTEXP-PROOF
CpComponentWBS
CpDriverPower
CpDriverType
CpItemDescription
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpSpeed
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Driver type
Item description
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Speed
Structure tag
User tag number
Object: EMOTOPEN
CpComponentWBS
CpDriverPower
CpDriverType
CpEnclosureType
CpItemDescription
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpSpeed
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Driver type
Enclosure type
Item description
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Speed
Structure tag
User tag number
Object: EMOTSYNCHRON
CpComponentWBS
CpDriverPower
CpEnclosureType
CpItemDescription
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpSpeed
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Enclosure type
Item description
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Speed
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Item description
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
High speed
Low speed
Structure tag
User tag number
Object: EMOTVARY-SPEED
CpComponentWBS
CpDriverPower
CpItemDescription
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
:
:
:
:
:
:
:
Component WBS
Driver power
Item description
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
180
CpSpeedHigh
CpSpeedLow
CpStructureTag
CpUserTag
:
:
:
:
High speed
Low speed
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Driver speed
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Driver speed
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Driver speed
Item description
Material
Mixer Volume
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
Component WBS
Driver power
Item description
Material
181
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Driver speed
Item description
Material
Mixer Volume
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Driver speed
Item description
Material
Mixer Volume
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Driver speed
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
: Component WBS
182
CpDriverPower
CpDriverSpeed
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
Driver power
Driver speed
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Object: EP DIAPHRAGM
CpComponentWBS
CpDesignTemperature
CpDriverPower
CpFluidHead
CpFluidSpecificGravity
CpItemDescription
CpLiquidFlowrate
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design temperature
Driver power
Fluid head
Fluid specific gravity
Item description
Liquid flow rate
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Object: EP DUPLEX
CpComponentWBS
CpDesignTemperature
CpDriverPower
CpFluidHead
CpFluidSpecificGravity
CpItemDescription
CpLiquidFlowrate
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design temperature
Driver power
Fluid head
Fluid specific gravity
Item description
Liquid flow rate
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design temperature
Driver power
Fluid head
Fluid specific gravity
Item description
Liquid flow rate
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Object: EP RECIP-MOTR
CpComponentWBS
CpDesignTemperature
: Component WBS
: Design temperature
183
CpDriverPower
CpFluidHead
CpFluidSpecificGravity
CpItemDescription
CpLiquidFlowrate
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Driver power
Fluid head
Fluid specific gravity
Item description
Liquid flow rate
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Object: EP ROTARY
CpComponentWBS
CpDesignTemperature
CpDriverPower
CpFluidHead
CpFluidSpecificGravity
CpItemDescription
CpLiquidFlowrate
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design temperature
Driver power
Fluid head
Fluid specific gravity
Item description
Liquid flow rate
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Object: EP SIMPLEX
CpComponentWBS
CpDesignTemperature
CpDriverPower
CpFluidHead
CpFluidSpecificGravity
CpItemDescription
CpLiquidFlowrate
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design temperature
Driver power
Fluid head
Fluid specific gravity
Item description
Liquid flow rate
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Object: EP SLURRY
CpComponentWBS
CpDesignTemperature
CpDriverPower
CpFluidHead
CpFluidSpecificGravity
CpItemDescription
CpLiquidFlowrate
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design temperature
Driver power
Fluid head
Fluid specific gravity
Item description
Liquid flow rate
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Object: EP
TRIPLEX
184
CpComponentWBS
CpDesignTemperature
CpDriverPower
CpFluidHead
CpFluidSpecificGravity
CpItemDescription
CpLiquidFlowrate
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design temperature
Driver power
Fluid head
Fluid specific gravity
Item description
Liquid flow rate
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Object: EPAKPACKING
CpComponentWBS
CpDiameter
CpHeight
CpItemDescription
CpNumberItems
CpPackingType
CpPackingVolume
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Diameter
Height
Item description
Number of identical items
Packing type
Packing volume
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Driver speed
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Surface area
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Driver speed
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Surface area
User tag number
: Component WBS
: Driver power
185
CpDryerCapacity
CpFlowrate
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
Dryer capacity
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Dryer capacity
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Dryer capacity
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Evaporator temperature
Item description
Material
Number of identical items
Quoted cost per item
Refrigeration capacity
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Evaporator temperature
Item description
Material
Number of identical items
Quoted cost per item
Refrigeration capacity
Remarks 1
Remarks 2
Structure tag
186
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Evaporator temperature
Item description
Material
Number of identical items
Quoted cost per item
Refrigeration capacity
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Scale capacity
Structure tag
User tag number
Object: ES BELT
CpBeltWidth
CpComponentWBS
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
Belt width
Component WBS
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Object: ES BENCH
CpComponentWBS
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpScaleCapacity
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Scale capacity
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Scale capacity
Structure tag
User tag number
187
Object: ES FULL-FRAME
CpComponentWBS
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpScaleCapacity
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Scale capacity
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Scale capacity
Structure tag
User tag number
Object: ES SEMI-FRAME
CpComponentWBS
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpScaleCapacity
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Scale capacity
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Scale capacity
Structure tag
User tag number
Object: ES TRACK
CpComponentWBS
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
CpWeightCapacityTons
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Weight Capacity in tons
Object: ES
TRUCK
188
CpComponentWBS
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
CpWeightCapacityTons
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Weight Capacity in tons
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Configuration
Diameter or width
Item description
Length
Liquid flow rate
Material
Number of identical items
Oil specific gravity
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Configuration
Diameter or width
Item description
Length
Liquid flow rate
Material
Number of identical items
Oil specific gravity
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Configuration
Cyclone diameter
Item description
Material
Number of cyclones per manifold
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Solid flow rate
Structure tag
User tag number
: Component WBS
: Configuration
: Cyclone diameter
189
CpItemDescription
CpMaterial
CpNumberCyclonesPerManifold
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpSolidFlowrate
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
Item description
Material
Number of cyclones per manifold
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Solid flow rate
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Consistency Air Dried
Deflaker speed
Driver power
Hydraulic capacity
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Consistency Air Dried
Deflaker speed
Driver power
Hydraulic capacity
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Rotor diameter
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Consistency Air Dried
Deflaker speed
Driver power
Hydraulic capacity
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
Component WBS
Consistency Air Dried
Deflaker speed
Driver power
190
CpHydraulicCapacity
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpRotorDiameter
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
Hydraulic capacity
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Rotor diameter
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
CSF - ml of water
Component WBS
Driver power
Item description
Material
Number of identical items
Plate diameter
Quoted cost per item
Refiner speed
Remarks 1
Remarks 2
Stock flow rate
Structure tag
User tag number
Object: ESTBBOILER
CpBoilerFlowrate
CpComponentWBS
CpHeatingMedium
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpSteamGaugePressure
CpStructureTag
CpSuperheat
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Heating medium
Item description
Material
191
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpTraySurfaceArea
CpUserTag
:
:
:
:
:
:
:
Object: ETDSATM-SYSTEM
CpComponentWBS
CpFlowrate
CpHeatingMedium
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpTraySurfaceArea
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Heating medium
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Tray surface Area
User tag number
Object: ETDSTURBO
CpComponentWBS
CpDriverPower
CpFlowrate
CpHeatingMedium
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpTraySurfaceArea
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Flow rate
Heating medium
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Tray surface Area
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Tray surface Area
User tag number
Object: ETDSVAC-SYSTEM
CpComponentWBS
CpFlowrate
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpTraySurfaceArea
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Tray surface Area
User tag number
192
Object: ETDSVACUUM
CpComponentWBS
CpFlowrate
CpHeatingMedium
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpTraySurfaceArea
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Heating medium
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Tray surface Area
User tag number
Object: ETURCONDENSING
CpComponentWBS
CpItemDescription
CpMaterial
CpNumberItems
CpPowerOutput
CpQuotedCost
CpRemarks1
CpRemarks2
CpSpeed
CpSteamGaugePressure
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Material
Number of identical items
Power output
Quoted cost per item
Remarks 1
Remarks 2
Speed
Steam gauge pressure
Structure tag
User tag number
Object: ETURGAS
CpComponentWBS
CpItemDescription
CpMaterial
CpNumberItems
CpPowerOutput
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Material
Number of identical items
Power output
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Material
Number of identical items
Power output
Quoted cost per item
Remarks 1
Remarks 2
Speed
Steam gauge pressure
Structure tag
User tag number
Object: ETURNON-COND
CpComponentWBS
CpItemDescription
CpMaterial
CpNumberItems
CpPowerOutput
CpQuotedCost
:
:
:
:
:
:
Component WBS
Item description
Material
Number of identical items
Power output
Quoted cost per item
193
CpRemarks1
CpRemarks2
CpSpeed
CpSteamGaugePressure
CpStructureTag
CpUserTag
:
:
:
:
:
:
Remarks 1
Remarks 2
Speed
Steam gauge pressure
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Number of identical items
Number of trays
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Tray diameter
Tray material
Tray spacing
Tray thickness
Tray type
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
194
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Item description
Hummer power
Material
Number of decks
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Surface area
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Configuration
Driver power
Item description
Length
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Width
:
:
:
:
:
:
:
Component WBS
Driver power
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
195
CpRemarks1
CpRemarks2
CpScreenDiameter
CpStructureTag
CpSurfaceArea
CpUserTag
:
:
:
:
:
:
Remarks 1
Remarks 2
Screen diameter
Structure tag
Surface area
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Screen diameter
Structure tag
Surface area
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Screen diameter
Structure tag
Surface area
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Screen diameter
Structure tag
Surface area
User tag number
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
196
CpScreenDiameter
CpStructureTag
CpSurfaceArea
CpUserTag
:
:
:
:
Screen diameter
Structure tag
Surface area
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Driver power
Flow rate
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Screen diameter
Structure tag
Surface area
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Configuration
Driver power
Item description
Length
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Width
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Configuration
Driver power
Item description
Length
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Width
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design gauge pressure
Item description
Liquid volume
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Temperature
197
CpUserTag
CpVesselDiameter
CpVesselHeight
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Design gauge pressure
Item description
Liquid volume
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
Temperature
User tag number
Vessel diameter
Vessel height
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Heat transfer area
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Heat transfer area
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Object: EWFEWFE-SYSTEM
CpComponentWBS
CpFlowrate
CpHeatTransferArea
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Flow rate
Heat transfer area
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Object: EWTSDEMINERAL
CpComponentWBS
CpItemDescription
: Component WBS
: Item description
198
CpMaterial
CpNumberItems
CpOperationMode
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
CpWaterFlowratePerHour
:
:
:
:
:
:
:
:
:
Material
Number of identical items
Mode of operation
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Water flow rate
Object: EWTSSOFTENING
CpComponentWBS
CpItemDescription
CpMaterial
CpNumberItems
CpQuotedCost
CpRemarks1
CpRemarks2
CpStructureTag
CpUserTag
CpWaterFlowratePerHour
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Material
Number of identical items
Quoted cost per item
Remarks 1
Remarks 2
Structure tag
User tag number
Water flow rate
Object: SD ASPHALT
CpAreaType
CpComponentWBS
CpDepthBaseCourse
CpDepthWearingCourse
CpItemDescription
CpLaborAdjustmentPercent
CpLength
CpMaterial
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpUserTag
CpWidth
:
:
:
:
:
:
:
:
:
:
:
:
:
Area type
Component WBS
Depth of base course
Depth wearing course
Item description
Labor adjustment percent
Length
Material
Material adjustment percent
Remarks 1
Remarks 2
User tag number
Width
Object: SD BACKFILL
CpBackfillEquipment
CpCompactionEquipment
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpMaterial
CpMaterialAdjustmentPercent
CpNumberItems
CpPreBulkQuantity
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Backfill equipment
Compaction equipment
Component WBS
Item description
Labor adjustment percent
Material
Material adjustment percent
Number of identical items
Pre-bulk quantity
Remarks 1
Remarks 2
User tag number
Object: SD BARBED
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpLength
CpMaterial
CpMaterialAdjustmentPercent
CpNumberSides
CpNumberStrands
CpRemarks1
CpRemarks2
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Length
Material
Material adjustment percent
Number of sides
Number of strands
Remarks 1
Remarks 2
199
CpUserTag
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Length
Material adjustment percent
Remarks 1
Remarks 2
User tag number
Width
Object: SD BASE-PREP
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpLength
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpUserTag
CpWidth
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Length
Material adjustment percent
Remarks 1
Remarks 2
User tag number
Width
Object: SD BASINS
CpComponentWBS
CpCoverType
CpDepth
CpItemDescription
CpLaborAdjustmentPercent
CpMaterial
CpMaterialAdjustmentPercent
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Cover type
Depth
Item description
Labor adjustment percent
Material
Material adjustment percent
Number of identical items
Remarks 1
Remarks 2
User tag number
Object: SD BLASTING
CpAreaType
CpComponentWBS
CpDepth
CpItemDescription
CpLaborAdjustmentPercent
CpMaterial
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpSiteArea
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Area type
Component WBS
Depth
Item description
Labor adjustment percent
Material
Material adjustment percent
Remarks 1
Remarks 2
Site area
User tag number
Object: SD BORINGS
CpComponentWBS
CpDepth
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
Component WBS
Depth
Item description
Labor adjustment percent
Material adjustment percent
Number of identical items
Remarks 1
Remarks 2
User tag number
Object: SD
BOUNDARY
200
CpComponentWBS
CpFenceType
CpHeight
CpHeightOfIndustrialGate
CpHeightOfPersonalGate
CpItemDescription
CpLaborAdjustmentPercent
CpLength
CpLengthOfBarbedWireTopping
CpMaterial
CpMaterialAdjustmentPercent
CpMaterialForBarbedWireTopping
CpMaterialForGate
CpNumberOfIndustrialGates
CpNumberOfPersonalGates
CpNumberSides
CpNumberStrands
CpRemarks1
CpRemarks2
CpUserTag
CpWidthOfIndustrialGate
CpWidthOfPersonalGate
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Fence type
Height
Height of industrial gate
Height of personnel gate
Item description
Labor adjustment percent
Length
Length of barbed wire topping
Material
Material adjustment percent
Material for barbed wire topping
Material for gate
Number of industrial gates
Number of personnel gates
Number of sides
Number of strands
Remarks 1
Remarks 2
User tag number
Width of industrial gate
Width of personnel gate
Object: SD BRUSH
CpClearingMethod
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpSiteArea
CpUserTag
:
:
:
:
:
:
:
:
:
Clearing method
Component WBS
Item description
Labor adjustment percent
Material adjustment percent
Remarks 1
Remarks 2
Site area
User tag number
Object: SD BUMPER
CpBumperWeightOption
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
Object: SD CAISSON
CpComponentWBS
CpCoreBeamWeight
CpDepth
CpItemDescription
CpLaborAdjustmentPercent
CpMaterial
CpMaterialAdjustmentPercent
CpNumberItems
CpNumberPilesTested
CpPileDiameter
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Core I beam weight
Depth
Item description
Labor adjustment percent
Material
Material adjustment percent
Number of identical items
Number of piles tested
Pile diameter
Remarks 1
Remarks 2
User tag number
: Component WBS
201
CpHeight
CpItemDescription
CpLaborAdjustmentPercent
CpLength
CpMaterial
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
Height
Item description
Labor adjustment percent
Length
Material
Material adjustment percent
Remarks 1
Remarks 2
User tag number
Object: SD CHAIN-LINK
CpComponentWBS
CpHeight
CpItemDescription
CpLaborAdjustmentPercent
CpLength
CpMaterial
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
Component WBS
Height
Item description
Labor adjustment percent
Length
Material
Material adjustment percent
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Material adjustment percent
Remarks 1
Remarks 2
Site area
Tree size
User tag number
Object: SD CLEAR-GRUB
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpSiteArea
CpTreeSize
CpUserTag
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Material adjustment percent
Remarks 1
Remarks 2
Site area
Tree size
User tag number
Object: SD COMPACT
CpComponentWBS
CpDepthPerCompactionLayer
CpItemDescription
CpLaborAdjustmentPercent
CpMaterial
CpMaterialAdjustmentPercent
CpNumberLayers
CpRemarks1
CpRemarks2
CpSiteArea
CpSpreadingEquipment
CpUserTag
CpWateringOption
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Depth per compaction layer
Item description
Labor adjustment percent
Material
Material adjustment percent
Number of layers
Remarks 1
Remarks 2
Site area
Spreading equipment
User tag number
Watering option
: Component WBS
: Item description
202
CpLaborAdjustmentPercent
CpLength
CpMaterialAdjustmentPercent
CpPavingDepth
CpPlacementOption
CpReinforcementOption
CpRemarks1
CpRemarks2
CpUserTag
CpWidth
:
:
:
:
:
:
:
:
:
:
Object: SD CONC-PAVNG
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpLength
CpMaterialAdjustmentPercent
CpPavingDepth
CpPlacementOption
CpReinforcementOption
CpRemarks1
CpRemarks2
CpUserTag
CpWidth
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Length
Material adjustment percent
Depth of paving
Placement option
Reinforcement option
Remarks 1
Remarks 2
User tag number
Width
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Length
Material adjustment percent
Placement option
Remarks 1
Remarks 2
User tag number
Width
Object: SD CROSS-GUTT
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpLength
CpMaterialAdjustmentPercent
CpPlacementOption
CpRemarks1
CpRemarks2
CpUserTag
CpWidth
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Length
Material adjustment percent
Placement option
Remarks 1
Remarks 2
User tag number
Width
Object: SD CROSSING
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
CpWidth
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Material adjustment percent
Number of identical items
Remarks 1
Remarks 2
User tag number
Width
Object: SD CURB
CpComponentWBS
: Component WBS
203
CpItemDescription
CpLaborAdjustmentPercent
CpLength
CpMaterialAdjustmentPercent
CpNumberCurbCuts
CpPlacementOption
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
Item description
Labor adjustment percent
Length
Material adjustment percent
Number of curb cuts
Placement option
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Curb width
Item description
Labor adjustment percent
Length
Material adjustment percent
Number of curb cuts
Placement option
Remarks 1
Remarks 2
User tag number
Object: SD CURB-GUTT
CpComponentWBS
CpCurbWidth
CpItemDescription
CpLaborAdjustmentPercent
CpLength
CpMaterialAdjustmentPercent
CpNumberCurbCuts
CpPlacementOption
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Curb width
Item description
Labor adjustment percent
Length
Material adjustment percent
Number of curb cuts
Placement option
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Depth
Equipment type
Hauling distance one way
Item description
Labor adjustment percent
Material
Material adjustment percent
Remarks 1
Remarks 2
Site area
User tag number
Object: SD CUT-FILL
CpComponentWBS
CpDepth
CpEquipmentType
CpHaulDistanceOneWay
CpItemDescription
CpLaborAdjustmentPercent
CpMaterial
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpSiteArea
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Depth
Equipment type
Hauling distance one way
Item description
Labor adjustment percent
Material
Material adjustment percent
Remarks 1
Remarks 2
Site area
204
CpUserTag
Object: SD DEMOL
CpComponentWBS
CpItemDescription
CpLaborAccountCode
CpLaborHours
CpMaterialAccountCode
CpMaterialCost
CpRemarks1
CpRemarks2
CpTotalCost
CpUserTag
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor account code
Labor hours
Material account code
Material cost
Remarks 1
Remarks 2
Total cost
User tag number
Object: SD DEMOLITION
CpAreaPerFloor
CpComponentWBS
CpHeightPerFloor
CpItemDescription
CpLaborAdjustmentPercent
CpMaterial
CpMaterialAdjustmentPercent
CpNumberFloors
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Object: SD DEWATERING
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpNumberItems
CpNumberWeeksRequired
CpPumpSize
CpRemarks1
CpRemarks2
CpUserTag
CpWaterFlowrate
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Material adjustment percent
Number of identical items
Number of weeks required
Pump size
Remarks 1
Remarks 2
User tag number
Water flow rate
Object: SD DIKE
CpComponentWBS
CpHeight
CpItemDescription
CpLaborAdjustmentPercent
CpLength
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpUserTag
CpWidthBottom
CpWidthTop
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Height
Item description
Labor adjustment percent
Length
Material adjustment percent
Remarks 1
Remarks 2
User tag number
Width at bottom
Width at top
Object: SD DISPOSAL
CpAreaPerFloor
CpComponentWBS
CpHeightPerFloor
CpItemDescription
CpLaborAdjustmentPercent
CpMaterial
CpMaterialAdjustmentPercent
:
:
:
:
:
:
:
205
CpNumberFloors
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
Number of floors
Number of identical items
Remarks 1
Remarks 2
User tag number
Object: SD DRAINAGE
CpComponentWBS
CpItemDescription
CpLaborAccountCode
CpLaborHours
CpMaterialAccountCode
CpMaterialCost
CpRemarks1
CpRemarks2
CpTotalCost
CpUserTag
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor account code
Labor hours
Material account code
Material cost
Remarks 1
Remarks 2
Total cost
User tag number
Object: SD DRAINS
CpComponentWBS
CpCurvedPipePercent
CpItemDescription
CpLaborAdjustmentPercent
CpLength
CpMaterial
CpMaterialAdjustmentPercent
CpPipeDiameter
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Percent curved pipe
Item description
Labor adjustment percent
Length
Material
Material adjustment percent
Pipe diameter
Remarks 1
Remarks 2
User tag number
Object: SD DRNWELLS
CpComponentWBS
CpDepth
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpNumberItems
CpNumberWeeksRequired
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
Component WBS
Depth
Item description
Labor adjustment percent
Material adjustment percent
Number of identical items
Number of weeks required
Remarks 1
Remarks 2
User tag number
Object: SD EARTHWORK
CpComponentWBS
CpItemDescription
CpLaborAccountCode
CpLaborHours
CpMaterialAccountCode
CpMaterialCost
CpRemarks1
CpRemarks2
CpTotalCost
CpUserTag
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor account code
Labor hours
Material account code
Material cost
Remarks 1
Remarks 2
Total cost
User tag number
Object: SD EROSION
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpMaterial
CpMaterialAdjustmentPercent
CpRemarks1
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Material
Material adjustment percent
Remarks 1
206
CpRemarks2
CpSiteArea
CpUserTag
: Remarks 2
: Site area
: User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Object: SD EXPL-DEMOL
CpAreaPerFloor
CpComponentWBS
CpHeightPerFloor
CpItemDescription
CpLaborAdjustmentPercent
CpMaterial
CpMaterialAdjustmentPercent
CpNumberFloors
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Width of gate
Height
Item description
Labor adjustment percent
Length
Material
Material adjustment percent
Number of gates
Remarks 1
Remarks 2
User tag number
Object: SD FENCE-WOOD
CpComponentWBS
CpGateWidth
CpHeight
CpItemDescription
CpLaborAdjustmentPercent
CpLength
CpMaterial
CpMaterialAdjustmentPercent
CpNumberGates
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Width of gate
Height
Item description
Labor adjustment percent
Length
Material
Material adjustment percent
Number of gates
Remarks 1
Remarks 2
User tag number
Object: SD FENCING
CpComponentWBS
: Component WBS
207
CpItemDescription
CpLaborAccountCode
CpLaborHours
CpMaterialAccountCode
CpMaterialCost
CpRemarks1
CpRemarks2
CpTotalCost
CpUserTag
:
:
:
:
:
:
:
:
:
Item description
Labor account code
Labor hours
Material account code
Material cost
Remarks 1
Remarks 2
Total cost
User tag number
Object: SD FS WALL
CpComponentWBS
CpHeight
CpItemDescription
CpLaborAdjustmentPercent
CpLength
CpMaterial
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpThicknessOption
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Height
Item description
Labor adjustment percent
Length
Material
Material adjustment percent
Remarks 1
Remarks 2
Thickness option
User tag number
Object: SD FS-WALL
CpComponentWBS
CpHeight
CpItemDescription
CpLaborAdjustmentPercent
CpLength
CpMaterial
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpThicknessOption
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Height
Item description
Labor adjustment percent
Length
Material
Material adjustment percent
Remarks 1
Remarks 2
Thickness option
User tag number
Object: SD GATES
CpBarbWireOption
CpComponentWBS
CpGateOperation
CpHeight
CpItemDescription
CpLaborAdjustmentPercent
CpMaterial
CpMaterialAdjustmentPercent
CpNumberGates
CpRemarks1
CpRemarks2
CpUserTag
CpWidth
:
:
:
:
:
:
:
:
:
:
:
:
:
Object: SD GUNITE
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpSiteArea
CpUserTag
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Material adjustment percent
Remarks 1
Remarks 2
Site area
User tag number
Object: SD
HAND EXCV
208
CpComponentWBS
CpDepth
CpExcavationType
CpItemDescription
CpLaborAdjustmentPercent
CpMaterial
CpMaterialAdjustmentPercent
CpNumberItems
CpPreBulkQuantity
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Depth
Excavation type
Item description
Labor adjustment percent
Material
Material adjustment percent
Number of identical items
Pre-bulk quantity
Remarks 1
Remarks 2
User tag number
Object: SD HAND-EXCV
CpComponentWBS
CpDepth
CpExcavationType
CpItemDescription
CpLaborAdjustmentPercent
CpMaterial
CpMaterialAdjustmentPercent
CpNumberItems
CpPreBulkQuantity
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Depth
Excavation type
Item description
Labor adjustment percent
Material
Material adjustment percent
Number of identical items
Pre-bulk quantity
Remarks 1
Remarks 2
User tag number
Object: SD HAULING
CpComponentWBS
CpDumpTruckCapacity
CpFillUnitCost
CpItemDescription
CpLaborAdjustmentPercent
CpLoaderEquipmentType
CpMaterial
CpMaterialAdjustmentPercent
CpPreBulkQuantity
CpRemarks1
CpRemarks2
CpRoundTripHaulingDistance
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Dump truck capacity
Unit cost of fill
Item description
Labor adjustment percent
Loader equipment type
Material
Material adjustment percent
Pre-bulk quantity
Remarks 1
Remarks 2
Round trip hauling distance
User tag number
Object: SD J HAMMER
CpComponentWBS
CpDepth
CpItemDescription
CpLaborAdjustmentPercent
CpMaterial
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpSiteArea
CpUserTag
:
:
:
:
:
:
:
:
:
:
Component WBS
Depth
Item description
Labor adjustment percent
Material
Material adjustment percent
Remarks 1
Remarks 2
Site area
User tag number
Object: SD J-HAMMER
CpComponentWBS
CpDepth
CpItemDescription
CpLaborAdjustmentPercent
CpMaterial
CpMaterialAdjustmentPercent
CpRemarks1
:
:
:
:
:
:
:
Component WBS
Depth
Item description
Labor adjustment percent
Material
Material adjustment percent
Remarks 1
209
CpRemarks2
CpSiteArea
CpUserTag
: Remarks 2
: Site area
: User tag number
Object: SD LANDSCAPE
CpComponentWBS
CpItemDescription
CpLaborAccountCode
CpLaborHours
CpMaterialAccountCode
CpMaterialCost
CpRemarks1
CpRemarks2
CpTotalCost
CpUserTag
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor account code
Labor hours
Material account code
Material cost
Remarks 1
Remarks 2
Total cost
User tag number
Object: SD MESH
CpComponentWBS
CpGateWidth
CpHeight
CpItemDescription
CpLaborAdjustmentPercent
CpLength
CpMaterialAdjustmentPercent
CpNumberGates
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Width of gate
Height
Item description
Labor adjustment percent
Length
Material adjustment percent
Number of gates
Remarks 1
Remarks 2
User tag number
Object: SD MULCH
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpMaterial
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpSiteArea
CpUserTag
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Material
Material adjustment percent
Remarks 1
Remarks 2
Site area
User tag number
Object: SD PAVING
CpComponentWBS
CpItemDescription
CpLaborAccountCode
CpLaborHours
CpMaterialAccountCode
CpMaterialCost
CpRemarks1
CpRemarks2
CpTotalCost
CpUserTag
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor account code
Labor hours
Material account code
Material cost
Remarks 1
Remarks 2
Total cost
User tag number
Object: SD PILING
CpComponentWBS
CpItemDescription
CpLaborAccountCode
CpLaborHours
CpMaterialAccountCode
CpMaterialCost
CpRemarks1
CpRemarks2
CpTotalCost
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor account code
Labor hours
Material account code
Material cost
Remarks 1
Remarks 2
Total cost
210
CpUserTag
Object: SD PIPE
CpComponentWBS
CpDepth
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpNumberItems
CpPileDiameter
CpRemarks1
CpRemarks2
CpTreatmentOption
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Depth
Item description
Labor adjustment percent
Material adjustment percent
Number of identical items
Pile diameter
Remarks 1
Remarks 2
Treatment option
User tag number
Object: SD PLANTING
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpMaterial
CpMaterialAdjustmentPercent
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Material
Material adjustment percent
Number of identical items
Remarks 1
Remarks 2
User tag number
Object: SD POND
CpComponentWBS
CpDepth
CpItemDescription
CpLaborAdjustmentPercent
CpLength
CpMaterialAdjustmentPercent
CpMembraneLinerType
CpMembraneThickness
CpRemarks1
CpRemarks2
CpUserTag
CpWidth
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Depth
Item description
Labor adjustment percent
Length
Material adjustment percent
Membrane liner type
Membrane thickness
Remarks 1
Remarks 2
User tag number
Width
Object: SD POURED
CpComponentWBS
CpDepth
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpNumberItems
CpNumberPilesTested
CpPileDiameter
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Depth
Item description
Labor adjustment percent
Material adjustment percent
Number of identical items
Number of piles tested
Pile diameter
Remarks 1
Remarks 2
User tag number
Object: SD PRECAST
CpComponentWBS
CpDepth
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpNumberItems
CpPileDiameter
CpPileType
:
:
:
:
:
:
:
:
Component WBS
Depth
Item description
Labor adjustment percent
Material adjustment percent
Number of identical items
Pile diameter
Pile type
211
CpRemarks1
CpRemarks2
CpUserTag
: Remarks 1
: Remarks 2
: User tag number
Object: SD RAILROADS
CpComponentWBS
CpItemDescription
CpLaborAccountCode
CpLaborHours
CpMaterialAccountCode
CpMaterialCost
CpRemarks1
CpRemarks2
CpTotalCost
CpUserTag
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor account code
Labor hours
Material account code
Material cost
Remarks 1
Remarks 2
Total cost
User tag number
Object: SD RAYMOND
CpComponentWBS
CpDepth
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
Component WBS
Depth
Item description
Labor adjustment percent
Material adjustment percent
Number of identical items
Remarks 1
Remarks 2
User tag number
Object: SD REMOVAL
CpAreaPerFloor
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpNumberFloors
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
Object: SD RETAIN
CpBackfillSlope
CpComponentWBS
CpHeight
CpItemDescription
CpLaborAdjustmentPercent
CpLength
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
Backfill slope
Component WBS
Height
Item description
Labor adjustment percent
Length
Material adjustment percent
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
:
Component WBS
Depth
Hauling distance one way
Item description
Labor adjustment percent
Loader equipment type
Material
Material adjustment percent
Remarks 1
Remarks 2
212
CpRockFragmentOption
CpSiteArea
CpUserTag
Object: SD RIP-ROCK
CpComponentWBS
CpDepth
CpHaulDistanceOneWay
CpItemDescription
CpLaborAdjustmentPercent
CpLoaderEquipmentType
CpMaterial
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpRockFragmentOption
CpSiteArea
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Depth
Hauling distance one way
Item description
Labor adjustment percent
Loader equipment type
Material
Material adjustment percent
Remarks 1
Remarks 2
Rock fragment option
Site area
User tag number
Object: SD SEALCOAT
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpSiteArea
CpUserTag
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Material adjustment percent
Remarks 1
Remarks 2
Site area
User tag number
Object: SD SECURITY
CpComponentWBS
CpHeight
CpItemDescription
CpLaborAdjustmentPercent
CpLength
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
Component WBS
Height
Item description
Labor adjustment percent
Length
Material adjustment percent
Remarks 1
Remarks 2
User tag number
Object: SD SEEDING
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpSiteArea
CpUserTag
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Material adjustment percent
Remarks 1
Remarks 2
Site area
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Length of drain lines
Liquid volume
Material adjustment percent
Number of distribution boxes
Number of identical items
Remarks 1
Remarks 2
User tag number
213
Object: SD SEPTIC-TNK
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpLengthDrainLines
CpLiquidVolume
CpMaterialAdjustmentPercent
CpNumberDistributionBoxes
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Length of drain lines
Liquid volume
Material adjustment percent
Number of distribution boxes
Number of identical items
Remarks 1
Remarks 2
User tag number
Object: SD SHORING
CpAreaShoredFace
CpComponentWBS
CpDepth
CpItemDescription
CpLaborAdjustmentPercent
CpMaterial
CpMaterialAdjustmentPercent
CpNumberWeeksRequired
CpRemarks1
CpRemarks2
CpSalvagePercent
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Object: SD SIDEWALKS
CpComponentWBS
CpDepthBaseCourse
CpItemDescription
CpLaborAdjustmentPercent
CpLength
CpMaterial
CpMaterialAdjustmentPercent
CpPavingDepth
CpRemarks1
CpRemarks2
CpUserTag
CpWidth
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Depth of base course
Item description
Labor adjustment percent
Length
Material
Material adjustment percent
Depth of paving
Remarks 1
Remarks 2
User tag number
Width
Object: SD SIDING
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpLength
CpMaterialAdjustmentPercent
CpRailReuse
CpRailWeight
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Length
Material adjustment percent
Rail reuse
Rail weight
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Length
Material adjustment percent
Remarks 1
Remarks 2
214
CpUserTag
Object: SD SIDING-HVY
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpLength
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Length
Material adjustment percent
Remarks 1
Remarks 2
User tag number
Object: SD SIGNAL
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Material adjustment percent
Number of identical items
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Depth
Disposal option
Equipment type
Hauling distance one way
Item description
Labor adjustment percent
Material
Material adjustment percent
Remarks 1
Remarks 2
Site area
User tag number
Object: SD SITE-EXCVN
CpComponentWBS
CpDepth
CpDisposalOption
CpEquipmentType
CpHaulDistanceOneWay
CpItemDescription
CpLaborAdjustmentPercent
CpMaterial
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpSiteArea
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Depth
Disposal option
Equipment type
Hauling distance one way
Item description
Labor adjustment percent
Material
Material adjustment percent
Remarks 1
Remarks 2
Site area
User tag number
Object: SD SITEPREP
CpComponentWBS
CpExcavatedMaterial1
CpExcavatedMaterial2
CpExcavatedMaterial3
CpExcavationDepthMaterial1
CpExcavationDepthMaterial2
CpExcavationDepthMaterial3
CpExcavationQuantityMaterial1
CpExcavationQuantityMaterial2
:
:
:
:
:
:
:
:
:
Component WBS
Excavated material 1
Excavated material 2
Excavated material 3
Excavation depth material 1
Excavation depth material 2
Excavation depth material 3
Excavation quantity material 1
Excavation quantity material 2
215
CpExcavationQuantityMaterial3
CpFillSubgradeMaterial1
CpFillSubgradeMaterial2
CpGrubbingCleaningArea
CpHandExcavationArea
CpHandExcavationDepth
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpNumberOfCompactionLayers
CpQuantitySubgradeMaterial1
CpQuantitySubgradeMaterial2
CpRemarks1
CpRemarks2
CpSiteArea
CpSoilDepth
CpStrippingDepth
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Object: SD SODDING
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpSiteArea
CpTerrainType
CpUserTag
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Material adjustment percent
Remarks 1
Remarks 2
Site area
Terrain type
User tag number
Object: SD STABILIZE
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpSiteArea
CpUserTag
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Material adjustment percent
Remarks 1
Remarks 2
Site area
User tag number
Object: SD STEEL H
CpComponentWBS
CpCrossSectionDepth
CpDepth
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpNumberItems
CpPileWeightOption
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Cross section depth
Depth
Item description
Labor adjustment percent
Material adjustment percent
Number of identical items
Pile weight option
Remarks 1
Remarks 2
User tag number
Object: SD STEEL-H
CpComponentWBS
CpCrossSectionDepth
CpDepth
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpNumberItems
CpPileWeightOption
:
:
:
:
:
:
:
:
Component WBS
Cross section depth
Depth
Item description
Labor adjustment percent
Material adjustment percent
Number of identical items
Pile weight option
216
CpRemarks1
CpRemarks2
CpUserTag
: Remarks 1
: Remarks 2
: User tag number
Object: SD STERILIZE
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpSiteArea
CpUserTag
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Material adjustment percent
Remarks 1
Remarks 2
Site area
User tag number
Object: SD STOPS
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Material adjustment percent
Number of identical items
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Equipment type
Item description
Labor adjustment percent
Material adjustment percent
Remarks 1
Remarks 2
Site area
Soil depth
Travel distance one way
User tag number
Object: SD STRIP-SOIL
CpComponentWBS
CpEquipmentType
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpSiteArea
CpSoilDepth
CpTravelDistanceOneWay
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Equipment type
Item description
Labor adjustment percent
Material adjustment percent
Remarks 1
Remarks 2
Site area
Soil depth
Travel distance one way
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Depth
Equipment type
Item description
Labor adjustment percent
Material
Material adjustment percent
Number of identical items
Remarks 1
Remarks 2
Site area
217
CpUserTag
Object: SD STRUC-EXC
CpComponentWBS
CpDepth
CpEquipmentType
CpItemDescription
CpLaborAdjustmentPercent
CpMaterial
CpMaterialAdjustmentPercent
CpNumberItems
CpRemarks1
CpRemarks2
CpSiteArea
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Depth
Equipment type
Item description
Labor adjustment percent
Material
Material adjustment percent
Number of identical items
Remarks 1
Remarks 2
Site area
User tag number
Object: SD SUBDRAIN
CpComponentWBS
CpCurvedPipePercent
CpItemDescription
CpLaborAdjustmentPercent
CpLength
CpMaterial
CpMaterialAdjustmentPercent
CpPipeDiameter
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Percent curved pipe
Item description
Labor adjustment percent
Length
Material
Material adjustment percent
Pipe diameter
Remarks 1
Remarks 2
User tag number
Object: SD SUBPAVING
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpLength
CpMaterial
CpMaterialAdjustmentPercent
CpPavingDepth
CpRemarks1
CpRemarks2
CpTreatmentOption
CpUserTag
CpWidth
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Length
Material
Material adjustment percent
Depth of paving
Remarks 1
Remarks 2
Treatment option
User tag number
Width
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Depth
Item description
Labor adjustment percent
Length
Lining type
Material adjustment percent
Number of identical items
Remarks 1
Remarks 2
User tag number
Width
Object: SD SUMP-PIT
CpComponentWBS
CpDepth
CpItemDescription
CpLaborAdjustmentPercent
:
:
:
:
Component WBS
Depth
Item description
Labor adjustment percent
218
CpLength
CpLiningType
CpMaterialAdjustmentPercent
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
CpWidth
:
:
:
:
:
:
:
:
Length
Lining type
Material adjustment percent
Number of identical items
Remarks 1
Remarks 2
User tag number
Width
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Length
Material adjustment percent
Remarks 1
Remarks 2
User tag number
Width
Object: SD TAR-CHIP
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpLength
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpUserTag
CpWidth
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Length
Material adjustment percent
Remarks 1
Remarks 2
User tag number
Width
Object: SD TOPSOIL
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpSiteArea
CpSoilDepth
CpUserTag
:
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Material adjustment percent
Remarks 1
Remarks 2
Site area
Soil depth
User tag number
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Depth
Equipment type
Item description
Labor adjustment percent
Length
Material
Material adjustment percent
Remarks 1
Remarks 2
User tag number
Width
Object: SD TRENCH-EXC
CpComponentWBS
CpDepth
CpEquipmentType
CpItemDescription
CpLaborAdjustmentPercent
:
:
:
:
:
Component WBS
Depth
Equipment type
Item description
Labor adjustment percent
219
CpLength
CpMaterial
CpMaterialAdjustmentPercent
CpRemarks1
CpRemarks2
CpUserTag
CpWidth
:
:
:
:
:
:
:
Length
Material
Material adjustment percent
Remarks 1
Remarks 2
User tag number
Width
Object: SD TURNOUT
CpComponentWBS
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpNumberItems
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
Component WBS
Item description
Labor adjustment percent
Material adjustment percent
Number of identical items
Remarks 1
Remarks 2
User tag number
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Depth
Item description
Labor adjustment percent
Length of wire and pipe
Material adjustment percent
Number of identical items
Pipe diameter
Remarks 1
Remarks 2
User tag number
Object: SD WATER-WELL
CpComponentWBS
CpDepth
CpItemDescription
CpLaborAdjustmentPercent
CpLengthWirePlusPipe
CpMaterialAdjustmentPercent
CpNumberItems
CpPipeDiameter
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Depth
Item description
Labor adjustment percent
Length of wire and pipe
Material adjustment percent
Number of identical items
Pipe diameter
Remarks 1
Remarks 2
User tag number
Object: SD WELLPOINTS
CpComponentWBS
CpHeaderLength
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpNumberMonthsRequired
CpRemarks1
CpRemarks2
CpUserTag
:
:
:
:
:
:
:
:
:
Component WBS
Header length
Item description
Labor adjustment percent
Material adjustment percent
Number of months required
Remarks 1
Remarks 2
User tag number
Object: SD WELLS
CpComponentWBS
CpDepth
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpNumberItems
:
:
:
:
:
:
Component WBS
Depth
Item description
Labor adjustment percent
Material adjustment percent
Number of identical items
220
CpNumberWeeksRequired
CpRemarks1
CpRemarks2
CpUserTag
Object: SD WOOD
CpComponentWBS
CpDepth
CpItemDescription
CpLaborAdjustmentPercent
CpMaterialAdjustmentPercent
CpNumberItems
CpPileDiameter
CpRemarks1
CpRemarks2
CpTreatmentOption
CpUserTag
:
:
:
:
:
:
:
:
:
:
:
:
:
:
:
Component WBS
Depth
Item description
Labor adjustment percent
Material adjustment percent
Number of identical items
Pile diameter
Remarks 1
Remarks 2
Treatment option
User tag number
221
222
223
CpPipePaint
CpGeneralPersonnelProtectonPercent
CpGeneralPipeInsulationJacketType
CpGeneralPipeInsulationType
CpGeneralWeldXrayPercent
CpGeneralStressRefiefSelection
CpGeneralPipeFlangeType
CpGeneralPipeFlangeClass
CpGeneralControlValveMinimumClass
CpGeneralControlValveReduction
CpGeneralValvePackingSeal
CpGeneralHeatTraceFluid
CpGeneralETraceMaintTemperature
CpGeneralSpecialPipeDescription
CpGeneralPipeInstallationOption
CpGeneralPipeType
CpGeneralDesignTemperature
CpGeneralDesignGaugePressure
CpGeneralPipeMaterial
CpCustomPipeSpec
Title
224
CpValveFittingsHType
CpValveFittingsGQuantity
CpValveFittingsGType
CpValveFittingsFQuantity
CpValveFittingsFType
CpValveFittingsEQuantity
CpValveFittingsEType
CpValveFittingsDQuantity
CpValveFittingsDType
CpValveFittingsCQuantity
CpValveFittingsCType
CpValveFittingsBQuantity
CpValveFittingsBType
CpValveFittingsAQuantity
CpValveFittingsAType
CpValvesFittings
CpPipeInsulationThickness
CpPipeScheduleGage
CpPipeThickness
CpConnectEquipmentLocation
CpPipeLength
CpPipeDiameter
CpPipingItemDescription
CpPipingLineNumber
CpPipingVolumetricModel
Title
225
226
CpControlValveTransducerMod
CpControlValveMod
CpControlSignalMod
CpControlCenterAnalogInstrumentMod
CpIndicatingSignalMod
CpProcessConnectionMod
CpSensorMod
CpLoopModifications
CpVendorSupplied
CpBlockBypassOption
CpNumberSolenoids
CpControlValveNumberPositions
CpControlValvePositionSwitch
CpControlValvePositioner
CpRemoteControlType
CpControlValveType
CpControlValveLocation
CpThermocoupleTransmitterType
CpBackOfPanelOption
CpInstrumentPanelAction
CpInstrumentLocation
CpInstrumentSignalType
CpInstrumentQuantity
CpInstrumentSensorLocation
CpInstrumentTransmitter
CpSensorElementType
CpInstrumentSensorType
CpInstrumentProcessVariable
CpInstrumentItemDescription
CpInstrumentLoopNumber
CpInstrumentVolumetricModel
Title
227
CpRequiredPowerItem1
CpVoltageItem1
CpNumberIdenticalElectricalItems1
CpFirstItem
CpConduitType
CpBuriedWireOption
CpLightingWireLength
CpNumberLights
CpPushButtonWireSupport
CpNumberPushbuttons
CpSubstationDistance
CpElectricalVolumetricModel
Title
B-10 [ Insulation bulk items ]
CpFireproofingInstallationOption
CpSteelFireproofingArea
CpSteelFireproofingCoverageOption
CpSteelFireResistanceRating
CpSteelFireproofingType
CpSteelFireproofing
CpComponentFireproofingArea
CpComponentFireResistanceRating
CpComponentFireproofingType
CpsteelFireproofingException
CpComponentException
CpComponentInsulationArea
CpComponentInsulationThickness
CpComponentInsulationJacketType
CpComponentInsulationType
CpComponentInsulation
Title
228
CpNozzleKLocation
CpNozzleKQuantity
CpNozzleKDiameter
CpNozzleJLocation
CpNozzleJQuantity
CpNozzleJDiameter
CpNozzleILocation
CpNozzleIQuantity
CpNozzleIDiameter
CpNozzleHLocation
CpNozzleHQuantity
CpNozzleHDiameter
CpNozzleGLocation
CpNozzleGQuantity
CpNozzleGDiameter
CpNozzleFLocation
CpNozzleFQuantity
CpNozzleFDiameter
CpNozzleELocation
CpNozzleEQuantity
CpNozzleEDiameter
CpNozzleDLocation
CpNozzleDQuantity
CpNozzleDDiameter
CpNozzleCLocation
CpNozzleCQuantity
CpNozzleCDiameter
CpNozzleBLocation
CpNozzleBQuantity
CpNozzleBDiameter
CpNozzleALocation
CpNozzleAQuantity
CpNozzleADiameter
Title
229
230
Object: FABFL
ITEM MODEL : FABFL
OVERALL EFFICIENCY :
FILTER TIME :
SURFACE AREA :
RATE :
INSIDE LENGTH :
DRIVER SPEED :
DIAMETER :
EXIT STREAM :
INLET STREAM :
Object: RGIBBS
ITEM MODEL : RGIBBS
VAPOR FRACTION :
OPERATING PRESS. :
OPERATING TEMP. :
DUTY (sim) :
SPECIFIED PRESSURE :
SPECIFIED TEMPERATURE :
EXIT STREAM :
INLET STREAM :
Object: CCD
ITEM MODEL : CCD
NUMBER OF STAGES :
OPERATING PRESS. :
OPERATING TEMP. :
EXIT STREAM :
INLET STREAM :
Object: HYCYC
ITEM MODEL : HYCYC
PRESSURE DROP :
VOLUMETRIC FLOW RATE :
NO. OF IDENTICAL ITEMS :
DIAMETER :
EXIT STREAM :
INLET STREAM :
Object: RYIELD
ITEM MODEL : RYIELD
VAPOR FRACTION :
OPERATING PRESS. :
OPERATING TEMP. :
DUTY (sim) :
SPECIFIED PRESSURE :
SPECIFIED TEMPERATURE :
EXIT STREAM :
INLET STREAM :
Icarus Technology Object Definitions Reference
AspenTech
July 2010
231
Object: SCREEN
ITEM MODEL : SCREEN
SEPARATION EFFICIENCY :
SCREEN OPENING SIZE :
EXIT STREAM :
INLET STREAM :
Object: SEP
ITEM MODEL : SEP
EXIT STREAM :
INLET STREAM :
Object: RADFRAC
ITEM MODEL : RADFRAC
REBOILER INLET MOLAR FLOW RATE :
REBOILER EXIT PRESSURE :
REBOILER EXIT TEMPERATURE :
REBOILER EXIT VAPOR FRACTION :
STAGE VAPOR FLOW RATE :
STAGE LIQUID FLOW RATE :
STAGE FLOW RATE UNITS :
STAGE TEMPERATURE UNITS :
STAGE PRESSURE UNITS :
STAGE TEMPERATURE :
STAGE PRESSURE :
BOTTOM STAGE VAPOR FLOW :
TOP STAGE VAPOR FLOW :
BOTTOM STAGE LIQUID FLOW :
TOP STAGE LIQUID FLOW :
SUBCOOLED REFLUX DUTY :
FLOODING FACTOR :
CAPACITY FACTOR :
PACKING MATERIAL :
FINAL STAGE :
INITIAL STAGE :
TOTAL PACKING HEIGHT :
DIAMETER :
REBOILER DUTY :
CONDENSER DUTY W/O SUBCOOL :
NUMBER OF STAGES :
EXIT STREAM STAGE :
EXIT STREAM :
INLET STREAM STAGE :
INLET STREAM :
232
Object: MULTIFRAC
ITEM MODEL : MULTIFRAC
INTERCONNECTING STREAM PRESSURE UNITS :
INTERCONNECTING STREAM TEMPERATURE UNITS :
INTERCONNECTING STREAM MASS FLOW UNITS :
INTERCONNECTING STREAM VAPOR FRACTION :
INTERCONNECTING STREAM PRESSURE :
INTERCONNECTING STREAM COLUMN DENSTINATION :
INTERCONNECTING STREAM COLUMN SOURCE :
INTERCONNECTING STREAM TEMPERATURE :
INTERCONNECTING STREAM MASS FLOW :
NUMBER OF INTERCONNECTING STREAM :
TOTAL NUMBER OF STAGES :
NUMBER OF COLUMN :
EXIT STREAM COLUMN CONNECTION :
EXIT STREAM :
INLET STREAM COLUMN CONNECTION :
INLET STREAM :
Object: CYCLONE
ITEM MODEL : MULTIFRAC
PRESSURE DROP :
VOLUMETRIC FLOW RATE :
NO. OF IDENTICAL ITEMS :
DIAMETER :
EXIT STREAM :
INLET STREAM :
Object: RPLUG
ITEM MODEL : RPLUG
EXIT PRESSURE :
INLET TEMPERATURE :
EXIT TEMPERATURE :
DUTY (sim) :
VOLUME :
DIAMETER :
VESSEL T-T HEIGHT :
NUMBER OF REACTIONS :
EXIT STREAM :
INLET STREAM :
Object: FSPLIT
ITEM MODEL : FSPLIT
EXIT STREAM :
INLET STREAM :
Object: SSPLIT
ITEM MODEL : SSPLIT
EXIT STREAM :
INLET STREAM :
233
Object: MCOMPR
ITEM MODEL : MCOMPR
COOLER STAGE DUTY :
COOLER STAGE PRESS. :
COOLER STAGE TEMP. :
COMPR. STAGE POWER :
COMPR. STAGE PRESS. :
COMPR. STAGE TEMP. :
DRIVER POWER :
EXIT PRESSURE :
NUMBER OF STAGES :
EXIT STREAM :
INLET STREAM :
Object: COMPR
ITEM MODEL : COMPR
INDICATED HORSEPOWER REQUIREMENT :
EXIT PRESSURE :
EXIT TEMPERATURE :
ACTUAL CAPACITY :
COMPRESSOR TYPE :
EXIT STREAM :
INLET STREAM :
Object: PUMP
ITEM MODEL : PUMP
HEAD :
PUMP EFFICIENCY :
EXIT PRESSURE :
DRIVER POWER (SIM) :
FLOW RATE (SIM) :
CAPACITY (SIM) :
EXIT STREAM :
INLET STREAM :
Object: DECANTER
ITEM MODEL : DECANTER
EXIT STREAM :
INLET STREAM :
Object: RSTOIC
ITEM MODEL : RSTOIC
VAPOR FRACTION :
OPERATING PRESS. :
OPERATING TEMP. :
DUTY (sim) :
SPECIFIED PRESSURE :
SPECIFIED TEMPERATURE :
EXIT STREAM :
INLET STREAM :
Icarus Technology Object Definitions Reference
AspenTech
July 2010
234
Object: SEP2
ITEM MODEL : SEP2
EXIT STREAM :
INLET STREAM :
Object: VSCRUB
ITEM MODEL : VSCRUB
OVERALL EFFICIENCY :
GAS VELOCITY :
LENGTH :
DIAMETER :
EXIT STREAM :
INLET STREAM :
Object: SCFRAC
ITEM MODEL : SCFRAC
TOP PRODUCT VAPOR FLOW :
TOP PRODUCT LIQUID FLOW :
SECTION STEAM FLOW UNIT :
SECTION STEAM FLOW :
SECTION PRESSURE UNIT :
SECTION PRESSURE :
NUMBER OF STAGES PER SECTION :
EXIT STREAM CONNECTION :
EXIT STREAM :
INLET STREAM CONNECTION :
INLET STREAM :
Object: EXTRACT
ITEM MODEL : EXTRACT
STAGE VAPOR FLOW RATE :
STAGE LIQUID FLOW RATE :
STAGE TEMPERATURE UNITS :
STAGE TEMPERATURE :
STAGE PRESSURE UNITS :
STAGE FLOW RATE UNITS :
STAGE PRESSURE :
BOTTOM STAGE VAPOR FLOW :
TOP STAGE VAPOR FLOW :
BOTTOM STAGE LIQUID FLOW :
TOP STAGE LIQUID FLOW :
NUMBER OF STAGES :
EXIT STREAM STAGE :
EXIT STREAM :
INLET STREAM STAGE :
INLET STREAM :
235
Object: FLASH2
ITEM MODEL : FLASH2
OPERATING PRESS. :
OPERATING TEMP. :
DUTY (sim) :
VAPOR FRACTION :
EXIT STREAM :
INLET STREAM :
Object: FLASH3
ITEM MODEL : FLASH3
OPERATING PRESS. :
OPERATING TEMP. :
DUTY :
VAPOR FRACTION :
EXIT STREAM :
INLET STREAM :
Object: ABSBR
ITEM MODEL : ABSBR
REBOILER INLET MOLAR FLOW RATE :
REBOILER EXIT PRESSURE :
REBOILER EXIT TEMPERATURE :
REBOILER EXIT VAPOR FRACTION :
STAGE VAPOR FLOW RATE :
STAGE LIQUID FLOW RATE :
STAGE FLOW RATE UNITS :
STAGE TEMPERATURE UNITS :
STAGE PRESSURE UNITS :
STAGE TEMPERATURE :
STAGE PRESSURE :
BOTTOM STAGE VAPOR FLOW :
TOP STAGE VAPOR FLOW :
BOTTOM STAGE LIQUID FLOW :
TOP STAGE LIQUID FLOW :
SUBCOOLED REFLUX DUTY :
FLOODING FACTOR :
CAPACITY FACTOR :
PACKING MATERIAL :
FINAL STAGE :
INITIAL STAGE :
TOTAL PACKING HEIGHT :
DIAMETER :
REBOILER DUTY :
CONDENSER DUTY W/O SUBCOOL :
NUMBER OF STAGES :
EXIT STREAM STAGE :
EXIT STREAM :
INLET STREAM STAGE :
INLET STREAM :
236
Object: RCSTR
ITEM MODEL : RCSTR
CAPACITY :
OPERATING PRESS. :
OPERATING TEMP. :
DUTY (sim) :
EXIT STREAM :
INLET STREAM :
Object: ESP
ITEM MODEL : ESP
WIRE DIAMETER :
WIDTH :
OVERALL EFFICIENCY :
PLATE LENGHT :
PLATE HEIGHT :
NUMBER OF PLATES :
POWER :
EXIT STREAM :
INLET STREAM :
Object: DISTL
ITEM MODEL : DISTL
CONDENSER DUTY :
REBOILER DUTY :
REFLUX RATIO :
NUMBER OF STAGES :
BOTTOM STAGE TEMPERATURE :
TOP STAGE TEMPERATURE :
BOTTOM STAGE PRESSURE :
TOP STAGE PRESSURE :
EXIT STREAM :
INLET STREAM :
Object: CRUSHER
ITEM MODEL : CRUSHER
OUTLET DIAMETER :
DRIVER POWER :
CRUSHER TYPE :
EXIT STREAM :
INLET STREAM :
Object: RBATCH
ITEM MODEL : RBATCH
DUTY (sim) :
MAXIMUM REACTOR TEMP. :
RESIDENCE TIME :
EXIT STREAM :
INLET STREAM :
237
Object: HEATER
ITEM MODEL : HEATER
VAPOR FRACTION :
OPERATING PRESS. :
OPERATING TEMP. :
SPECIFIED DUTY :
DUTY (sim) :
EXIT STREAM :
INLET STREAM :
Object: FILTER
ITEM MODEL : FILTER
OVERALL EFFICIENCY :
FILTER TIME :
SURFACE AREA :
RATE :
INSIDE LENGTH :
DRIVER SPEED :
DIAMETER :
EXIT STREAM :
INLET STREAM :
Object: DSTWU
ITEM MODEL : DSTWU
CONDENSER DUTY :
REBOILER DUTY :
REFLUX RATIO :
NUMBER OF STAGES :
BOTTOM STAGE TEMPERATURE :
TOP STAGE TEMPERATURE :
BOTTOM STAGE PRESSURE :
TOP STAGE PRESSURE :
EXIT STREAM :
INLET STREAM :
Object: CFUGE
ITEM MODEL : CFUGE
RATE :
DRIVER SPEED :
INSIDE LENGTH :
INSIDE RADIUS :
EXIT STREAM :
INLET STREAM :
238
Object: REQUIL
ITEM MODEL : REQUIL
VAPOR FRACTION :
OPERATING PRESS. :
OPERATING TEMP. :
DUTY (sim) :
SPECIFIED PRESSURE :
SPECIFIED TEMPERATURE :
LIQUID EXIT STREAM :
VAPOR EXIT STREAM :
INLET STREAM :
Object: MIXER
ITEM MODEL : MIXER
EXIT STREAM :
INLET STREAM :
239
Object: FLASH
ITEM MODEL : FLASH
DUTY (sim) :
OPERATING PRESS. :
EXIT STREAM :
OPERATING TEMP. :
INLET STREAM :
240
Object: REACTOR
ITEM MODEL : REACTOR
REACTOR TYPE :
CAPACITY :
TOTAL PACKING HEIGHT :
DIAMETER :
EXIT PRESSURE :
INLET PRESSURE :
EXIT TEMPERATURE :
INLET TEMPERATURE :
HEAT OF REACTION :
DUTY (sim) :
EXIT STREAM :
INLET STREAM :
Object: ROTDRUM
ITEM MODEL : ROTDRUM
RATE :
DRIVER SPEED :
INSIDE LENGTH :
DIAMETER :
OPERATING TEMP. :
EXIT STREAM :
INLET STREAM :
Object: COMPRESSOR
ITEM MODEL : COMPRESSOR
DRIVER POWER :
ACTUAL CAPACITY :
SPECIFIC HEAT RATIO :
EXIT PRESSURE :
INLET PRESSURE :
EXIT TEMPERATURE :
INLET TEMPERATURE :
EXIT STREAM :
INLET STREAM :
Object: MELTER/FREEZER
ITEM MODEL : MELTER/FREEZER
DUTY :
OPERATING PRESS. :
OPERATING TEMP. :
EXIT STREAM :
INLET STREAM :
241
Object: RIGHTEX
ITEM MODEL : RIGHTEX
NUMBER OF SHELLS :
TEMA TYPE :
TEMPERATURE CORRECTION FACTOR :
TUBE PITCH (SIM) :
EXTENDED_TUBE_LENGTH_A :
EXTENDED TUBE LENGTH (SIM) :
TUBE GAUGE (SIM) :
TUBE THICKNESS (SIM) :
NO_OF_TUBES/SHELL_A :
NO. OF TUBES/SHELL (SIM) :
SHELL DIAMETER (SIM) :
TUBE_OUTSIDE_DIAM._A :
TUBE OUTSIDE DIAM. (SIM) :
TUBE MATERIAL TYPE :
SHELL MATERIAL TYPE :
SHELL PRESSURE-GAUGE :
TUBE PRESSURE -GAUGE :
NO. OF SHELL PASSES :
NO. OF TUBE PASSES :
TUBE EXIT STREAM :
TUBE INLET STREAM :
SHELL EXIT STREAM :
SHELL INLET STREAM :
SHELL FLOW RATE :
TUBE FLOW RATE :
SHELL EXIT PRESSURE :
SHELL INLET PRESSURE :
SHELL EXIT TEMPERATURE :
SHELL INLET TEMPERATURE :
TUBE EXIT PRESSURE :
TUBE INLET PRESSURE :
TUBE EXIT TEMPERATURE :
TUBE INLET TEMPERATURE :
OVERALL U :
UA :
SURFACE AREA (sim) :
DUTY (sim) :
242
Object: LNGHTEX
ITEM MODEL : LNGHTEX
COLD EXIT STREAM :
COLD INLET STREAM :
HOT EXIT STREAM :
HOT INLET STREAM :
COLD EXIT PRESSURE :
COLD EXIT TEMPERATURE :
COLD INLET PRESSURE :
COLD INLET TEMPERATURE :
HOT EXIT PRESSURE :
HOT INLET PRESSURE :
HOT EXIT TEMPERATURE :
HOT INLET TEMPERATURE :
SURFACE AREA (sim) :
OVERALL U :
TEMPERATURE CORRECTION FACTOR :
UA :
WEIGHTED LMTD :
DUTY (sim) :
Object: CENTRIFUGE
ITEM MODEL : CENTRIFUGE
RATE :
DRIVER SPEED :
INSIDE LENGTH :
SCREEN DIAMETER :
DIAMETER :
INSIDE DIAMETER :
OPERATING PRESS. :
OPERATING TEMP. :
EXIT STREAM :
INLET STREAM :
Object: VALVE
ITEM MODEL : VALVE
PRESSURE DROP :
OPERATING PRESS. :
OPERATING TEMP. :
EXIT STREAM :
INLET STREAM :
Object: CALCULATOR
ITEM MODEL : CALCULATOR
EXIT STREAM :
INLET STREAM :
243
Object: PUMP
ITEM MODEL : PUMP
HEAD :
PUMP EFFICIENCY :
DRIVER POWER (SIM) :
FLOW RATE (SIM) :
CAPACITY (SIM) :
EXIT PRESSURE :
INLET PRESSURE :
EXIT TEMPERATURE :
INLET TEMPERATURE :
EXIT STREAM :
INLET STREAM :
Object: DECANTER
ITEM MODEL : DECANTER
NUMBER OF STAGES :
OPERATING PRESS. :
OPERATING TEMP. :
EXIT STREAM :
INLET STREAM :
Object: EXPANDER
ITEM MODEL : EXPANDER
WORK :
FLOW RATE :
EXIT PRESSURE :
INLET PRESSURE :
EXIT TEMPERATURE :
INLET TEMPERATURE :
EXIT STREAM :
INLET STREAM :
Object: DISSOLVER
ITEM MODEL : DISSOLVER
RESIDENCE TIME :
VOLUME :
RATE :
DUTY :
OPERATING PRESS. :
OPERATING TEMP. :
INLET TEMPERATURE :
EXIT STREAM :
INLET STREAM :
244
Object: PIPE
ITEM MODEL : PIPE
LENGTH :
DIAMETER :
EXIT STREAM :
INLET STREAM :
Object: HCURVE
ITEM MODEL : HCURVE
Object: DEPRESSURE
ITEM MODEL : DEPRESSURE
DUTY (sim) :
VENT RATE :
OPERATING TEMP. :
OPERATING PRESS. :
MOLECULAR WEIGHT :
DENSITY :
VOLUME :
Object: CRYSTAL
ITEM MODEL : CRYSTAL
CAPACITY :
SPEED :
RATE :
DUTY :
OPERATING PRESS. :
OPERATING TEMP. :
EXIT STREAM :
INLET STREAM :
245
Object: HEATEX
ITEM MODEL : HEATEX
STEAM PRESSURE :
STEAM TEMP :
STEAM FLOW :
COLD WATER FLOW :
COLD AIR FLOW :
EXIT STREAM :
COLD EXIT STREAM :
INLET STREAM :
COLD INLET STREAM :
HOT EXIT STREAM :
HOT INLET STREAM :
COLD EXIT PRESSURE :
COLD INLET PRESSURE :
COLD EXIT TEMPERATURE :
COLD INLET TEMPERATURE :
HOT EXIT PRESSURE :
HOT INLET PRESSURE :
HOT EXIT TEMPERATURE :
HOT INLET TEMPERATURE :
SURFACE AREA (sim) :
OVERALL U :
TEMPERATURE CORRECTION FACTOR :
UA :
LMTD :
DUTY (sim) :
Object: SPLITTER
ITEM MODEL : SPLITTER
PRESSURE DROP :
OPERATING PRESS. :
OPERATING TEMP. :
EXIT STREAM :
INLET STREAM :
Object: SHORTCUT
ITEM MODEL : SHORTCUT
EXIT STREAM :
INLET STREAM :
MINIMUM REFLUX RATIO :
NUMBER OF STAGES :
246
Object: CSTR
ITEM MODEL : CSTR
REACTOR TYPE :
CAPACITY :
TOTAL PACKING HEIGHT :
DIAMETER :
EXIT PRESSURE :
INLET PRESSURE :
EXIT TEMPERATURE :
INLET TEMPERATURE :
HEAT OF REACTION :
DUTY (sim) :
EXIT STREAM :
INLET STREAM :
Object: PLUG
ITEM MODEL : PLUG
REACTOR TYPE :
CAPACITY :
TOTAL PACKING HEIGHT :
DIAMETER :
EXIT PRESSURE :
INLET PRESSURE :
EXIT TEMPERATURE :
INLET TEMPERATURE :
HEAT OF REACTION :
DUTY (sim) :
EXIT STREAM :
INLET STREAM :
Object: MIXER
ITEM MODEL : MIXER
OPERATING PRESS. :
OPERATING TEMP. :
EXIT STREAM :
INLET STREAM :
Object: DRYER
ITEM MODEL : DRYER
MOISTURE CONTENT :
DUTY :
OPERATING PRESS. :
OPERATING TEMP. :
EXIT STREAM :
INLET STREAM :
247
Object: MASSBALANCE
ITEM MODEL: MASSBALANCE
OTHER EXIT STREAM :
EXIT STREAM :
OTHER INLET STREAM :
INLET STREAM :
Object: BALANCE
ITEM MODEL: MASSBALANCE
OTHER EXIT STREAM :
EXIT STREAM :
OTHER INLET STREAM :
INLET STREAM :
Object: FRAC
ITEM MODEL: FRAC
MOL WGT OVERHEAD PROD :
OPERATING PRESS. :
OPERATING TEMP. :
EXIT STREAM :
INLET STREAM :
DUTY (sim) :
Object: RGIBBS
ITEM MODEL: RGIBBS
MOL WGT OVERHD PROD :
TOTAL PACKING HEIGHT :
DIAMETER :
PRODUCT DENSITY :
DUTY (sim) :
CAPACITY :
EXIT PRESSURE :
INLET PRESSURE :
EXIT TEMPERATURE :
INLET TEMPERATURE :
EXIT STREAM :
INLET STREAM :
Icarus Technology Object Definitions Reference
AspenTech
July 2010
248
Object: SOLIDSEP
ITEM MODEL: SOLIDSEP
EXIT PRESSURE :
EXIT TEMPERATURE :
INLET PRESSURE :
INLET TEMPERATURE :
EXIT STREAM :
INLET STREAM :
CAPACITY :
Object: RATEHEATEX
ITEM MODEL: RATEHEATEX
EXTENDED TUBE LENGTH (SIM) :
TUBE PITCH (SIM) :
TUBE THICKNESS (SIM) :
NO. OF TUBES/SHELL (SIM) :
SHELL DIAMETER (SIM) :
TUBE OUTSIDE DIAM. (SIM) :
TUBE EXIT STREAM :
TUBE INLET STREAM :
SHELL EXIT STREAM :
SHELL INLET STREAM :
SHELL EXIT PRESSURE :
SHELL INLET PRESSURE :
TUBE EXIT TEMPERATURE :
TUBE INLET TEMPERATURE :
TUBE EXIT PRESSURE :
TUBE INLET PRESSURE :
SHELL EXIT TEMPERATURE :
SHELL INLET TEMPERATURE :
NO. OF TUBE PASSES :
NO. OF SHELL PASSES :
LMTD :
DUTY (sim) :
Object: COMPRESSOR
ITEM MODEL: COMPRESSOR
MOLECULAR WEIGHT :
OUTLET COMPR. FACTOR :
INLET COMPR. FACTOR :
SPECIFIC HEAT RATIO :
DRIVER POWER :
MASS CAPACITY :
EXIT PRESSURE :
INLET PRESSURE :
EXIT TEMPERATURE :
INLET TEMPERATURE :
EXIT STREAM :
INLET STREAM :
249
Object: SEP
ITEM MODEL: SEP
VESSEL LENGTH :
VESSEL T-T HEIGHT :
VESSEL DIAMETER :
DIAMETER :
OPERATING PRESS. :
OPERATING TEMP. :
EXIT STREAM :
INLET STREAM :
Object: SET
ITEM MODEL: SET
Object: TEE
ITEM MODEL: TEE
DUTY (sim) :
OPERATING PRESS. :
OPERATING TEMP. :
OTHER EXIT STREAM :
EXIT STREAM :
INLET STREAM :
Object: BAG FILTER
ITEM MODEL: BAG FILTER
DIAMETER :
OPERATING PRESS. :
OPERATING TEMP. :
EXIT STREAM :
INLET STREAM :
FLOW RATE :
Object: PIPING
ITEM MODEL: PIPING
OPERATING TEMP. :
HEAT TRANSFER COEFFICIENT :
PRESS. DROP :
INSIDE DIAMETER :
LENGTH PARAMETER :
EXIT STREAM :
INLET STREAM :
Object: VALVE
ITEM MODEL: VALVE
DUTY (sim) :
OPERATING PRESS. :
OPERATING TEMP. :
EXIT STREAM :
INLET STREAM :
250
Object: CYCLONE
ITEM MODEL: CYCLONE
PRESSURE DROP :
NO. OF IDENTICAL ITEMS :
DIAMETER :
OPERATING PRESS. :
OPERATING TEMP. :
EXIT STREAM :
INLET STREAM :
FLOW RATE :
Object: CALCULATOR
ITEM MODEL: CALCULATOR
OTHER EXIT STREAM :
EXIT STREAM :
OTHER INLET STREAM :
INLET STREAM :
Object: PUMP
ITEM MODEL: PUMP
HEAD :
PUMP EFFICIENCY :
DRIVER POWER (SIM) :
FLOW RATE (SIM) :
CAPACITY (SIM) :
EXIT PRESSURE :
INLET PRESSURE :
EXIT TEMPERATURE :
INLET TEMPERATURE :
EXIT STREAM :
INLET STREAM :
Object: EXPANDER
ITEM MODEL: EXPANDER
MOLECULAR WEIGHT :
OUTLET COMPR. FACTOR :
INLET COMPR. FACTOR :
SPECIFIC HEAT RATIO :
DRIVER POWER :
MASS CAPACITY :
EXIT PRESSURE :
INLET PRESSURE :
EXIT TEMPERATURE :
INLET TEMPERATURE :
EXIT STREAM :
INLET STREAM :
251
Object: RSTOIC
ITEM MODEL: RSTOIC
MOL WGT OVERHD PROD :
TOTAL PACKING HEIGHT :
DIAMETER :
PRODUCT DENSITY :
DUTY (sim) :
CAPACITY :
EXIT PRESSURE :
INLET PRESSURE :
EXIT TEMPERATURE :
INLET TEMPERATURE :
EXIT STREAM :
INLET STREAM :
Object: REQUI
ITEM MODEL: REQUI
MOL WGT OVERHD PROD :
TOTAL PACKING HEIGHT :
DIAMETER :
PRODUCT DENSITY :
DUTY (sim) :
CAPACITY :
EXIT PRESSURE :
INLET PRESSURE :
EXIT TEMPERATURE :
INLET TEMPERATURE :
EXIT STREAM :
INLET STREAM :
Object: HEATER
ITEM MODEL: HEATER
EXIT PRESSURE :
INLET PRESSURE :
EXIT TEMPERATURE :
INLET TEMPERATURE :
EXIT STREAM :
INLET STREAM :
DUTY (sim) :
252
Object: HEATEX
ITEM MODEL: HEATEX
COLD EXIT STREAM :
COLD INLET STREAM :
HOT EXIT STREAM :
HOT INLET STREAM :
COLD EXIT PRESSURE :
COLD INLET PRESSURE :
COLD EXIT TEMPERATURE :
COLD INLET TEMPERATURE :
HOT EXIT PRESSURE :
HOT INLET PRESSURE :
HOT EXIT TEMPERATURE :
HOT INLET TEMPERATURE :
TEMPERATURE CORRECTION FACTOR :
WEIGHTED UA :
UA :
WEIGHTED LMTD :
LMTD :
DUTY (sim) :
Object: FILTER
ITEM MODEL: FILTER
DIAMETER :
OPERATING PRESS. :
OPERATING TEMP. :
EXIT STREAM :
INLET STREAM :
FLOW RATE :
Object: CSTR
ITEM MODEL: CSTR
MOL WGT OVERHD PROD :
TOTAL PACKING HEIGHT :
DIAMETER :
PRODUCT DENSITY :
DUTY (sim) :
CAPACITY :
EXIT PRESSURE :
INLET PRESSURE :
EXIT TEMPERATURE :
INLET TEMPERATURE :
EXIT STREAM :
INLET STREAM :
Object: ADJUST
ITEM MODEL: ADJUST
253
Object: PLUG
ITEM MODEL: PLUG
MOL WGT OVERHD PROD :
TOTAL PACKING HEIGHT :
DIAMETER :
PRODUCT DENSITY :
DUTY (sim) :
CAPACITY :
EXIT PRESSURE :
INLET PRESSURE :
EXIT TEMPERATURE :
INLET TEMPERATURE :
EXIT STREAM :
INLET STREAM :
Object: MIXER
ITEM MODEL: MIXER
OPERATING PRESS. :
OPERATING TEMP. :
EXIT STREAM :
OTHER INLET STREAM :
INLET STREAM :
Object: RECYCLE
ITEM MODEL: RECYCLE
EXIT STREAM :
INLET STREAM :
254
255