Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Notifications
Login / Register
Community
Community
Notifications
close
  • Forums
  • Knowledge Center
  • Events & Webinars
  • Ideas
  • Blogs
Help
Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Login / Register
Sustainability
Sustainability

Ask Me About Webinar: Data Center Assets - Modeling, Cooling, and CFD Simulation
Join our 30-minute expert session on July 10, 2025 (9:00 AM & 5:00 PM CET), to explore Digital Twins, cooling simulations, and IT infrastructure modeling. Learn how to boost resiliency and plan power capacity effectively. Register now to secure your spot!

Building Automation Knowledge Base

Schneider Electric Building Automation Knowledge Base is a self-service resource to answer all your questions about EcoStruxure Building suite, Andover Continuum, Satchwell, TAC…

cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Home
  • Schneider Electric Community
  • Knowledge Center
  • Building Automation Knowledge Base
  • Building Automation Knowledge Base
  • Label: EcoStruxure Building Operation
Options
  • My Knowledge Base Contributions
  • Subscribe
  • Bookmark
  • Invite a Friend
Invite a Co-worker
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send Invite Cancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Send New Invite Close
Labels
Top Labels
  • Alphabetical
  • Andover Continuum 2,209
  • TAC Vista 2,045
  • EcoStruxure Building Operation 1,852
  • TAC IA Series 1,826
  • TAC INET 1,459
  • Field Devices 721
  • Satchwell BAS & Sigma 474
  • EcoStruxure Security Expert 334
  • Satchwell MicroNet 252
  • EcoStruxure Building Expert 228
  • EcoStruxure Access Expert 150
  • CCTV 53
  • Project Configuration Tool 47
  • EcoStruxure Building Activate 17
  • EcoStruxure Building Advisor 12
  • ESMI Fire Detection 11
  • Automated Engineering Tool 5
  • EcoStruxure Building Data Platform 3
  • EcoStruxure Workplace Advisor 1
  • EcoStruxure for Retail - IMP 1
  • Previous
  • 1 of 2
  • Next
Top Contributors
  • Product_Support
    Product_Support
  • DavidFisher
    DavidFisher
  • Cody_Failinger
    Cody_Failinger
See More Contributors
Related Products
Thumbnail of EcoStruxure™ Building Operation
Schneider Electric
EcoStruxure™ Building Operation
4
Thumbnail of SmartX IP Controllers
Schneider Electric
SmartX IP Controllers
1
Thumbnail of EcoStruxure™ Building Advisor
Schneider Electric
EcoStruxure™ Building Advisor
1

Related Forums

  • Intelligent Devices Forum

Previous Next

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite

Label: "ecostruxure building operation"

View in: "Building Automation Knowledge Base" | Community

1849 Posts | First Used: 2018-09-06

Building Automation Knowledge Base

Sort by:
Date
  • Date
  • Views
  • Likes
  • Helpfulness
Options
  • Subscribe
  • Bookmark
  • Invite a Friend
  • « Previous
    • 1
    • …
    • 49
    • 50
    • 51
    • …
    • 93
  • Next »
Label: "EcoStruxure Building Operation" Show all articles

MBus to Modbus TCP

Issue MBus to Modbus TCP Product Line Andover Continuum, EcoStruxure Building Operation, Satchwell Sigma, TAC Vista Environment Mbus Modbus Cause How to read MBus devices into a BMS System using Modbus TCP Resolution There are different methods, but these are generally using a Modbus RTU / Mbus gateway and then converting it to Modbus TCP. The following ADFweb solution allows Mbus to be read directly into a Modbus TCP device. Click here for the datasheet.
View full article
Picard Product_Support
‎2018-09-11 06:27 AM

Labels:
  • Andover Continuum
  • EcoStruxure Building Operation
  • Satchwell BAS & Sigma
  • TAC Vista
8702 Views

Where can I find information on securing a building automation system?

