Autodesk Robot Structural Analysis Robot API New Features

Size: px
Start display at page:

Download "Autodesk Robot Structural Analysis Robot API New Features"

Transcription

1 Autodesk Robot Structural Analysis 2016 Robot API New Features

2 Robot API New Features 2016 ii Table of Contents RobotOM space 1 Robot Object Model 1 Data Server 2 Structure components 2 Load cases 2 Bars 3 Objects 4 Results 9 Calculation results for finite elements 9 IRobotCalculationResume 10 Selections 11 IRobotSelectionFactory 11 Stories 12 IRobotStoreyValues 12 IRobotStructureEvents 13 IRobotStructureEvents 13 IRobotStructureEvents Methods 13 Presentation of data 14 Views and layouts 14 Graphical structure views 14 Concrete 16 Plate and shell reinforcement 16 IRConcr_BAEL_ReinforceData 17 Robot Kernel 19 IRobotKernel 19 IRobotKernel 19 IRobotKernel Fields 20 Index a

3 Robot API New Features RobotOM space This is namespace RobotOM Robot Object Model When modeling a structure, one uses a certain set of concepts that facilitate the process of defining and analyzing the structure Here belong node, bar, load case and many others While working in Robot, one encounters such concepts as project represented by the RTD file, graphical viewers and tables presenting different aspects of data describing a structure, as well as many other abstractions In order to make it possible to use the above-mentioned concepts at the level of a programming language, they have been formalized and defined according to COM standards Program members and data types used to define structures are described in Robot Object Model by means of appropriate interfaces An interface is understood to mean a set of data, mutually linked in a logical manner, and a set of operations that can be performed on the data The data are called attributes or members, and operations that can be performed are called functions or methods of the interface The set of interface functions defines its functionality Each interface has got a unique name For instance, a node of a structure is represented by means of the IRobotNode interface Among the data of the interface one finds, among others, three real numbers corresponding to node coordinates In order to take advantage of the functionality of a given interface, one should create an object that realizes the interface The manner of creating an object depends on the currently used programming language In, for instance, a new object is created by means of the New operator or CreateObject function Additionally, there is a certain interface type that describes the set of constant values or identifiers Such interface represents enumeration type The IRobotProjectType interface is a good example here Identifiers referring to different types of projects available in Robot are its members In order to use a member of such an interface, it suffices to provide its name There is no necessity to create an object to realize it Robot Object Model is a set of such interfaces It is contained in the robotomtlb file in the standard binary format, so that interfaces available in the model could be recognized by the compilers of programming languages and by the system software The TLB standard extension comes from the Type Library name, as the interface is often, especially at the level of a programming language, identified with data type Therefore, one can refer to an object realizing the interface called Interface by calling it an object of the Interface type Naming conventions All names begin with a capital letter If a name consists of more than one word, each name element begins with a capital letter Additionally, an interface name begins with the IRobot prefix, but for interfaces associated with a specialized module the prefix coresponds to the module name (eg IRJoint for interfaces defining the connection module of Robot) The convention has been adopted to minimize the possibility of conflicting names in programming languages that cannot use many independent name spaces The names of members of enumeration interface consist, in turn, of capital letters, and particular segments are separated by the underline sign ("_") Additionally, each name begins with I_FLIN_, where FLIN refers to the first letters of interface name, with the prefix omitted For instance, names of all elements of IRobotProjectType interface begin with the I_PT_ prefix (eg I_PT_FRAME_2D) Such convention facilitates the creation of unique names The uniqueness of names of members of enumeration interfaces is necessary, for they are often interpreted in programming languages as global constants that should have unique names Units All functions of Robot Object Model use the standard SI units, independently of the current settings in Robot options

4 Robot API New Features Data Server All types of data used to define and model a structure (nodes, bars, load cases)) are managed by the Robot Object Model and the Data Server The server also provides access to the results of calculations carried out for the defined structures Interfaces IRobotStructureEvents ( see page 13) Events of RobotStructure object I Structure components All structure components are represented by the objects of relevant data types I1 Load cases Robot Object Model makes it possible to perform operations on load cases available in the Robot program There are two basic types of load cases: a simple case and combinations A simple case definition consists of a list of load records, while a combination contains a list of simple cases with the relevant coefficients Enumerations IRobotCasePredefinedNumber ( see page 2) A list of predefined values which can be used when calling method Get of RobotCaseServer in order to obtain a specific RobotCase object I11 IRobotCasePredefinedNumber enum IRobotCasePredefinedNumber; public enum IRobotCasePredefinedNumber; Public Enum IRobotCasePredefinedNumber I_CPN_MASS_CONVERSION_GLOBAL = -2 I_CPN_MASS_CONVERSION_DYNAMIC = -1 Use this value to obtain the load case with a list of mass activation records including masses in all dynamic cases and in the static cases for body force loads and angular acceleration forces Use this value to obtain the load case with a list of mass activation records including masses in all dynamic cases A list of predefined values which can be used when calling method Get of RobotCaseServer in order to obtain a specific

5 Robot API New Features RobotCase object I2 Bars Interfaces IRobotBarServer ( see page 3) Server of bars manages the bars defined in the structure I21 IRobotBarServer Class Hierarchy interface IRobotBarServer : IRobotDataObjectServer; public interface IRobotBarServer : IRobotDataObjectServer; Public Interface IRobotBarServer Server of bars manages the bars defined in the structure I211 IRobotBarServer The following tables list the members exposed by IRobotBarServer Public Methods SetLabelExt ( see page 3) This method is an extended version of SetLabel It can be used to apply given label directly to selected end of the bar By default when the optional extra parameter is not specified this method is working the same way as SetLabel I212 SetLabelExt HRESULT SetLabelExt(IRobotSelection* _bars, IRobotLabelType _lab_type, BSTR _lab_name, long _ext_param = -1); public void SetLabelExt(IRobotSelection _bars, IRobotLabelType _lab_type, String _lab_name, long _ext_param = -1); Public Sub SetLabelExt(ByRef _bars As IRobotSelection, _lab_type As IRobotLabelType, _lab_name As String, Optional _ext_param As long = -1) This method is an extended version of SetLabel It can be used to apply given label directly to selected end of the bar By

6 Robot API New Features default when the optional extra parameter is not specified this method is working the same way as SetLabel I3 Objects Interfaces IRobotObjEdgeSelection ( see page 6) An interface which describes a selection of edges of panels and other surface objects I31 Complex attributes of an object Enumerations IRobotThicknessOrthoType ( see page 4) IRobotThicknessOrthoDirType ( see page 4) Interfaces IRobotThicknessOrthoData ( see page 5) I311 IRobotThicknessOrthoType enum IRobotThicknessOrthoType; public enum IRobotThicknessOrthoType; Public Enum IRobotThicknessOrthoType I_TOT_SLAB_COMPOSED_WITH_TRAPEZOID_PLATE = 13 Available since version 162 I312 IRobotThicknessOrthoDirType enum IRobotThicknessOrthoDirType; public enum IRobotThicknessOrthoDirType;

7 Robot API New Features Public Enum IRobotThicknessOrthoDirType I_TODT_AUTOMATIC = 4 I313 IRobotThicknessOrthoData Class Hierarchy interface IRobotThicknessOrthoData : IDispatch; public interface IRobotThicknessOrthoData; Public Interface IRobotThicknessOrthoData I3131 IRobotThicknessOrthoData The following tables list the members exposed by IRobotThicknessOrthoData Public Fields ES ( see page 5) T ( see page 6) VS ( see page 6) I3132 IRobotThicknessOrthoData Fields The fields of the IRobotThicknessOrthoData class are listed here Public Fields I31321 ES ES ( see page 5) T ( see page 6) VS ( see page 6) HRESULT get_es(double*); HRESULT put_es(double);

8 Robot API New Features public double ES { get; set; } Public ES As double Available since version 162 I31322 T HRESULT get_t(double*); HRESULT put_t(double); public double T { get; set; } Public T As double Available since version 162 I31323 VS HRESULT get_vs(double*); HRESULT put_vs(double); public double VS { get; set; } Public VS As double Available since version 162 I32 IRobotObjEdgeSelection Class Hierarchy interface IRobotObjEdgeSelection : IDispatch;

