Projects

inSCADA allows you to treat your facilities and systems as separate projects. You can create separate projects for each facility or different systems.

You can work on multiple projects simultaneously in real time without any restrictions.

From the Projects screen, you can perform add, edit, delete, import and export operations.

Project Add/Edit Form

Name

You can give your project any name (50 characters).

Description

You can enter a detailed description of your project.

Start Date

You can enter a start time for your project. This feature is defined for future projects developed in the cloud environment.

End Date

You can enter an end time for your project. This feature is defined for future projects developed in the cloud environment.

Address

You can enter the location information about the facilities and systems, that are the subject of your project, as an address. It allows you to track your projects in real time on Google Map with the address information to be entered.

Latitude

You can enter the location information about the facilities and systems, that are the subject of your project, as coordinates.

Longitude

You can enter the location information about the facilities and systems, that are the subject of your project, as coordinates.

Contract Day

By entering the contract day information for your project, you can define the days of the month in which the monthly calculations will be made for your project.

Contract Hour

By entering the contract hour information for your project, you define the time of day for the daily calculations to be made in your project.

Contract Day ve Hour için Örnek

If you define Contract Day = 1, Contract Hour = 8:

Your daily reports are calculated on an hourly basis from 7:59 am to 7:00 am on the previous day.

Your monthly reports are calculated on a daily basis from 07:59 on the 1st day of the report month to the 08:00 on the 1st day of the previous month.

These definitions may vary according to the sector or institutions. While the definition of the day from the electricity market is in the range of 00: 00-23: 59, the definition of the day in the natural gas sector is made between 08:00 and 07:59 of the previous day.

Properties

You can define the properties information of the project. These definitions allow you to keep static information specific to your process in your projects. You can access this information from the script and expression services with the getProjectProperties API and make your applications more dynamic. This allows you to convert your scripts and expressions into a more general purpose library of functions.

Example for Properties

For example, you can define a time zone for the location of your facility of your project.

Name : DateTimeZone

Value : GMT+5

var timezone=ins.getProjectProperties()
var local_hour=ins.now().getHours();
if (!timezone) {
    if (timezone=="GMT+5") {
        local_hour==ins.now().getHours()+5;
    }
}

return local_hour;

Last updated