Issue Need information on securing a building automation system. Environment Best practices Cause End user has requested assistance for their IT department to secure the building automation system. Resolution Click here to get a copy of Best_Practices_for_Securing_an+IBMS_WP.pdf,  a white paper written by Schneider' Electric's Buildings BU IT Security Group. This also located on the Download Center here
View full article
Picard Product_Support
‎2018-09-11 06:24 AM

Labels:
  • Andover Continuum
  • EcoStruxure Building Expert
  • EcoStruxure Building Operation
  • Satchwell MicroNet
  • TAC IA Series
  • TAC INET
  • TAC Vista
3971 Views

Configuring a Smart Sensor in SBO

Issue Configuring a Smart Sensor in SBO. Product Line EcoStruxure Building Operation Environment StruxureWare Building Operations b3xxx Controllers Smart Sensor (LCD or LED) Cause Unsure how to program for a Smart Sensor in SBO. Resolution Some considerations to be aware of first; Object naming differences Programming of the Smart Sensor is very similar to the old Plain English programming used in Continuum. One of the main differences is that each input must be specifically defined at the start of the program. Depending on the version of SBO, there may be some other considerations with setting up/reading the LcdDisplay array by renaming of the BACnet AnalogValue's to remove the "_AV" from the BACnet name. This naming issue affects SBO v1.4. Specific variables for Smart Sensor to be used in Plain English programming. Here is an old Smart Sensor Installation manual that will help explain which objects need to be created and how they work in the controller to enable the LCD display. Create the LCDDisplay and SpaceTempSP as numerics and any other objects that are not already created as InfinitySystemVariables. See "Configuration and Programming" section in the manual starting on page 14. Also note that the sensor will not light up until values are written to it. Sample Plain English code. LCDDisplay (or LEDDisplay) is not automatically created. Create this numeric and assign it as an array with 8-elements.  If it is an LCD Smart Sensor, then create a numeric and name it "LCDDisplay" and set its logsize to 7 (this configures it as an array with 8 elements from 0 to 7). If it is an LED Smart Sensor, then create a numeric called "LEDDisplay" instead. After creating this numeric you should be able to create the PE Program successfully. The simple program below will show the current spacetemp (LcdDisplay[1]) in two decimal place format (LcdDisplay[2]) when the Display key (LcdDisplay[0]) is pressed. The degrees symbol (LcdDisplay[7]) is also shown. Consult the Smart Sensor Installation and User Guide starting on page 16 for more details on how these values are configured. Numeric Input SpaceTemp Numeric Output LcdDisplay Initialise: LcdDisplay[2] = 0 If LcdDisplay[0] = 4 then Goto ShowTemperature ShowTemperature: LcdDisplay[1] = SpaceTemp LcdDisplay[2] = 12 LcdDisplay[7] = 1024 If TS > 30 then Goto Initialise In SBO, do the following under the Application section of the b3 controller: Create a BACnet Analog Value object in the b3 called "LCDDisplay". Go to the Advanced tab and under the Log Settings section change Log Records to be 7. Save the changes. Create the program and add the above PE Script. Add the binds to the LCDDisplay object created in step 1, RoomTemp input, and any other objects used in the program.
View full article
Picard Product_Support
‎2018-09-11 11:48 AM

Labels:
  • EcoStruxure Building Operation
3634 Views

Using Sysman Alert Server with EcoStruxure Building Operation

Issue Is it possible to use Sysman Alert Server with EcoStruxure Building Operation? Product Line EcoStruxure Building Operation Environment Alarms and Events Cause Customers may wish to send important alarms to duty staff via SMS. Sysman Alert Server is one way of doing this and is easy to configure.  Resolution This is possible. The following document details the setup procedure: Sysman Alert Server with StruxureWare Building Operation The configuration will depend on the setup and location of the SysMan Server, but will generally involve "Write to File" Notifications if the Enterprise Server and Sysman Servers are installed on the same PC, or Emails to the SysMan Server (from Enterprise or Automation Server) More information can be found on Sysman's website. Part Numbers: SysManSMS ALERT SERVER: 900800600 SysManSMS GSM Modem: 900800610 In the UK when ordering please use the below part numbers. SysManSMS ALERT SERVER: 802000 SysManSMS GSM Modem: 100002
View full article
Picard Product_Support
‎2018-09-11 06:17 AM