9 Robot API New Features public interface IRobotObjEdgeSelection; Public Interface IRobotObjEdgeSelection An interface which describes a selection of edges of panels and other surface objects I321 IRobotObjEdgeSelection The following tables list the members exposed by IRobotObjEdgeSelection Public Fields Count ( see page 7) A number of edges which are described by this selection Public Methods FromText ( see page 8) Get ( see page 8) ToText ( see page 8) Initialize this selection of edges from given text representation This method returns information about the edge with given index within the selection It allows iterate through all the edges in the selection when calling this method with and index parameter from1 to Count ( see page 7) Return a text representation of this selection of edges I322 IRobotObjEdgeSelection Fields The fields of the IRobotObjEdgeSelection class are listed here Public Fields Count ( see page 7) A number of edges which are described by this selection I3221 Count HRESULT get_count(long*); public long Count { get; } Public ReadOnly Count As long A number of edges which are described by this selection

10 Robot API New Features I323 IRobotObjEdgeSelection Methods The methods of the IRobotObjEdgeSelection class are listed here Public Methods FromText ( see page 8) Get ( see page 8) ToText ( see page 8) Initialize this selection of edges from given text representation This method returns information about the edge with given index within the selection It allows iterate through all the edges in the selection when calling this method with and index parameter from1 to Count ( see page 7) Return a text representation of this selection of edges I3231 FromText HRESULT FromText(BSTR _sel_text); public void FromText(String _sel_text); Public Sub FromText(_sel_text As String) Initialize this selection of edges from given text representation I3232 Get HRESULT Get(long _idx, long* _obj_num, long* _edge_idx); public void Get(long _idx, long* _obj_num, long* _edge_idx); Public Sub Get(_idx As long, ByRef _obj_num As long*, ByRef _edge_idx As long*) This method returns information about the edge with given index within the selection It allows iterate through all the edges in the selection when calling this method with and index parameter from1 to Count ( see page 7) I3233 ToText HRESULT ToText(BSTR* ret);

11 Robot API New Features public String ToText(); Public Function ToText() As String Return a text representation of this selection of edges II Results Interfaces IRobotCalculationResume ( see page 10) II1 Calculation results for finite elements Available since version 25 Enumerations IRobotFeLayerType ( see page 9) Available designations of layers for which calculation results for planar finite elements may be obtained II11 IRobotFeLayerType enum IRobotFeLayerType; public enum IRobotFeLayerType; Public Enum IRobotFeLayerType I_FLT_MAXIMUM = 5 I_FLT_MINIMUM = 6 I_FLT_ABSOLUTE_MAXIMUM = 7 Available designations of layers for which calculation results for planar finite elements may be obtained

12 Robot API New Features Available since version 25 II2 IRobotCalculationResume Class Hierarchy interface IRobotCalculationResume : IDispatch; public interface IRobotCalculationResume; Public Interface IRobotCalculationResume Available since version 15 II21 IRobotCalculationResume The following tables list the members exposed by IRobotCalculationResume Public Fields EquationSolvingMethodUsed ( see page 10) It returns a method of solving equations which was used to calculate the results II22 IRobotCalculationResume Fields The fields of the IRobotCalculationResume class are listed here Public Fields EquationSolvingMethodUsed ( see page 10) It returns a method of solving equations which was used to calculate the results II221 EquationSolvingMethodUsed HRESULT get_equationsolvingmethodused(irobotequationsolvingmethod*); public IRobotEquationSolvingMethod EquationSolvingMethodUsed { get; } Public ReadOnly EquationSolvingMethodUsed As IRobotEquationSolvingMethod It returns a method of solving equations which was used to calculate the results

13 Robot API New Features Available since version 16 III Selections Interfaces IRobotSelectionFactory ( see page 11) Factory that creates objects representing selections III1 IRobotSelectionFactory Class Hierarchy interface IRobotSelectionFactory : IDispatch; public interface IRobotSelectionFactory; Public Interface IRobotSelectionFactory Factory that creates objects representing selections III11 IRobotSelectionFactory The following tables list the members exposed by IRobotSelectionFactory Public Methods CreateEdgeSelection ( see page 11) This method creates an empty selection of edges III12 IRobotSelectionFactory Methods The methods of the IRobotSelectionFactory class are listed here Public Methods CreateEdgeSelection ( see page 11) This method creates an empty selection of edges III121 CreateEdgeSelection HRESULT CreateEdgeSelection(IRobotObjEdgeSelection** ret); public IRobotObjEdgeSelection CreateEdgeSelection();

14 Robot API New Features Public Function CreateEdgeSelection() As IRobotObjEdgeSelection This method creates an empty selection of edges IV Stories Interfaces IRobotStoreyValues ( see page 12) Bar properties IV1 IRobotStoreyValues Class Hierarchy interface IRobotStoreyValues : IDispatch; public interface IRobotStoreyValues; Public Interface IRobotStoreyValues Bar properties Available since version 97 IV11 IRobotStoreyValues The following tables list the members exposed by IRobotStoreyValues Public Fields F ( see page 13) Center of gravity of floor slab IV12 IRobotStoreyValues Fields The fields of the IRobotStoreyValues class are listed here Public Fields F ( see page 13) Center of gravity of floor slab

15 Robot API New Features IV121 F HRESULT get_f(irobotgeopoint3d**); public IRobotGeoPoint3D F { get; } Public ReadOnly F As IRobotGeoPoint3D Center of gravity of floor slab V IRobotStructureEvents Class Hierarchy interface IRobotStructureEvents : IDispatch; public interface IRobotStructureEvents; Public Interface IRobotStructureEvents Events of RobotStructure object V1 IRobotStructureEvents The following tables list the members exposed by IRobotStructureEvents Public Methods ResultStatusChanged ( see page 14) This event is triggered when the status of results is changed A new status is passed as a parameter V2 IRobotStructureEvents Methods The methods of the IRobotStructureEvents class are listed here

16 Robot API New Features Public Methods ResultStatusChanged ( see page 14) This event is triggered when the status of results is changed A new status is passed as a parameter V21 ResultStatusChanged HRESULT ResultStatusChanged(IRobotResultStatusType _new_status); public void ResultStatusChanged(IRobotResultStatusType _new_status); Public Sub ResultStatusChanged(_new_status As IRobotResultStatusType) This event is triggered when the status of results is changed A new status is passed as a parameter Presentation of data I Views and layouts I1 Graphical structure views Enumerations IRobotViewVisibilityStatusValue ( see page 14) IRobotViewDiagramResultType ( see page 15) IRobotViewFeMapResultType ( see page 16) Accessible values for particular types of visibility status Set of result types presented by means of diagrams on bars Result types presented by means of maps on finite elements I11 IRobotViewVisibilityStatusValue enum IRobotViewVisibilityStatusValue; public enum IRobotViewVisibilityStatusValue;

17 Robot API New Features Public Enum IRobotViewVisibilityStatusValue I_VVSV_REACTIONS_FX = 0x0080 I_VVSV_REACTIONS_FY = 0x100 I_VVSV_REACTIONS_FZ = 0x200 I_VVSV_REACTIONS_MX = 0x400 I_VVSV_REACTIONS_MY = 0x800 I_VVSV_REACTIONS_PSEUDO_F = 0x2000 I_VVSV_REACTIONS_PSEUDO_M = 0x4000 I_VVSV_REACTIONS_MZ = 0x1000 Accessible values for particular types of visibility status I12 IRobotViewDiagramResultType enum IRobotViewDiagramResultType; public enum IRobotViewDiagramResultType; Public Enum IRobotViewDiagramResultType I_VDRT_REACTION_FX = 35 I_VDRT_REACTION_FY = 36 I_VDRT_REACTION_FZ = 37 I_VDRT_REACTION_MX = 38 I_VDRT_REACTION_MY = 39 I_VDRT_REACTION_MZ = 40