Labels:
  • EcoStruxure Building Operation
5825 Views

Is there a SmartStruxure specification that includes a piece for Network 8000 migrations?

Issue Is there a SmartStruxure specification that includes a piece for Network 8000 migrations? Environment Network 8000 Cause sales request Resolution The document is available on the Buildings Business Extranet, under Products > SmartStruxure solution > Sales > Guide Specification. It's a Word doc so it can be modified to suite the desired needs. The current version is 1.4 and is available here for convenience.
View full article
Picard Product_Support
‎2018-09-11 06:01 AM

Labels:
  • EcoStruxure Building Operation
  • TAC IA Series
1028 Views

Managing Licensing distribution using the Option's file

Issue How can we exclude Hosts or Users from accessing the Workstation Professional license i.e. Script, Function Block and Graphic editors from another Workstation? Product Line EcoStruxure Building Operation Environment Building Operation License Server FLEXnet Cause When accessing various editors from within Workstation a particular license does not differentiate host or user who should have access to which editors. Using the option file taclic.opt allows you to exclude certain Host / Users of StruxureWare Building Operation from accessing these Workstation clients. The Workstation clients referenced are as follows: client.station (Workstation) client.script (Script Editor) client.functionblock.view (Function Block Editor) client.graphiceditor (Graphic Editor) Resolution FLEXnet Licensing provides the options file to be included in the License Server directory. Each time the License Server service is started this file is checked. Syntax and use can be found in the attached document - Chapter 13 The following option file must reside on the License Server in the following path: Building Operation 1.9 and below: C:\Program Files(x86)\Schneider Electric StruxureWare\Building Operation 1.x\License Server Building Operation 2.0 and above: C:\Program Files(x86)\Schneider Electric EcoStruxure\Building Operation x.x\License Server Once this file is copied into the License Server folder, you must restart the license service (via the Windows Control Panel, Administrative Tools, Services). Examples: # The following text excludes the features from Workstation Professional # # Use the following 3 Exclude statements if you wish to exclude an entire Workstation from accessing editors # EXCLUDE client.script HOST enter_host_name EXCLUDE client.functionblock.view HOST enter_host_name EXCLUDE client.graphiceditor HOST enter_host_name # # Use the following 3 Exclude statements if you wish to exclude a Building Operation User from accessing editors # (remove #'s below as required) # # EXCLUDE client.script USER enter_user_name # EXCLUDE client.functionblock.view USER enter_user_name # EXCLUDE client.graphiceditor USER enter_user_name # Notes: The HOST can be defined by either DNS or IP Address The USER is the user name as defined in Building Operation, this may be the same as the Windows username if using Windows Domain.
View full article
Picard Product_Support
‎2018-09-11 04:39 AM

Labels:
  • EcoStruxure Building Operation
4869 Views

It is not possible to see the property "Value" for a Xenta time schedule

Issue Right clicking on a Xenta time schedule in the tree view and choose View-Watch pane-Select property, it doesn't exist It is not possible to see the property "Value" for a Xenta time schedule Environment Building Operation Workstation Cause It is not possible to select the Schedule object from the tree view and display its value.  Performing this will result in the 'default' property being display which is the description property.  This is a known issue which will not be corrected. Resolution Although you can not directly select the Schedule object itself and display its value in the Watch window, it is possible to see and add the value to the watch window as follows: From the respective Xenta Controller select the Application folder From the Variables tab expand the application folder Locate the Public Signal showing the Schedule name which you wish to display.   Right-click on this signal and select View > Watch pane The value of the schedule will now be displayed in the Watch window.
View full article
Picard Product_Support
‎2018-09-11 04:41 AM

Labels:
  • EcoStruxure Building Operation
1420 Views

Unable to create bacnet alarms in a 3rd party bacnet device in SmartStruxure

Issue Attempting to map a 3rd party bacnet alarm and there is no way to navigate down to the object Click here to see the following snapshots illustrating the issue Environment SmartStruxure Windows XP SP3 Windows 7 Cause We currently do not support external alarming (that is a BACnet alarm in the AS or ES monitoring a property in some other device.) This is being considered for a future revision. Resolution If the 3rd party device does not support alarming they would have to create an SmartStruxure alarm to monitor it.    An alternative work around if the 3rd party device supports alarms (Ex. Veeder Root in this case) is to create a BACnet Value in the AS (or ES) and then binding it from the Veeder Root object to the local value, and configure alarming from there.
View full article
Picard Product_Support
‎2018-09-11 03:52 AM

Labels:
  • EcoStruxure Building Operation
1501 Views

Use of Output Blocks and Forced signals in Function Block programs

Issue This is a short guide to show the correct use of output blocks with forced values in Function Block programs Environment SmartStruxure AS using Function Block programs Cause There is a design difference between the Vista Menta function block programming and the new version for SmartStruxure. In the old Menta programs it is possible to connect the output from an output block and connect it to an expression block. The forced value from the output block was passed to an expression block connected downstream of the output block. This is NOT supported in SmartStruxure at the current release Ver 1.3 (April 2013) If this is done in SmartStruxure then should the output block be forced in any way the forced signal is ignored by the downstream block Resolution Follow the guidelines as detailed in the attached document.
View full article
Picard Product_Support
‎2018-09-11 03:45 AM

Labels:
  • EcoStruxure Building Operation
2125 Views

SmartStruxure integration with BMS, CRM, SQL, SCADA, PLC, HMI, DALI, TouchPanels, Citrix, or UNIX types of systems

Issue SmartStruxure integration with BMS, CRM, SQL, SCADA, PLC, HMI, TouchPanels, Citrix, or UNIX types of systems Product Line EcoStruxure Building Operation Environment SmartStruxure Site Cause Can SmartStruxure integrate or be used with other BMS, CRM, SQL, SCADA, PLC, HMI, TouchPanels, Citrix, or UNIX types of systems? Resolution Integration and use with third party systems is sometimes possible with SmartStruxure. The question is how much is the third party system willing to integrate or be used with SmartStruxure? OnQ, which is a proprietary CRM or Contact Resource Management built by the Hilton company and deployed to more than 2,100 hotels worldwide, is using the same communication protocol than Micros Fidelio/Opera so you can use a Bacnet to Fidelio gateway. Fingi Operational Services(FOS) All features of the Fingi Mobile Platform operate from within FOS server. There has not been an integration with FOS for an example. We have several references with these systems (Hilton Manchester, Hilton Copenhagen, Hilton America, ...) - some information are in the Solution Toolbox/Hotel under BMS to PMS integration. Some gateway examples are available: Hotels Gateway - Lonbox PFG4000 is a Fidelio Lonworks® hotel booking gateway The Lonbox PFG4000 Users Guide IntesisBox BACnet gateway catalogue - designed to allow supervision and bidirectional control of all the parameters and functionality of systems and equipment with KNX, ModBus, LonWorks and Fidelio systems from BACnet/IP networks IntesisBox BACnet Server – Fidelio IP - Datasheet Citrix - Building Operation is not Citrix verified, nor has it been put through the process of Citrix Ready. The Building Management WorkStation and WebStation have not been tested on a Citrix platform. One solution would be to inquire through your local sales/marketing channel to see if this is something they want to pursue with the business case which has been put together. Integration is a proposed TVDA for 2013 - to be confirmed depending on resources on StruxureLab.
View full article
Picard Product_Support
‎2018-09-11 03:43 AM

Labels:
  • EcoStruxure Building Operation
7232 Views

Which models of the SE7300 series room controllers can be used with the SC3000 series relay packs?