18 Robot API New Features I_VDRT_REACTION_PSEUDOSTATIC_FORCES = 42 I_VDRT_REACTION_LINEAR_SUPPORTS = 43 I_VDRT_REACTION_DESC = 44 I_VDRT_REACTION_DESC_AVERAGE = 45 I_VDRT_REACTION_DESC_INTEGRAL = 46 I_VDRT_REACTION_PSEUDOSTATIC_MOMENTS = 47 Set of result types presented by means of diagrams on bars I13 IRobotViewFeMapResultType enum IRobotViewFeMapResultType; public enum IRobotViewFeMapResultType; Public Enum IRobotViewFeMapResultType I_VFMRT_DETAILED_DISPLACEMENT_Z = 531 Result types presented by means of maps on finite elements Concrete I Plate and shell reinforcement Interfaces IRConcr_BAEL_ReinforceData ( see page 17) Parameters of plate and shell reinforcement according to the BAEL code (91 and 99) Steel grades are determined by the identifiers from the set RConcr_BAEL_SteelGrades whereas concrete classes by RConcr_BAEL_ConcreteGrades

19 Robot API New Features I1 IRConcr_BAEL_ReinforceData Class Hierarchy interface IRConcr_BAEL_ReinforceData : IRConcrReinforceData; public interface IRConcr_BAEL_ReinforceData : IRConcrReinforceData; Public Interface IRConcr_BAEL_ReinforceData Parameters of plate and shell reinforcement according to the BAEL code (91 and 99) Steel grades are determined by the identifiers from the set RConcr_BAEL_SteelGrades whereas concrete classes by RConcr_BAEL_ConcreteGrades I11 IRConcr_BAEL_ReinforceData The following tables list the members exposed by IRConcr_BAEL_ReinforceData Public Fields SLS_ConcreteStressesBot ( see page 17) SLS_ConcreteStressesTop ( see page 18) SLS_SteelStressesBot ( see page 18) SLS_SteelStressesTop ( see page 18) Allowable SLS concrete stresses for bottom reinforcement Allowable SLS concrete stresses for top reinforcement Allowable SLS steel stresses for bottom reinforcement Allowable SLS steel stresses for top reinforcement I12 IRConcr_BAEL_ReinforceData Fields The fields of the IRConcr_BAEL_ReinforceData class are listed here Public Fields SLS_ConcreteStressesBot ( see page 17) SLS_ConcreteStressesTop ( see page 18) SLS_SteelStressesBot ( see page 18) SLS_SteelStressesTop ( see page 18) Allowable SLS concrete stresses for bottom reinforcement Allowable SLS concrete stresses for top reinforcement Allowable SLS steel stresses for bottom reinforcement Allowable SLS steel stresses for top reinforcement I121 SLS_ConcreteStressesBot HRESULT get_sls_concretestressesbot(double*); HRESULT put_sls_concretestressesbot(double);

20 Robot API New Features public double SLS_ConcreteStressesBot { get; set; } Public SLS_ConcreteStressesBot As double Allowable SLS concrete stresses for bottom reinforcement I122 SLS_ConcreteStressesTop HRESULT get_sls_concretestressestop(double*); HRESULT put_sls_concretestressestop(double); public double SLS_ConcreteStressesTop { get; set; } Public SLS_ConcreteStressesTop As double Allowable SLS concrete stresses for top reinforcement I123 SLS_SteelStressesBot HRESULT get_sls_steelstressesbot(double*); HRESULT put_sls_steelstressesbot(double); public double SLS_SteelStressesBot { get; set; } Public SLS_SteelStressesBot As double Allowable SLS steel stresses for bottom reinforcement I124 SLS_SteelStressesTop HRESULT get_sls_steelstressestop(double*); HRESULT put_sls_steelstressestop(double);

21 Robot API New Features public double SLS_SteelStressesTop { get; set; } Public SLS_SteelStressesTop As double Allowable SLS steel stresses for top reinforcement Robot Kernel Available since version 25 Interfaces IRobotKernel ( see page 19) Main interface of the Robot program kernel I IRobotKernel Class Hierarchy interface IRobotKernel : IDispatch; public interface IRobotKernel; Public Interface IRobotKernel Main interface of the Robot program kernel Available since version 25 I1 IRobotKernel The following tables list the members exposed by IRobotKernel Public Fields ProjectActiveModel ( see page 20)

22 Robot API New Features I2 IRobotKernel Fields The fields of the IRobotKernel class are listed here Public Fields ProjectActiveModel ( see page 20) I21 ProjectActiveModel HRESULT get_projectactivemodel(irobotactivemodeltype*); HRESULT put_projectactivemodel(irobotactivemodeltype); public IRobotActiveModelType ProjectActiveModel { get; set; } Public ProjectActiveModel As IRobotActiveModelType Available since version 15

23 Robot API New Features 2016 B Bars 3 C Index Calculation results for finite elements 9 Complex attributes of an object 4 Concrete 16 D Data Server 2 G Graphical structure views 14 I I_CPN_MASS_CONVERSION_DYNAMIC enumeration member 2 I_CPN_MASS_CONVERSION_GLOBAL enumeration member 2 I_FLT_ABSOLUTE_MAXIMUM enumeration member 9 I_FLT_MAXIMUM enumeration member 9 I_FLT_MINIMUM enumeration member 9 I_TODT_AUTOMATIC enumeration member 4 I_TOT_SLAB_COMPOSED_WITH_TRAPEZOID_PLATE enumeration member 4 I_VDRT_REACTION_DESC enumeration member 15 I_VDRT_REACTION_DESC_AVERAGE enumeration member 15 I_VDRT_REACTION_DESC_INTEGRAL enumeration member 15 I_VDRT_REACTION_FX enumeration member 15 I_VDRT_REACTION_FY enumeration member 15 I_VDRT_REACTION_FZ enumeration member 15 I_VDRT_REACTION_LINEAR_SUPPORTS enumeration member 15 I_VDRT_REACTION_MX enumeration member 15 I_VDRT_REACTION_MY enumeration member 15 I_VDRT_REACTION_MZ enumeration member 15 I_VDRT_REACTION_PSEUDOSTATIC_FORCES enumeration member 15 I_VDRT_REACTION_PSEUDOSTATIC_MOMENTS enumeration member 15 I_VFMRT_DETAILED_DISPLACEMENT_Z enumeration member 16 I_VVSV_REACTIONS_FX enumeration member 14 I_VVSV_REACTIONS_FY enumeration member 14 I_VVSV_REACTIONS_FZ enumeration member 14 I_VVSV_REACTIONS_MX enumeration member 14 I_VVSV_REACTIONS_MY enumeration member 14 I_VVSV_REACTIONS_MZ enumeration member 14 I_VVSV_REACTIONS_PSEUDO_F enumeration member 14 I_VVSV_REACTIONS_PSEUDO_M enumeration member 14 IRConcr_BAEL_ReinforceData 17 about IRConcr_BAEL_ReinforceData 17 IRConcr_BAEL_ReinforceData fields 17 IRConcr_BAEL_ReinforceData members 17 SLS_ConcreteStressesBot 17 SLS_ConcreteStressesTop 18 SLS_SteelStressesBot 18 SLS_SteelStressesTop 18 IRobotBarServer 3 about IRobotBarServer 3 IRobotBarServer members 3 SetLabelExt 3 IRobotCalculationResume 10 about IRobotCalculationResume 10 EquationSolvingMethodUsed 10 IRobotCalculationResume fields 10 IRobotCalculationResume members 10 IRobotCasePredefinedNumber 2 IRobotFeLayerType 9 IRobotKernel 19 about IRobotKernel 19 IRobotKernel fields 20 IRobotKernel members 19 ProjectActiveModel 20 IRobotObjEdgeSelection 6 about IRobotObjEdgeSelection 6 Count 7 FromText 8 a