Issue Which models of the SE7300 series room controllers can be used with the SC3000 series relay packs? Product Line EcoStruxure Building Expert, EcoStruxure Building Operation, Field Devices Environment SE7300 series Room Controllers Cause The SC3000 series relay packs allows existing line voltage wiring between the fan coil unit and temperature controller to be re-used. Only certain models of the SE7000 series room controllers can be used with the relay packs.  Resolution The SER7300 is used with the SC3000. Refer to F-27797 SER7300 and SC3000 Series datasheet. Refer to the F-27777 SC3000 Series datasheet to select the appropriate relay pack for your application.  SE7000 series Room Controllers documentation can be found on The Exchange Download Center.   
View full article
Picard Product_Support
‎2018-09-11 05:46 AM

Labels:
  • EcoStruxure Building Expert
  • EcoStruxure Building Operation
  • Field Devices
3844 Views

Values from an IAC600-S controller not displayed correctly in StruxureWare.

Issue The values read from an IAC600-S imported point are multiplied by 256. Environment StruxureWare SNP IAC IAC600 IAC600-S Values Cause The cause is believed to be the data bits for the value are read in the wrong order. Resolution This issue has been raise on the StruxureWare quality report system. (21033) It is possible to correct this reading on a point by point basis with a simple script program. 1  numeric input A 2  numeric output B 3  4  B = A/256 Or with the use of a function block.   Linking the object to the input and the output then linked to the graphical display / log ETC.
View full article
Picard Product_Support
‎2018-09-11 04:30 AM

Labels:
  • EcoStruxure Building Operation
1013 Views

IAC touch screens reset to default address on Sundays

Issue The address of the IAC touch screen will reset to default (65) on Sundays when time broadcast is used Product Line EcoStruxure Building Operation, Satchwell MicroNet Environment Building Operation Enterprise Server Building Operation Automation Server MicroNet transition IAC touch screen Cause When the time broadcast on an AS or ES MicroNet interface the address of the touch screen will reset Instead of broadcasting the day number as a 7, the day number is sent as a 0. The IAC touch screen does not understand day 0, resulting in the touch screen resetting to defaults. No other days are affected. When the touch screen resets, the touch screen's address is also reset and defaults to address 65. Unless the touch screen was originally configured as address 65, the controllers on the SubLAN of the touch screen will not be available, until the correct address is entered into the touch screen. Resolution A hotfix is available from Product Support for SBO version 1.7.1.12604 This correction has been included in SBO 1.8 and later releases. Earlier SBO version will need to be upgraded to SBO 1.7.1 with the hotfix applied or upgrade to version 1.8 when available
View full article
Picard Product_Support
‎2018-09-11 12:57 AM

Labels:
  • EcoStruxure Building Operation
  • Satchwell MicroNet
1701 Views

Can a BS5308 part 1 type 1, 2 pair individually screened cable be used for M-Bus communications?

Issue Can a BS5308 part 1 type 1, 2 pair individually screened cable be used for M-Bus communications? Environment M-Bus Communication Cables Cause A BS5308 part 1 type 1 cable was installed for Modbus communications, but it was then found that the communications were M-Bus Resolution The correct cable to use for M-Bus is J-Y(ST)Y.  These indoor telephone cables transmit analogue or digital signals; Aluminium-laminated plastic foil static screen with tin-plated drain wire minimises the interference of high frequency, electromagnetic field;TP structure minimises crosstalk. For the datasheet please click HERE. The BS5308 part 1 type 1 cable can be used, and the chart below shows the calculations used to establish this. For the cable datasheet, please click HERE. For the Excel spreadsheet please click HERE.
View full article
Picard Product_Support
‎2018-09-10 11:22 PM

Labels:
  • Andover Continuum
  • EcoStruxure Building Operation
  • Satchwell BAS & Sigma
  • TAC Vista
2056 Views

Tables and Offsets for MicroNet 50 series, 100 series and IACs