24 Robot API New Features 2016 Get 8 IRobotObjEdgeSelection fields 7 IRobotObjEdgeSelection members 7 IRobotObjEdgeSelection methods 8 ToText 8 IRobotSelectionFactory 11 about IRobotSelectionFactory 11 CreateEdgeSelection 11 IRobotSelectionFactory members 11 IRobotSelectionFactory methods 11 IRobotStoreyValues 12 about IRobotStoreyValues 12 F 13 IRobotStoreyValues fields 12 IRobotStoreyValues members 12 IRobotStructureEvents 13 about IRobotStructureEvents 13 IRobotStructureEvents members 13 IRobotStructureEvents methods 13 ResultStatusChanged 14 IRobotThicknessOrthoData 5 about IRobotThicknessOrthoData 5 ES 5 IRobotThicknessOrthoData fields 5 IRobotThicknessOrthoData members 5 T 6 VS 6 IRobotThicknessOrthoDirType 4 IRobotThicknessOrthoType 4 IRobotViewDiagramResultType 15 IRobotViewFeMapResultType 16 IRobotViewVisibilityStatusValue 14 L Load cases 2 O Objects 4 P Plate and shell reinforcement 16 Presentation of data 14 R Results 9 Robot Kernel 19 Robot Object Model 1 RobotOM 1 RobotOM namespace 1 RobotOMIRConcr_BAEL_ReinforceData 17 RobotOMIRConcr_BAEL_ReinforceDataSLS_ConcreteStres sesbot 17 RobotOMIRConcr_BAEL_ReinforceDataSLS_ConcreteStres sestop 18 RobotOMIRConcr_BAEL_ReinforceDataSLS_SteelStresses Bot 18 RobotOMIRConcr_BAEL_ReinforceDataSLS_SteelStresses Top 18 RobotOMIRobotBarServer 3 RobotOMIRobotBarServerSetLabelExt 3 RobotOMIRobotCalculationResume 10 RobotOMIRobotCalculationResumeEquationSolvingMethod Used 10 RobotOMIRobotCasePredefinedNumber 2 RobotOMIRobotFeLayerType 9 RobotOMIRobotKernel 19 RobotOMIRobotKernelProjectActiveModel 20 RobotOMIRobotObjEdgeSelection 6 RobotOMIRobotObjEdgeSelectionCount 7 RobotOMIRobotObjEdgeSelectionFromText 8 RobotOMIRobotObjEdgeSelectionGet 8 RobotOMIRobotObjEdgeSelectionToText 8 RobotOMIRobotSelectionFactory 11 RobotOMIRobotSelectionFactoryCreateEdgeSelection 11 RobotOMIRobotStoreyValues 12 RobotOMIRobotStoreyValuesF 13 b

25 Robot API New Features 2016 c RobotOMIRobotStructureEvents 13 RobotOMIRobotStructureEventsResultStatusChanged 14 RobotOMIRobotThicknessOrthoData 5 RobotOMIRobotThicknessOrthoDataES 5 RobotOMIRobotThicknessOrthoDataT 6 RobotOMIRobotThicknessOrthoDataVS 6 RobotOMIRobotThicknessOrthoDirType 4 RobotOMIRobotThicknessOrthoType 4 RobotOMIRobotViewDiagramResultType 15 RobotOMIRobotViewFeMapResultType 16 RobotOMIRobotViewVisibilityStatusValue 14 S Selections 11 Stories 12 Structure components 2 V Views and layouts 14

Using BIM model for Fire Emergency Evacuation Plan

Using BIM model for Fire Emergency Evacuation Plan Using BIM model for Fire Emergency Evacuation Plan Adam Stančík 1,, Roman Macháček 2, and Jiří Horák 1 1 Brno University of Technology, Institute of Computer Aided Engineering and Computer Science, 602

More information

DEVELOPMENT OF THE TANGO ALARM SYSTEM

DEVELOPMENT OF THE TANGO ALARM SYSTEM 10th ICALEPCS Int. Conf. on Accelerator & Large Expt. Physics Control Systems. Geneva, 10-14 Oct 2005, WE3B.1-70 (2005) DEVELOPMENT OF THE TANGO ALARM SYSTEM L. Pivetta Sincrotrone Trieste, Trieste, Italy

More information

CFD Analysis of a 24 Hour Operating Solar Refrigeration Absorption Technology

CFD Analysis of a 24 Hour Operating Solar Refrigeration Absorption Technology IJIRST International Journal for Innovative Research in Science & Technology Volume 1 Issue 11 April 2015 ISSN (online): 2349-6010 CFD Analysis of a 24 Hour Operating Solar Refrigeration Absorption Technology

More information

Monitor Alarms and Events

Monitor Alarms and Events This chapter contains the following topics: What Are Alarms and Events?, page 1 How are Alarms and Events Created and Updated?, page 2 Find and View Alarms, page 3 Set Alarm and Event Management Preferences,

More information

Milestone SMI Intrepid II Perimeter Module 1.1 User s Manual

Milestone SMI Intrepid II Perimeter Module 1.1 User s Manual Milestone SMI Intrepid II Perimeter Module 1.1 User s Manual Target Audience for this Document This document is aimed at system users and provides descriptions on how to install and maintain the Milestone

More information

Table of Contents PART I: The History and Current Status of the Industrial HMI PART II: Fundamentals of HMI Design and Best Practices

Table of Contents PART I: The History and Current Status of the Industrial HMI PART II: Fundamentals of HMI Design and Best Practices Table of Contents PART I: The History and Current Status of the Industrial HMI We begin with the origin and evolution of the industrial HMI. The positive and negative issues posed by the introduction of

More information

ESB Tools Reference Guide. Version: CR2

ESB Tools Reference Guide. Version: CR2 ESB Tools Reference Guide Version: 1.1.0.CR2 1. Introduction... 1 1.1. What is ESB?... 1 1.2. Other relevant resources on the topic... 1 2. ESB Support... 3 2.1. ESB Tools Installation... 3 2.2. Creating

More information

Application of OPC in the Intelligent Building System Integration

Application of OPC in the Intelligent Building System Integration Application of OPC in the Intelligent Building System Integration Jie Chen Dongying Vocational College Dongying 257091, P.R.China Xiuli Sun The control system education of Jinan university Jinan 250022,

More information

SELF PRESERVATION SOCIETY By Jim Creak

SELF PRESERVATION SOCIETY By Jim Creak SELF PRESERVATION SOCIETY By Editor of the Means of Escape Magazine and Chairman of The Health & Safety Signs Association. w w w. m e a n s - of- e s c a p e. c o m Agenda Regulatory Reform Fire Safety

More information

Monitor Alarms and Events

Monitor Alarms and Events What Are Alarms and Events?, page 1 How are Alarms and Events Created and Updated?, page 2 Which Events Are Supported?, page 5 Set Alarm and Event Management Preferences, page 5 Interpret Event and Alarm

More information

Northwestern University Scope of BAS Contractor

Northwestern University Scope of BAS Contractor The purpose of this document is to describe the Enterprise Level Server at Northwestern University, and the separation of roles between the System Integrator and the Building Automation System Contractor.

More information

ISO INTERNATIONAL STANDARD. Graphical symbols Safety colours and safety signs Part 2: Design principles for product safety labels

ISO INTERNATIONAL STANDARD. Graphical symbols Safety colours and safety signs Part 2: Design principles for product safety labels INTERNATIONAL STANDARD ISO 3864-2 First edition 2004-10-15 Graphical symbols Safety colours and safety signs Part 2: Design principles for product safety labels Symboles graphiques Couleurs de sécurité

More information

FieldServer Driver - Serial FS Notifier NCA

FieldServer Driver - Serial FS Notifier NCA Driver Version: 1.00 Document Revision: 15 Description FieldServer Driver - Serial FS-8700-98 Notifier NCA The NCA (Network Control Annunciator) Serial driver allows the FieldServer to record data from

More information

Analysis of Evaporative Cooler and Tube in Tube Heat Exchanger in Intercooling of Gas Turbine

Analysis of Evaporative Cooler and Tube in Tube Heat Exchanger in Intercooling of Gas Turbine IJIRST International Journal for Innovative Research in Science & Technology Volume 1 Issue 11 April 2015 ISSN (online): 2349-6010 Analysis of Evaporative Cooler and Tube in Tube Heat Exchanger in Intercooling

More information

MULTISITE. Multisite Activation. Microsoft Dynamics AX White Paper

MULTISITE. Multisite Activation. Microsoft Dynamics AX White Paper MULTISITE Microsoft Dynamics AX 2009 Multisite Activation White Paper Date: June 2008 Introduction... 3 Multisite activation... 4 Prerequisites... 4 Multisite activation update jobs... 5 Multisite activation

More information

Introduction. Introduction

Introduction. Introduction M-Alarm User s Guide 1-1 Chapter 1 Introduction Introduction M-Alarm allows the user to view, store, and manipulate current alarms received by N1 or BACnet Object Linking and Embedding (OLE) for Process

More information

Study and Design Considerations of HRSG Evaporators in Fast Start Combined Cycle Plants. Govind Rengarajan, P.E.CEM, Dan Taylor

Study and Design Considerations of HRSG Evaporators in Fast Start Combined Cycle Plants. Govind Rengarajan, P.E.CEM, Dan Taylor Study and Design Considerations of HRSG Evaporators in Fast Start Combined Cycle Plants Govind Rengarajan, P.E.CEM, Dan Taylor CMI Energy, Erie PA 1651 Bernd Pankow P.E, Pankow Engineering Abstract Combined

More information

Analysis of Constant Pressure and Constant Area Mixing Ejector Expansion Refrigeration System using R-1270 as Refrigerant

Analysis of Constant Pressure and Constant Area Mixing Ejector Expansion Refrigeration System using R-1270 as Refrigerant Analysis of Constant Pressure and Constant Area Mixing Ejector Expansion Refrigeration System using R-1270 as Refrigerant Ravi Verma 1, Sharad Chaudhary 2 1, 2 Department of Mechanical Engineering, IET

More information

ACTIVE INFRARED BARRIER

ACTIVE INFRARED BARRIER Although PROTECH provides high security indoor intrusion sensors for the military and government markets, our specialty is outdoor protection. Since we first introduced our PIRAMID outdoor dual technology

More information

Making the Most of Alarms

Making the Most of Alarms Making the Most of Alarms Leverage the alarm management features of MPA to address network performance problems more effectively. Blueprint to Leverage Alarms and Alerts Using Mitel Performance Analytics

More information

CERN SUMMER STUDENT REPORT. Gas Environment Recoverable Detection (GERD) HMI

CERN SUMMER STUDENT REPORT. Gas Environment Recoverable Detection (GERD) HMI CERN SUMMER STUDENT REPORT Gas Environment Recoverable Detection (GERD) HMI Mari-Liis Sillat National Institute of Chemical Physics and Biophysics (EE) Supervisor: Andromachi Tsirou CERN 2016 Introduction

More information

LevelSET S GSM Functionalities Instructions for Commissioning and Use

LevelSET S GSM Functionalities Instructions for Commissioning and Use Labkotec Oy Myllyhaantie 6 FI-33960 Pirkkala, Finland Tel: +358 29 006 260 Fax: +358 29 006 1260 22.10.2010 Internet: www.labkotec.fi LevelSET S GSM Functionalities Instructions for Commissioning and Use

More information

Lesson 25 Analysis Of Complete Vapour Compression Refrigeration Systems

Lesson 25 Analysis Of Complete Vapour Compression Refrigeration Systems Lesson 25 Analysis Of Complete Vapour Compression Refrigeration Systems Version 1 ME, IIT Kharagpur 1 The specific objectives of this lecture are to: 1. Importance of complete vapour compression refrigeration

More information

Facility Commander Wnx

Facility Commander Wnx Facility Commander Wnx Integrated security management platform for Windows Seamless. Effective. Efficient. Integrate security applications on one versatile platform It s easy and efficient to seamlessly

More information

IndigoVision. GAI-Tronics Integration Module. Administrator's Guide

IndigoVision. GAI-Tronics Integration Module. Administrator's Guide IndigoVision GAI-Tronics Integration Module Administrator's Guide GAI-Tronics Integration Module THIS MANUAL WAS CREATED ON 10 APRIL 2013. DOCUMENT ID: IU-IM-MAN019-1 Legal Considerations LAWS THAT CAN

More information

HERCULES 6 GRAPHICS SYSTEM

HERCULES 6 GRAPHICS SYSTEM HERCULES 6 GRAPHICS SYSTEM USER MANUAL Protec Fire Detection PLC, Protec House, Churchill Way, Nelson, Lancashire, BB9 6RT. Telephone: +44 (0) 1282 717171 Fax: +44 (0) 1282 717273 Web: www.protec.co.uk

More information

Simscape Refrigerant Loop Product

Simscape Refrigerant Loop Product Aims The product is an easy to use simscape simulator with simple GUI or HMI allowing to define: - the different configurations of the physical system - the different operating modes: start, stop, load

More information

Interactive Fire Control Panel IFS7002 four signal loops Instruction Manual

Interactive Fire Control Panel IFS7002 four signal loops Instruction Manual Interactive Fire Control Panel IFS7002 four signal loops Instruction Manual Revision 6/01.17 Contents 1. Introduction... 6 2. Terminology... 6 3. Function... 8 4. Technical data... 8 4.1. Physical configuration...

More information

ESB Tools Reference Guide. Version: GA

ESB Tools Reference Guide. Version: GA ESB Tools Reference Guide Version: 1.1.0.GA 1. Introduction... 1 1.1. What is ESB?... 1 1.2. Other relevant resources on the topic... 1 2. ESB Support... 3 2.1. ESB Tools Installation... 3 2.2. Creating

More information

Verasys System Operation Overview Technical Bulletin

Verasys System Operation Overview Technical Bulletin Contents subject to change. Verasys System Operation Overview Technical Bulletin Code No. LIT-12012370 Issued January 2016 Refer to the QuickLIT Web site for the most up-to-date version of this document.

More information

DX-9100/9120 Weekly Testing of Dedicated Stairwell Pressurization Fans

DX-9100/9120 Weekly Testing of Dedicated Stairwell Pressurization Fans Metasys Network Technical Manual 636 DX-9100/9120 Applications Section Application Note Issue Date 0497 APPLICATION NOTE DX-9100/9120 Weekly Testing of Dedicated Stairwell Pressurization Fans Introduction

More information

Security Management System - Configuring Video Analytics

Security Management System - Configuring Video Analytics Introduction This document describes the steps for configuring the Video Analytics (VA) module available in the Security Management System software. Security Management System video analytics module is

More information

Process Control Systems Engineering

Process Control Systems Engineering Process Control Systems Engineering Supply Infrastructure from A to Z von Leon Urbas 1. Auflage Process Control Systems Engineering Urbas schnell und portofrei erhältlich bei beck-shop.de DIE FACHBUCHHANDLUNG

More information

Insert Photo Here Bos Howard Johns Manville

Insert Photo Here Bos Howard Johns Manville What can TWO GUYS AND A TRUCK" do with PlantPAx? Insert Photo Here Bos Howard Johns Manville Rockwell Automation Process Solutions User Group (PSUG) November 14-15, 2011 Chicago, IL McCormick Place West

More information

INSTALLATION AND START-UP MANUAL HC BUS CONTROL SYSTEM INSTALLATION MANUAL - FULL VERSION EN

INSTALLATION AND START-UP MANUAL HC BUS CONTROL SYSTEM INSTALLATION MANUAL - FULL VERSION EN INSTALLATION AND START-UP MANUAL HC BUS CONTROL SYSTEM INSTALLATION MANUAL - FULL VERSION 954603 EN Subject to technical changes Valid from September 2012 www.rehau.com Construction Automotive Industry

More information

System Design & Diagnostic Analysis of Group 2 Systems

System Design & Diagnostic Analysis of Group 2 Systems 7 th Annual Sucker Rod Pumping Workshop Renaissance Hotel Oklahoma City, Oklahoma September 27-30, 2011 System Design & Diagnostic Analysis of Group 2 Systems John G. Svinos President Theta Oilfield Services,

More information

USER S GUIDE. AXIS Cross Line Detection