Issue List of Tables and Offsets for MicroNet 50 series, 100 series, and IACs Product Line EcoStruxure Building Operation, Satchwell MicroNet Environment VisiSat VisiView MicroNet View Cause Need to define the Tables and Offsets for MicroNet 50 series, 100 series, and IACs. Resolution Click here to download the list of tables and offsets for the MicroNet range of controllers. Click here to download the list of tables and offsets for the IAC range of controllers. Updated June 2019 The MicroNet 50 series range MN350, 450, 550, 650 LCD and Touchscreen have been withdrawn from sale. The IAC 420, 600 and Touchscreen have now also been withdrawn from sale. No direct replacement is offered. Further information on these changes can be found in PA-00495 and PA-00528 
View full article
Picard Product_Support
‎2018-09-11 01:43 PM

Labels:
  • EcoStruxure Building Operation
  • Satchwell MicroNet
3075 Views

Automation Server Trend log does not record at time interval when stopped by power cycle

Issue Automation Server -Trend does not record at time interval when it is stopped and restarted by AS power cycle or reboot. Trend log cycle is thrown off when the trend is stopped and started again due to an AS power cycle or reboot. For example, an Interval Trend Log set up to log ever 15 minutes with an activation time right on the hour (1:00, 1:15, 1:30 etc.) that lost power for a while would start logging as soon as the power was restored (this might be 2:07, 2:22, 2:37 etc. for example). UPDATE: This issue has been corrected in SBO version 1.5, any SBO version 1.5 or grater will synchronize the interval log to the clock. Product Line EcoStruxure Building Operation Environment Automation Server Struxureware Workstation Cause This is how Interval Trends behave. For interval trending based on the time a different approach must be taken. UPDATE: This issue has been corrected in SBO version 1.5, any SBO version 1.5 or grater will synchronize the interval log to the clock. Resolution Rather than using Interval Trend Logs use Variable Triggered Trend Logs and trigger them using the following method: Create a new binary value and a new function block program. The value will serve to trigger the Variable Triggered Trend Logs. The program will set the trigger variable based on a certain time interval (for example on the hour, 15 minutes, 30 minutes and 45 minutes). Edit the program and configure it as seen in the image below. This include an integer input, an expression that will evaluate the minutes attribute of the AS and a binary output. You can also download an export of the program and value here. Bind the input of the program to the minutes attribute of the Automation Server and the output to the trigger value that you created. Note that you should also bind the Task to Task 1 (100 ms) for best performance. Create your Variable Triggered Trend Logs on the points that you want to trend. Do this by right-clicking the point to trend and selecting New > Trend and then in the dialog select Variable Triggered Trend Log. Click Next and then set the Trigger Variable to the value that you created. Make sure Trigger when is set to Change to true. Note that this example will create a log at 0, 15, 30 and 45 minutes past the hour. You can modify the program to trigger only every hour, every half hour or however you want.
View full article
Picard Product_Support
‎2018-09-06 11:42 AM

Labels:
  • EcoStruxure Building Operation
2614 Views

Cable guide for LonWorks network

Issue Requirements / specifications on cables used in a LonWorks network Environment LonWorks Cable Wire Guide LonMark Cause There are special requirements on cables used for LonWorks networks between Lon devices. Resolution LonMark organisation is recommending cables according to their specification. An example of this is the Belden LonWorks cable guide. Also, Echelon has a Wiring Guideline and Users Guide.
View full article
Picard Product_Support
‎2018-09-10 11:46 AM

Labels:
  • EcoStruxure Building Operation
  • Field Devices
  • TAC Vista
5348 Views

StruxureWare Building Operation uses the old PI-Modbus-300 protocol

Issue StruxureWare Building Operation uses the old PI-Modbus-300 protocol Environment StruxureWare Building Operation using Modbus protocol Cause Does StruxureWare Building Operation use the MODICON protocol with the reference PI-MBus-300? Resolution Modicon was purchased by Groupe Schneider (which eventually became Schneider Electric) in 1996, way before Schneider Electric bought TAC. The PI that referred to is just a prefix of the technical document describing the Modbus communication protocol. The 300 is the version of the protocol. StruxureWare Building Operation supports a subset of the Modbus protocol. StruxureWare Building Operation does not support all Functions defined by the document specified. Modicon is still the only one that does.
View full article
Picard Product_Support
‎2018-09-10 08:17 PM