USER S GUIDE. AXIS Cross Line Detection USER S GUIDE AXIS Cross Line Detection User s Guide Rev. 1.00 Copyright Axis Communications AB, 2009 November 2009 Part no. 36687 AXIS Cross Line Detection AXIS Cross Line Detection is a trip-wire application

More information

IntesisBox BACnet/IP Server - Notifier ID3000 series

IntesisBox BACnet/IP Server - Notifier ID3000 series IntesisBox Server - Notifier ID3000 series Gateway for integration of Notifier ID3000, ID3002, ID50 and ID60 fire panels into enabled control systems. Integrate your Notifier fire panels into your BACnet

More information

Panel Mounted Fault Annunciator Series

Panel Mounted Fault Annunciator Series Panel Mounted Fault Annunciator Series BSM / USM Panel-mounted fault annunciator Annunciators for panel mounting with,,,, 0 and signal inputs Storage of the last state of inputs and sequence in the case

More information

THERMOSYS 4.3. Getting Started Guide

THERMOSYS 4.3. Getting Started Guide THERMOSYS 4.3 Getting Started Guide February 2016 Table of Contents 1 Installation and File Organization... 3 2 THERMOSYS by Example... 4 2.1 THERMOSYS Component Descriptions... 5 2.1.1 Compressor... 6

More information

2017/11/16 P a g e 1

2017/11/16 P a g e 1 2017/11/16 P a g e 1 Contents What s New... 2 Fixes... 3 Driver Updates... 3 New Sensors... 3 New Features... 3 How To... 4 Security... 4 Auditing... 6 Smart UI/MAPS Title 21 CFR Part 11 Auditing... 6

More information

Smoke Detector and Siren. Manual

Smoke Detector and Siren. Manual Smoke Detector and Siren Manual 004001 Smoke Detector and Siren Manual Quick Start... 2 Product Description... 2 Installation Guidelines... 3 Behavior within the Z-Wave Network... 3 Operating the Device...

More information

Itron Water Loss Management Solutions. Advanced Digital Leak Detection Overview Session

Itron Water Loss Management Solutions. Advanced Digital Leak Detection Overview Session Itron Water Loss Management Solutions Advanced Digital Leak Detection Overview Session Pipeline Assessment Management The Hidden/Aware/Locate/Repair cycle of a leak can cause extensive water loss The Conventional

More information

Daily Offsite; 30 days of backup available; Offsite Annual backup maintained for 5 years

Daily Offsite; 30 days of backup available; Offsite Annual backup maintained for 5 years The fire and gas mapping software is the most technically sophisticated and accurate application available. The fire and gas engineering and risk analysis experts at have engineered this software tool

More information

C&I SYSTEM DIAGNOSTICS WITH SELF MONITORING AND REPORTING TECHNOLOGY (SMART)

C&I SYSTEM DIAGNOSTICS WITH SELF MONITORING AND REPORTING TECHNOLOGY (SMART) C&I SYSTEM DIAGNOSTICS WITH SELF MONITORING AND REPORTING TECHNOLOGY (SMART) Suneel kumar P I Shravan Kumar Seema Deo Bhanu Kumar Raine Dy.General Manager, Dy.Manager Sr.Manager Manager NTPC RSTPS NTPC

More information

Operation Manual Fighter ProVision Software. Version: 0.0 Revision: 1

Operation Manual Fighter ProVision Software. Version: 0.0 Revision: 1 Operation Manual Fighter ProVision Software Version: 0.0 Revision: 1 TABLE OF CONTENTS 1. Introduction 5 2. Software Installation 5 3. PC Users 6 3.1 Introduction 6 3.2 Default Code 6 3.3 Edit PC User

More information

Design of Classroom Intelligent Lighting System Based on SCM. Jiale Zheng1, a

Design of Classroom Intelligent Lighting System Based on SCM. Jiale Zheng1, a 6th International Conference on Machinery, Materials, Environment, Biotechnology and Computer (MMEBC 2016) Design of Classroom Intelligent Lighting System Based on SCM Jiale Zheng1, a 1 North China Electric

More information

Rosenberger Intergrated Operation and Maintenance Center for all repeaters(2g/3g/lte) following CMCC and TMN specification.

Rosenberger Intergrated Operation and Maintenance Center for all repeaters(2g/3g/lte) following CMCC and TMN specification. Rosenberger Intergrated Operation and Maintenance Center for all repeaters(2g/3g/lte) following CMCC and TMN specification. Main Features The topology relationship of all repeater is shown by the domain

More information

Dynamic Simulation of a CFB Boiler System

Dynamic Simulation of a CFB Boiler System 71th IEA-FBC Technical Meeting Dynamic Simulation of a CFB Boiler System 2015. 11. 05, Seoul, Korea Sang Min CHOI Thermal Engineering Lab Thermal Engineering Laboratory KAIST Introduction Dynamic Performance

More information

Avigilon Control Center 5 System Integration Guide

Avigilon Control Center 5 System Integration Guide Avigilon Control Center 5 System Integration Guide for Paxton Net2 Access Control Systems 2014 Avigilon Corporation. All rights reserved. Unless expressly granted in writing, no license is granted with

More information

Multistate Alarm. Introduction

Multistate Alarm. Introduction Object Dictionary 1 Multistate Alarm Introduction The Multistate Alarm object adds the alarming capability for a Boolean or multistate attribute for any object, such as the Present Value of a Binary Input

More information

COCB_ Circuit Breaker (2 state inputs/ 2 control inputs)

COCB_ Circuit Breaker (2 state inputs/ 2 control inputs) MRS752348-MUM Issued: 0/997 Version: F/23.6.2005 Data subject to change without notice COCB_ Circuit Breaker (2 state inputs/ 2 control inputs) Contents. Introduction... 3. Features... 3.2 Application...

More information

IFLA Namespaces - Requirements and Options. (Reference links updated Feb. 2011)

IFLA Namespaces - Requirements and Options. (Reference links updated Feb. 2011) IFLA Namespaces Task Group Background IFLA Namespaces - Requirements and Options Mar. 2010 (Reference links updated Feb. 2011) Following a preliminary meeting with the IFLA Web master and representatives

More information

Avigilon Control Center System Integration Guide

Avigilon Control Center System Integration Guide Avigilon Control Center System Integration Guide with Velocity INT-HIRSCH-A-Rev3 Copyright 2013 Avigilon. All rights reserved. No copying, distribution, publication, modification, or incorporation of this

More information

Control System Structure

Control System Structure Control System Structure Centralized Controller Wireless Controller Centralized Controller Wired Controller BMS User Friendly Management Control Solution Integrated Management Building Management Convenient

More information

Modeling and Simulation of Axial Fan Using CFD Hemant Kumawat

Modeling and Simulation of Axial Fan Using CFD Hemant Kumawat Modeling and Simulation of Axial Fan Using CFD Hemant Kumawat Abstract Axial flow fans, while incapable of developing high pressures, they are well suitable for handling large volumes of air at relatively

More information

ICC INDUSTRIAL CONTROL COMMUNICATIONS, INC.

ICC INDUSTRIAL CONTROL COMMUNICATIONS, INC. ETH-1000 Chillgard LC Quick Start Guide for BACnet MS/TP This document provides a brief overview of the connections and settings that must be used to connect a preconfigured ETH-1000 gateway to a MSA Chillgard

More information

SimpleComTools, LLC 1

SimpleComTools, LLC 1 COM1000-SNMP s Simple Network Management Protocol (SNMP) is a popular network management tool. Traditionally, SNMP was designed and used to gather statistics for network management and capacity planning.

More information

Design of Electronic Control System for Robot Cleaning Machine Based on Profibus-DP. Wei GUAN

Design of Electronic Control System for Robot Cleaning Machine Based on Profibus-DP. Wei GUAN 2017 International Conference on Applied Mechanics and Mechanical Automation (AMMA 2017) ISBN: 978-1-60595-471-4 Design of Electronic Control System for Robot Cleaning Machine Based on Profibus-DP Wei

More information

CELLTROL II BIOREACTOR CONTROL SYSTEM OPERATIONS MANUAL