Labels:
  • EcoStruxure Building Operation
4234 Views

StruxureWare Building Operation AS status data

Issue StruxureWare Building Operation AS status data Environment StruxureWare Building Operation AS Automation Server Cause AS Information program such as CpuUsage, MemUsage, ProductID, Partnumber, Serial, SWversion, and much more. Resolution The attached file can be imported into a AS (with any or the releases 1.1.x  through the current release 1.5.x). It will create two graphics that supply a wealth of operational information. Screenshots are shown below:   After import into your AS, look for System View folder. Open to view the two ProgramInfo and SystemInfo tabs. Please note that you can also see the CPU% and memory usage of the AS by using Building Operation Workstation, highlight the AS, go to the Properties tab and in Basic, the stats are listed.
View full article
Picard Product_Support
‎2018-09-06 03:31 PM

Labels:
  • EcoStruxure Building Operation
2030 Views

Sensors for Clean Room, Swimming Pool, Outdoor Temperature, Explosion Proof, and Color

Issue What sensors can be used in Clean Rooms  What sensors can be used outdoors for temperature measurement What sensor can be used in a swimming pool What sensor would be explosive proof What color is the wall sensor and are custom colors available Environment Building Automation System such as I/NET, Vista, or Continuum at a site containing a clean room, swimming pool, or outdoors Cause Questions concerning the uses of Schneider Electric sensors in Clean Room applications Questions concerning temperature sensors for Outdoor installations Questions concerning temperature sensors for swimming pools Questions concerning explosion proof sensors* Questions concerning color and custom colors for sensors Resolution All the Schneider Electric temperature sensors found in the HVAC Sensor Catalogue as well as on iPortal provide high accuracy and can be mounted on the wall, in ducts, or in a J-Box. Appendix A provides the accuracy for each of the temperature sensors. Color: STR series wall sensors are: Front Cover: White NCS S-0500 N Core Plate: White NCS S-0500 N and Gray NCS S-2500 N Base Plate: Gray NCS S 1502-R Manufacturing in custom colors in not available. One option could possibly to have the sensors locally custom finished to meet customer's requirements. While there is not a direct cross reference to RAL colors, our engineering team has found the closest alternates. Please see the attached pdf. Clean Room: Depending on the specified limits of the clean room, the variety of sensors offered by Schneider Electric are possible solutions. Thing you may want to research are the standards required for the site. Clean rooms are a controlled environment where products are manufactured. It is a room in which the concentration of airborne particles is controlled to specified limits. Eliminating sub-micron airborne contamination is really a process of control. These contaminants are generated by people, process, facilities and equipment and must be continually removed from the air. The level to which these particles need to be removed depends upon the standards required. The most frequently used standard is the ISO 14644 Standards, which were first formed from the US Federal Standard 209E Airborne Particulate Cleanliness Classes in Cleanrooms and Clean Zones.  ISO 14644 is a document that establishes standard classes of air cleanliness for airborne particulate levels in cleanrooms and clean zones. Strict rules and procedures are followed to prevent contamination of the manufactured product. The only way to control contamination is to control the total environment. Air flow rates and direction, pressurization, temperature, humidity and specialized filtration all need to be tightly controlled. Outdoor:  Schneider Electrics selection of Outdoor Temperature Sensors are the STO100, 200, 500, & 600. These outdoor sensors are intended for outdoor wall mounting. Variants are available for Vista, I/NET, Continuum and Satchwell systems. The body has a 20mm conduit entry and the product is supplied with a conduit gland. Range -40 to +90 °C Accuracy See Appendix A: Table A, C, F in the attached HVAC Sensor Catalog.pdf Outdoor Temperature Sensor STO100 Order Code 5141100010 Part Number STO100 System Vista, Xenta Outdoor Temperature Sensor STO200 Order Code 5123246000 Part Number STO200 System I/NET Outdoor Temperature Sensor STO500 Order Code 5141104010 Part Number STO500 System Continuum Outdoor Temperature Sensor STO600 Order Code 5126060000 Part Number STO600 System Satchwell Outdoor Temperature Sensor STO600D Order Code 5126000000 Part Number STO600D System Drayton Outdoor Temperature Transmitters STO300 The STO300 transmitter is supplied as a complete unit, comprising a sensing element and an amplifier mounted in a housing which is resistant to ultraviolet light. The transmitter is intended for mounting on an outside wall, on the north side where possible. The transmitter is connected over a 2-wire cable, which serves both as power supply and signal transmission. The reading of the measured signal is made over an external load resistance. Outdoor Temperature Sensor STO300 -50/50 Order Code 006920501 Part Number STO300 -50/50 System All Note for each of these outdoor sensors, find the Description, the Order Code, Part Number, and the System it works with for the iBAS (intelligent Building Automation System) Please note the difference in Weatherproof and Outdoor. I put a lot of these outdoor sensors in at a university in Texas, and always installed in places that were a little protected. I found that under porches, up under the eves and out of the sun, or along a loading dock out of the rain and ice gave me accurate readings. Swimming Pool: In the piping system of a swimming pool is a corrosive environment with steadily harmful and gradually destructive minerals and chlorine in the water which present a challenge finding sensors able to withstand for extended periods of time. Schneider Electric makes several immersion temperature sensors. Beginning on page 12 of the above HVAC Catalogue, there is a variety of immersion sensors for the different iBMS lines.  One example is the STP660 is a Temperature Sensor for the European market, and intended for immersion mounting in pipe or the circulating systems. The stainless steel probe is a good solution but remember,  if the sensor is to be installed in pool water that contains chlorine, the best bet is to use a stainless steel pocket. I suppose it all depends on if sensor is in pipe associated with the secondary pool side of the system or the heating side of the system. If the sensor head is in an area exposed to Chlorine, then there may be an issue.  Chlorine may attack the solder connections of the wired joints inside the sensor. In the old days products from Satchwell used to produce special sensors for such applications where the wire connections were varnished in order to prevent corrosion. I think at the end of the day, our sensor would have a similar life expectancy to other devices in the plant that were no designed for use in such corrosive atmospheres. Explosion proof sensors: Schneider Electric does not manufacture explosion proof sensors. We do not partner with another manufacturer who provides such sensors. The closest is an 3rd party explosion proof enclosure with one of our available sensors. Our sensors are designed for building installations and if in extreme environments, we suggest enclosures.  
View full article
Picard Product_Support
‎2018-09-10 12:44 AM

Labels:
  • Andover Continuum
  • EcoStruxure Building Operation
  • Field Devices
  • TAC INET
  • TAC Vista
3961 Views
  • « Previous
    • 1
    • …
    • 49
    • 50
    • 51
    • …
    • 93
  • Next »
To The Top!

Forums

  • APC UPS Data Center Backup Solutions
  • EcoStruxure IT
  • EcoStruxure Geo SCADA Expert
  • Metering & Power Quality
  • Schneider Electric Wiser

Knowledge Center

Events & webinars

Ideas

Blogs

Get Started

  • Ask the Community
  • Community Guidelines
  • Community User Guide
  • How-To & Best Practice
  • Experts Leaderboard
  • Contact Support
Brand-Logo
Subscribing is a smart move!
You can subscribe to this board after you log in or create your free account.
Forum-Icon

Create your free account or log in to subscribe to the board - and gain access to more than 10,000+ support articles along with insights from experts and peers.

Register today for FREE

Register Now

Already have an account? Login

Terms & Conditions Privacy Notice Change your Cookie Settings © 2025 Schneider Electric

This is a heading

With achievable small steps, users progress and continually feel satisfaction in task accomplishment.

Usetiful Onboarding Checklist remembers the progress of every user, allowing them to take bite-sized journeys and continue where they left.

of