CELLTROL II BIOREACTOR CONTROL SYSTEM OPERATIONS MANUAL Operation Manual Celltrol II Bioreactor Control System Page 1 of 33 Table of Contents 1) Introduction... 3 1.1) Scope of Document... 3 1.2) Control System Overview... 3 1.3) Introduction to Celltrol II...

More information

C. The system shall be capable of turning luminaires on/off (where supported by the luminaire) as well as full range dimming.

C. The system shall be capable of turning luminaires on/off (where supported by the luminaire) as well as full range dimming. SECTION 260943 SPECIFICATIONS - Wireless Network Lighting Controls. PART 1 - GENERAL 1.1 RELATED DOCUMENTS 1.2 SUMMARY AND KEY SYSTEM DIFFERENTIATORS A. The lighting control system specified herein shall

More information

Design of the Fiber-optic Fence Warning System with Distributed Video Real-Time Display Function Qiang-yi YI and Zheng-hong YU *

Design of the Fiber-optic Fence Warning System with Distributed Video Real-Time Display Function Qiang-yi YI and Zheng-hong YU * 2016 International Conference on Artificial Intelligence: Techniques and Applications (AITA 2016) ISBN: 978-1-60595-389-2 Design of the Fiber-optic Fence Warning System with Distributed Video Real-Time

More information

FUNCTIONAL DESCRIPTION AIS01

FUNCTIONAL DESCRIPTION AIS01 We reserve all rights in this document and in the information contained therein. Reproduction,use or disclosure to third parties without express authority is strictly forbidden. ABB AB; 2002 FUNCTIONAL

More information

Fire Control Panel FS5100

Fire Control Panel FS5100 Fire Control Panel FS5100 INSTRUCTION MANUAL Revision 6/02.11 Contents 1. Introduction... 5 2. Terminology... 5 3. Function... 7 4. Technical data... 7 4.1. Modules... 7 4.1.1. Type of modules... 7 4.1.2.

More information

Alarm Monitoring and Management

Alarm Monitoring and Management CHAPTER 14 This chapter describes Cisco Transport Controller (CTC) alarm management. To troubleshoot specific alarms, refer to the Cisco ONS 15454 Troubleshooting Guide. Chapter topics include: 14.1 Overview,

More information

EAT 212 SOIL MECHANICS

EAT 212 SOIL MECHANICS EAT 212 SOIL MECHANICS Chapter 4: SHEAR STRENGTH OF SOIL PREPARED BY SHAMILAH ANUDAI@ANUAR CONTENT Shear failure in soil Drained and Undrained condition Mohr-coulomb failure Shear strength of saturated

More information

Enhancing Quality of Gas Distribution Tests in Electrostatic Precipitators

Enhancing Quality of Gas Distribution Tests in Electrostatic Precipitators Enhancing Quality of Gas Distribution Tests in Electrostatic Precipitators Author: (1) Nanda Dash( 2) Bharat Jatwani (3) Basheer Kuttecheri Email of corresponding authors: (1)nanda.kishore.dash@power.alstom.com

More information

ArchestrA Direct Connect

ArchestrA Direct Connect Table of Contents ArchestrA Direct Connect... 1 Introduction... 1 ArchestrA Direct Connection... 1 ArchestrA Data Source Definition... 2 Data Source Definition... 2 Importing Alarms from ArchestrA... 6

More information

FST DFS Notifier Onyx 640

FST DFS Notifier Onyx 640 1 DESCRIPTION The NFS-640 Serial driver allows the FieldServer to record data from Notifier Onyx Series NFS-640, NFS2-640 and NFS-320 Fire Panels over RS-232. The FieldServer primarily acts as a Passive

More information

Integrated security management platform for Windows. Seamless. Effective. Efficient.

Integrated security management platform for Windows. Seamless. Effective. Efficient. Integrated security management platform for Windows Seamless. Effective. Efficient. We have 70% security personnel turnover in a year. How can we effectively train them on multiple applications when each

More information

Use of the application program

Use of the application program Contents overview Use of the application program Use of the application program 1 1. Functional description 2 Switching on / off 2 Dimming brighter / darker 2 Dimming value (8 bit) 3 Status Switching (1

More information

VISY-X. Technical Documentation. VISY-SoftView V 1.7 User Guide for VISY-Command GUI and VISY-View Touch. Edition: Version: 6 Art.

VISY-X. Technical Documentation. VISY-SoftView V 1.7 User Guide for VISY-Command GUI and VISY-View Touch. Edition: Version: 6 Art. Technical Documentation VISY-X VISY-SoftView V 1.7 User Guide for VISY-Command GUI and VISY-View Touch Edition: 2015-04 Version: 6 Art. No: 350026 FAFNIR GmbH Bahrenfelder Str. 19 22765 Hamburg, Germany

More information

Total Unified Solution for Building Integration: Communications, Access Control, Video Surveillance and Fire

Total Unified Solution for Building Integration: Communications, Access Control, Video Surveillance and Fire ISC West 2013 Product Showcase Total Unified Solution for Building Integration: Communications, Access Control, Video Surveillance and Fire www.mircomgroup.com [TX3] Unified Solution Our unified solution

More information

Introduction to Modular Programming. Copyright 2012 Rockwell Automation, Inc. All rights reserved.

Introduction to Modular Programming. Copyright 2012 Rockwell Automation, Inc. All rights reserved. Introduction to Modular Programming Rev 5058-CO900C Copyright 2012 Rockwell Automation, Inc. All rights reserved. 2 Agenda Why Modular Programming? Architecting Modular Code Machine Example Meeting Code

More information

Table of Contents. i-vu CCN Standard 4.2

Table of Contents. i-vu CCN Standard 4.2 i-vu CCN Standard 4.2 Owner's Guide CARRIER CORPORATION 2009 A member of the United Technologies Corporation family Stock symbol UTX Catalog No. 11-808-381-01 7/13/2009 Table of Contents Accessing your

More information

ISO INTERNATIONAL STANDARD. Liquid hydrogen Land vehicle fuel tanks. Hydrogène liquide Réservoirs de carburant pour véhicules terrestres

ISO INTERNATIONAL STANDARD. Liquid hydrogen Land vehicle fuel tanks. Hydrogène liquide Réservoirs de carburant pour véhicules terrestres INTERNATIONAL STANDARD ISO 13985 First edition 2006-11-01 Liquid hydrogen Land vehicle fuel tanks Hydrogène liquide Réservoirs de carburant pour véhicules terrestres Reference number ISO 13985:2006(E)

More information

Performance Comparison of Ejector Expansion Refrigeration Cycle with Throttled Expansion Cycle Using R-170 as Refrigerant

Performance Comparison of Ejector Expansion Refrigeration Cycle with Throttled Expansion Cycle Using R-170 as Refrigerant International Journal of Scientific and Research Publications, Volume 4, Issue 7, July 2014 1 Performance Comparison of Ejector Expansion Refrigeration Cycle with Throttled Expansion Cycle Using R-170

More information

Second Revision No. 104-NFPA [ Section No ] Submitter Information Verification. Committee Statement

Second Revision No. 104-NFPA [ Section No ] Submitter Information Verification. Committee Statement of 1 9/22/2014 1:38 PM Second Revision No. 104-NFPA 72-2014 [ Section No. 3.3.3 ] 3.3.3 Accessible, Readily (Readily Accessible). Capable of being reached quickly for operation, renewal, or inspections

More information

THE ALICE EXPERIMENT CONTROL SYSTEM

THE ALICE EXPERIMENT CONTROL SYSTEM 10th ICALEPCS Int. Conf. on Accelerator & Large Expt. Physics Control Systems. Geneva, 10-14 Oct 2005, MO4A.3-7O (2005) THE ALICE EXPERIMENT CONTROL SYSTEM F. Carena 1, W. Carena 1, S. Chapeland 1, R.

More information

My Ton CLASP lites.asia meeting 2-3 October 2013 Manila, Philippines. SEAD Street Lighting Tool

My Ton CLASP lites.asia meeting 2-3 October 2013 Manila, Philippines. SEAD Street Lighting Tool My Ton CLASP lites.asia meeting 2-3 October 2013 Manila, Philippines SEAD Street Lighting Tool SEAD is a multinational government collaboration whose primary objective is to accelerate global market transformation

More information

Avigilon Control Center System Integration Guide

Avigilon Control Center System Integration Guide Avigilon Control Center System Integration Guide with Gallagher Command Centre INT-CARDAX-C-Rev3 Copyright 2013 Avigilon. All rights reserved. No copying, distribution, publication, modification, or incorporation

More information

DX-9100/9120 Warehouse Smoke Exhaust and Reset Logic for a Rooftop Unit

DX-9100/9120 Warehouse Smoke Exhaust and Reset Logic for a Rooftop Unit Metasys Network Technical Manual 636 DX-9100/9120 Applications Section Application Note Issue Date 0497 APPLICATION NOTE DX-9100/9120 Warehouse Smoke Exhaust and Reset Logic for a Rooftop Unit Introduction

More information

Application Guideline. FOUNDATION TM fieldbus for LEPIU. Prepared by: Thomas Klatt Business Development Manager

Application Guideline. FOUNDATION TM fieldbus for LEPIU. Prepared by: Thomas Klatt Business Development Manager FOUNDATION TM fieldbus for LEPIU The TDC 2000 and TDC 3000 Low Energy Process Interface Unit (LEPIU) provides termination and pre-processing of various temperature signals. Due to the age of various components,

More information

Software Solutions FOR THE TELECOMMUNICATIONS INDUSTRY CTS ALARM SOLUTION

Software Solutions FOR THE TELECOMMUNICATIONS INDUSTRY CTS ALARM SOLUTION Software Solutions CTS ALARM SOLUTION Accommodates Multiple Sessions Connects to Leading Switch Manufacturers Long-Term Storage of Data Streams Easy to Use Reports Customizable Notification System With

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction This chapter presents an introductory background to the research work undertaken, the problem statement, research issues involved and objectives of the research work. The contribution

More information

Smart Combiners Installation Guide. For Obvius A89DC-08 sensor modules

Smart Combiners Installation Guide. For Obvius A89DC-08 sensor modules For Obvius A89DC-08 sensor modules Introduction Large roof and ground arrays connect the panels into stings that are merged together in combiner boxes. Each string will typically consist of 10-15 panels

More information

RF SCOUT PLUS INSTRUCTION MANUAL. Dielectric, LLC 22 Tower Rd. Raymond, ME Phone: January 2015, Rev B 1

RF SCOUT PLUS INSTRUCTION MANUAL. Dielectric, LLC 22 Tower Rd. Raymond, ME Phone: January 2015, Rev B 1 RF SCOUT PLUS INSTRUCTION MANUAL Dielectric, LLC 22 Tower Rd. Raymond, ME 04071 Phone: 800.341.9678 www.dielectric.com 21 January 2015, Rev B 1 WARNING Powering RF sensors above +30dBm (1W) will cause

More information

Subscripts 1-4 States of the given system Comp Compressor Cond Condenser E Evaporator vol Volumetric G Gas L Liquid

Subscripts 1-4 States of the given system Comp Compressor Cond Condenser E Evaporator vol Volumetric G Gas L Liquid Simulation Analysis of Compression Refrigeration Cycle with Different Refrigerants P.Thangavel, Dr.P.Somasundaram, T.Sivakumar, C.Selva Kumar, G.Vetriselvan Abstract --- In this analysis, the performance

More information

ISO 3758 INTERNATIONAL STANDARD. Textiles Care labelling code using symbols. Textiles Code d'étiquetage d'entretien au moyen de symboles

ISO 3758 INTERNATIONAL STANDARD. Textiles Care labelling code using symbols. Textiles Code d'étiquetage d'entretien au moyen de symboles INTERNATIONAL STANDARD ISO 3758 Second edition 2005-04-01 Textiles Care labelling code using symbols Textiles Code d'étiquetage d'entretien au moyen de symboles Reference number ISO 2005 Provläsningsexemplar

More information

Flexible Heaters W A T L O W. Temperature Sensors and Controllers SERIES EHG

Flexible Heaters W A T L O W. Temperature Sensors and Controllers SERIES EHG SERIES EHG Many applications requiring a fixed temperature set point have relied on mechanical thermostat devices (thermostats) for thermal control. But, thermostats are inadequate for many applications

More information

CL4001 HEAT TRANSFER OPERATIONS

CL4001 HEAT TRANSFER OPERATIONS CL4001 HEAT TRANSFER OPERATIONS MODULE V Lecture Notes: Debasree Ghosh HEAT EXCHANGER Lecturer, Department of Chemical Engineering, Birla Institute of Technology, Mesra Heat Exchangers: Introduction and

More information

Ei600ZW Z-Wave Module for 10 Year Smoke Sensor with Siren

Ei600ZW Z-Wave Module for 10 Year Smoke Sensor with Siren Ei600ZW Z-Wave Module for 10 Year Smoke Sensor with Siren Quick Start This device is a combination of a Z-Wave sensor (smoke sensor) and a Z-Wave actuator. Pressing the button 'Inclusion Button' for one

More information

Operational Concept Description (OCD)

Operational Concept Description (OCD) Operational Concept Description (OCD) Mission Science irobot Team #07 Ashwini Ramesha OCE, Requirements Engineer Chen Li Requirements Engineer, Feasibility Analyst Farica Mascarenhas IV&V, Quality Analyst

More information

NEW CD WARP CONTROL SYSTEM FOR THE CORRUGATING INDUSTRY

NEW CD WARP CONTROL SYSTEM FOR THE CORRUGATING INDUSTRY NEW CD WARP CONTROL SYSTEM FOR THE CORRUGATING INDUSTRY USING A NEW CONCEPT IN MOISTURE SENSING AND CONTROL BY DRYING TECHNOLOGY, INC A New CD Warp Control System For the Corrugating Industry Introduction:

More information

[ [ ADMIN PANEL USER GUIDE

[ [ ADMIN PANEL USER GUIDE [ [ ADMIN PANEL USER GUIDE ADMIN PANEL USER GUIDE 2 Contents Logging In & Systems Overview 3 System Details 5 Analytics 6 View Alarms 8 Manage Alarms 9 Create Alarms 10 Device Reporting Alarm 11 Monthly

More information

Alarm handling by SMS in ALERT

Alarm handling by SMS in ALERT Micromedia International Alarm handling by SMS Author: Jens Eberle Pages : 9 Company: Micromedia International Date : 29/10/2013 Version : 1.1 Réf. : Alarm Handling by SMS.docx [Commentaires ] Alarm handling

More information

The Language of Geography. Health and Human Services

The Language of Geography. Health and Human Services The Language of Geography Health and Human Services Cover Points of Distribution: this Esri map shows population density in relation to vaccine distribution centers, helping health officials perform a

More information

IE Code IE Competency Title Credit OAC Ref.

IE Code IE Competency Title Credit OAC Ref. Compulsory Workplace Competency Standards Level Four IE Code IE Competency Title Credit OAC Ref. IE119-4WC Design and draw electrical and electronic drawings including schematics, 4 F5 maintain documentation

More information

Softwaretechnik. Lecture 03: From Requirements to Definition. Peter Thiemann. University of Freiburg, Germany SS 2011

Softwaretechnik. Lecture 03: From Requirements to Definition. Peter Thiemann. University of Freiburg, Germany SS 2011 Softwaretechnik Lecture 03: From Requirements to Definition Peter Thiemann University of Freiburg, Germany SS 2011 Peter Thiemann (Univ. Freiburg) Softwaretechnik SWT 1 / 21 Requirements Engineering comprises

More information

Enhanced FOUNDATION Fieldbus Physical Layer Diagnostics with the DeltaV System

Enhanced FOUNDATION Fieldbus Physical Layer Diagnostics with the DeltaV System November 2006 Page 1 Enhanced FOUNDATION Fieldbus Physical Layer Diagnostics This document provides possible solutions that allow enhanced Ff (FOUNDATION fieldbus) physical layer diagnostics using the

More information