AIMMS Function Reference - Time Functions

Size: px
Start display at page:

Download "AIMMS Function Reference - Time Functions"

Transcription

1 AIMMS Function Reference - Time Functions This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit Aimms 3.13

2 Time Functions Aimms supports the following time-related functions: Aggregate ConvertReferenceDate CreateTimeTable CurrentToMoment CurrentToString CurrentToTimeSlot DaylightSavingEndDate DaylightSavingStartDate DisAggregate MomentToString MomentToTimeSlot PeriodToString StringToMoment StringToTimeSlot TestDate TimeSlotCharacteristic TimeSlotToMoment TimeSlotToString TimeZoneOffSet

3 Time Functions 86 Aggregate With the procedure Aggregate you can aggregate time-dependent data from a calendar time scale (time slots to a horizon time scale (periods. Aggregate( TimeslotData,! (input an indexed identifier over a calendar PeriodData,! (output an indexed identifier over a horizon TimeTable,! (input an AIMMS time table Type,! (input an element in the set AggregationTypes [Locus]! (optional a value between 0 and 1 TimeslotData An identifier (slice containing the data to be aggregated. The domain sets in the index domain of this identifier should at least contain a calendar set, and all other sets should coincide with the domain of PeriodData. PeriodData An identifier (slice that on return will contain the aggregated data. The domain sets in the index domain of this identifier should at least contain a horizon set, and all other sets should coincide with the domain of TimeslotData. TimeTable An indexed set in a calendar and defined over a horizon. This horizon and calendar should match with the index domains of TimeslotData and PeriodData. Type An element of the pre-defined set AggregationTypes (summation, average, maximum, minimum, or interpolation. Locus (only for interpolation type A number between 0 and 1, that indicates at which moment in a period the quantity is to be measured. The procedure DisAggregate. Time-dependent aggregation and disaggregation is discussed in full detail in Section 32.5 of the Language Reference.

4 Time Functions 87 ConvertReferenceDate The function ConvertReferenceDate converts a reference date from one timezone to the other. ConvertReferenceDate( ReferenceDate,! (input a string expression FromTimezone,! (input an element expression ToTimezone,! (input an element expression IgnoreDST! (optional a numerical expression (default 0 ReferenceDate A string that holds a reference date in FromTimezone. FromTimezone An element of AllTimeZones with respect to which ReferenceDate is expressed. ToTimezone An element of AllTimeZones with respect to which the resulting reference date must be expressed. IgnoreDST A numerical expression indicating whether daylight saving time must be ignored in the conversion. The result of ConvertReferenceDate is a reference date in ToTimezone corresponding to the reference date ReferenceDate in FromTimezone. Aimms support for time zones is discussed in full detail in Sections and of the Language Reference.

5 Time Functions 88 CreateTimeTable With the procedure CreateTimeTable you can create a timetable in Aimms. CreateTimeTable( Timetable, CurrentTimeslot, CurrentPeriod, PeriodLength, LengthDominates, InactiveTimeSlots, DelimiterSlots! (output an indexed set! (input an element in a calendar! (input an element in a horizon! (input one-dimensional integer parameter! (input one-dimensional binary parameter! (input a subset of a calendar! (input a subset of a calendar Timetable An indexed set in a calendar and defined over the horizon to be linked to the calendar. This argument implicitly sets the calendar and horizon used for the creation of the timetable. The other arguments of the procedure should match with this calendar and horizon. CurrentTimeslot An element of a calendar (a time slot that should be aligned with the CurrentPeriod in the horizon. CurrentPeriod An element of a horizon (a period that should be aligned with the timeslot in the calendar. PeriodLength A one-dimensional integer parameter, specifying the desired length of each period in the horizon in terms of the number of time slots to be contained in it. LengthDominates A one-dimensional binary parameter, indicating whether reaching the specified PeriodLength dominates over the presence of any delimiter slot for every period in the horizon. InactiveTimeSlots A subset of the calendar, indicating the time slots that must be excluded from the timetable. DelimiterSlots A subset of the calendar, indicating the time slots that will (usually result in starting a new period in the horizon. The procedures Aggregate, DisAggregate. For a more detailed description of the creation of timetables, see Section 32.4 of the Language Reference.

6 Time Functions 89 CurrentToMoment The function CurrentToMoment converts the current time to the elapsed time with respect to a specific reference date. CurrentToMoment( Unit, ReferenceDate! (input a time unit! (input a string expression Unit The time unit that is used to return the elapsed time. ReferenceDate A string that holds the begin date using the fixed format for date and time, see paragraph Reference date format on page 511 of the Language Reference. The result of CurrentToMoment is the elapsed time in Unit since Reference- Date. The function StringToMoment.

7 Time Functions 90 CurrentToString The function CurrentToString creates a string representation of the current time in the a specified format. CurrentToString( Format! (input a string expression Format A string that holds the date and time format used in the returned string. Valid format strings are described in Section The result of CurrentToString is a description of the current time according to Format. Remarks: There is an option Current Time in LocalDST that specifies whether this function takes into account the effects of daylight savings time. The functions MomentToString, CurrentToMoment.

8 Time Functions 91 CurrentToTimeSlot The function CurrentToTimeSlot determines the time slot in a calendar that corresponds with the current time. CurrentToTimeSlot( Calendar! (input a calendar Calendar An identifier of type calendar. The function CurrentToTimeSlot returns the time slot in the calendar that contains the current moment. Remarks: There is an option Current Time in LocalDST that specifies whether this function takes into account the effects of daylight savings time. The functions StringToTimeSlot, MomentToTimeSlot.

9 Time Functions 92 DaylightSavingEndDate The function DaylightSavingEndDate computes the end date of daylight saving time for a particular year in a particular time zone. DaylightSavingEndDate( Year, Timezone! (input an element expression! (input an element expression Year An element of a yearly calendar for the end date of daylight saving time must be computed. Timezone An element in the predefined set AllTimeZones. The result of DaylightSavingEndDate is the end date of daylight saving time, as a reference date, for the time zone Timezone in the year Year. Aimms support for time zones is discussed in full detail in Sections and of the Language Reference.

10 Time Functions 93 DaylightSavingStartDate The function DaylightSavingStartDate computes the start date of daylight saving time for a particular year in a particular time zone. DaylightSavingStartDate( Year, Timezone! (input an element expression! (input an element expression Year An element of a yearly calendar for the end date of daylight saving time must be computed. Timezone An element in the predefined set AllTimeZones. The result of DaylightSavingStartDate is the start date of daylight saving time, as a reference date, for the time zone Timezone in the year Year. Aimms support for time zones is discussed in full detail in Sections and of the Language Reference.

11 Time Functions 94 DisAggregate With the procedure DisAggregate you can disaggregate time-dependent data from a horizon time scale (periods to a calendar time scale (time slots. DisAggregate( PeriodData,! (input an indexed identifier over a horizon TimeslotData,! (output an indexed identifier over a calendar Timetable,! (input an AIMMS time table Type,! (input an element in the set AggregationTypes [Locus]! (optional a value between 0 and 1 PeriodData An identifier (slice containing the data to be disaggregated. The domain sets in the index domain of this identifier should at least contain a horizon set, and all other sets should coincide with the domain of TimeslotData. TimeslotData An identifier (slice that on returns will contain the disaggregated data. The domain sets in the index domain of this identifier should at least contain a calendar set, and all other sets should coincide with the domain of PeriodData. Timetable An indexed set in a calendar and defined over a horizon. This horizon and calendar should match with the index domains of TimeslotData and PeriodData. Type An element of the pre-defined set AggregationTypes (summation, average, maximum, minimum, or interpolation. Locus (only for interpolation type A number between 0 and 1, that indicates at which moment in a period the quantity is to be measured. The procedure Aggregate. Time-dependent aggregation and disaggregation is discussed in full detail in Section 32.5 of the Language Reference.

12 Time Functions 95 MomentToString The function MomentToString creates a string representation of a moment, that is calculated from a given amount of elapsed time since a specific reference date. MomentToString( Format, unit, ReferenceDate, Elapsed! (input a string expression! (input a time unit! (input a string expression! (input a numerical expression Format A string that holds the date and time format used in the returned string. Valid format strings are described in Section unit The time unit that is used in the argument Elapsed. ReferenceDate A string that holds the begin date using the fixed format for date and time, see paragraph Reference date format on page 511 of the Language Reference. Elapsed A numerical value of the time elapsed since ReferenceDate. The result of MomentToString is a string describing the corresponding moment according to Format. The function StringToMoment.

13 Time Functions 96 MomentToTimeSlot The function MomentToTimeSlot determines the time slot in a calendar that corresponds with the a moment that is specified as the elapsed time since a specific reference date. MomentToTimeSlot( Calendar, ReferenceDate, Elapsed! (input a calendar! (input an element (time-slot in the calendar! (input a numerical value Calendar An identifier of type calendar. ReferenceDate A specific time-slot in Calendar holding the reference time. Elapsed The elapsed time since ReferenceDate. This should be an integral multiple of the calendar s time unit in order to select the time slot that is the return value of this function. The function MomentToTimeSlot returns the time slot in the calendar that contains the given moment. When the time slot is outside the calendar the empty element is returned. The functions TimeSlotToMoment, CurrentToTimeSlot, StringToTimeSlot.

14 Time Functions 97 PeriodToString With the function PeriodToString you can obtain a description of a period in a timetable that consists of multiple calendar slots. PeriodToString( Format, Timetable, Period! (input a string expression! (input an AIMMS time table! (input an element in a horizon Format A string that holds the date and time format used in the returned string. This format string can contain period specific conversion specifiers to generate a description referring to both the beginning and end of the period, see Section 32.7 Timetable An indexed set in a calendar and defined over a horizon. Period An element in the horizon that is defined by Timetable. The result of PeriodToString is a string describing the corresponding moment according to Format. The procedure CreateTimeTable.

15 Time Functions 98 StringToMoment The function StringToMoment converts a given time string (in a free time format to the elapsed time with a respect to a specific reference date. StringToMoment( Format, Unit, ReferenceDate, Timeslot! (input a string expression! (input a time unit! (input a string expression! (input a string expression Format A string that holds the date and time format used in the fourth argument Timeslot. Valid format strings are described in Section Unit The time unit that is used to return the elapsed time. ReferenceDate A string that holds the begin date using the fixed format for date and time, see paragraph Reference date format on page 511 of the Language Reference. Timeslot A string representing a specific date and time moment using the format specified in the first argument Format. The result of StringToMoment is the elapsed time in unit between referencedate and date. The functions MomentToString, CurrentToMoment.

16 Time Functions 99 StringToTimeSlot The function StringToTimeSlot determines the time slot in a calendar that corresponds with the a moment that is specified using a free format string. StringToTimeSlot( Format, Calendar, MomentString! (input a string expression! (input a calendar! (input a string expression Format A string that holds the date and time format used in the third argument MomentString. Valid format strings are described in Section Calendar An identifier of type calendar. MomentString A string expression of the moment (using the format given in Format that should be matched with the time slots in the calendar. The function StringToTimeSlot returns the time slot in the calendar that contains the given moment. The functions CurrentToTimeSlot, MomentToTimeSlot.

17 Time Functions 100 TestDate The function TestDate tests whether or not a particular date is according to given format. TestDate( Format, Date! (input a string expression! (input a string expression Format A string that holds the date and time format used in the returned string. Valid format strings are described in Section Date It is tested whether or not this string is according to format Format. The result of TestDate is 1 if Date is according to format Format and 0 otherwise. If the result is 0, the pre-defined identifier CurrentErrorMessage will contain a proper error message. The function CurrentToString.

18 Time Functions 101 TimeSlotCharacteristic The function TimeSlotCharacteristic obtains a numeric value which characterizes the time slot, in terms of its day of the week, its day in the year, etc. TimeSlotCharacteristic( Timeslot,! (input an element (time-slot in a calendar Characteristic,! (input an element in TimeslotCharacteristics Timezone,! (optional an element in AllTimeZones, default Local. IgnoreDST! (optional 0-1 expression, default 0. Timeslot A element refering to a time-slot in a calendar. Characteristic An element in the predefined set TimeSlotCharacteristics, each element in this set refers to a specific value that can be retrieved for a time slot. Timezone A time zone from the predefined set AllTimeZones. IgnoreDST A 0-1 expression indicating whether or not to ignore daylight savings time. The function TimeSlotCharacteristic returns a numerical value for the requested time slot characteristic. The function TimeSlotCharacteristic is discussed in full detail in Section 32.4 of the Language Reference.

19 Time Functions 102 TimeSlotToMoment The function TimeSlotToMoment calculates the elapsed time since a specific reference date for a given time slot in a calendar. TimeSlotToMoment( Calendar,! (input a calendar ReferenceDate,! (input an element (time-slot in the calendar Timeslot! (input an element (time-slot in the calendar Calendar An identifier of type calendar. ReferenceDate A specific time-slot in Calendar holding the reference time. Timeslot A specific time slot in the calendar. The function TimeSlotToMoment returns the elapsed time since the reference date for the given time slot (measured in the calendar s unit. The functions MomentToTimeSlot, CurrentToTimeSlot, StringToTimeSlot.

20 Time Functions 103 TimeSlotToString The function TimeSlotToString creates a string representation of a specific time slot in a calendar. TimeSlotToString( Format, Calendar, Timeslot! (input a string expression! (input a calendar! (input an element (timeslot in the calendar Format A string that holds the date and time format used in the returned string. Valid format strings are described in Section Calendar An identifier of type calendar. Timeslot A specific time-slot in the calendar. The function TimeSlotToString returns a string representation of the time slot. The functions MomentToString, CurrentToTimeSlot, StringToTimeSlot.

21 Time Functions 104 TimeZoneOffSet The function TimeZoneOffSet computes, in minutes, the offset between two time zones. TimeZoneOffSet( FromTZ, ToTZ! (input an element expression! (input an element expression FromTZ An element from the set AllTimeZones. ToTZ An element from the set AllTimeZones. The result of TimeZoneOffSet is the offset, in minutes, between FromTZ and ToTZ. Remarks: The result of the function has an associated unit, namely minutes. If FromTZ is UTC, the offset of ToTZ is the usual offset with respect to UTC (or GMT. Aimms support for time zones is discussed in full detail in Sections and of the Language Reference.

AIMMS Language Reference - Time-Based Modeling

AIMMS Language Reference - Time-Based Modeling AIMMS Language Reference - Time-Based Modeling This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit www.aimms.com or order your hardcopy

More information

AIMMS Function Reference - Date Time Related Identifiers

AIMMS Function Reference - Date Time Related Identifiers AIMMS Function Reference - Date Time Related Identifiers This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit www.aimms.com Aimms 3.13 Date-Time

More information

AIMMS Function Reference - Execution State Related Identifiers

AIMMS Function Reference - Execution State Related Identifiers AIMMS Function Reference - Execution State Related Identifiers This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit www.aimms.com Aimms

More information

AIMMS Function Reference - Language Related Identifiers

AIMMS Function Reference - Language Related Identifiers AIMMS Function Reference - Language Related Identifiers This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit www.aimms.com Aimms 3.13 Language

More information

Guidelines Rolling Horizon: Implementation in AIMMS R environment

Guidelines Rolling Horizon: Implementation in AIMMS R environment Guidelines Rolling Horizon: Implementation in AIMMS R environment Marquant Julien email: julien.marquant@empa.ch Urban Physics, Energy group, EMPA March 11, 2015 Energy hub model is a powerful concept

More information

AIMMS Function Reference - XML Functions

AIMMS Function Reference - XML Functions AIMMS Function Reference - XML Functions This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit www.aimms.com Aimms 3.13 XML Functions Aimms

More information

AIMMS Function Reference - Error Handling Related Identifiers

AIMMS Function Reference - Error Handling Related Identifiers AIMMS Function Reference - Error Handling Related Identifiers This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit www.aimms.com Aimms 3.13

More information

When.py Documentation

When.py Documentation When.py Documentation Release 0.4.0 Andy Dirnberger February 27, 2016 Contents 1 Usage 3 2 A note about future and past 9 3 Indices and tables 11 Python Module Index 13 i ii When.py provides user-friendly

More information

Date and Time Functions

Date and Time Functions Date and Time Functions Introduction If you are using these functions in conjunction with either the Now() or Now_() functions, be aware that the time zone returned is the one configured on the machine

More information

AIMMS Function Reference - Page Functions

AIMMS Function Reference - Page Functions AIMMS Function Reference - Page Functions This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit www.aimms.com Aimms 3.13 Page Functions Aimms

More information

AIMMS Function Reference - Miscellaneous Functions

AIMMS Function Reference - Miscellaneous Functions AIMMS Function Reference - Miscellaneous Functions This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit www.aimms.com Aimms 3.13 Miscellaneous

More information

AIMMS Function Reference - System Functions

AIMMS Function Reference - System Functions AIMMS Function Reference - System Functions This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit www.aimms.com Aimms 3.13 System Setting

More information

Genesys Info Mart. date-time Section

Genesys Info Mart. date-time Section Genesys Info Mart date-time Section 11/27/2017 date-time Section date-time-max-days-ahead date-time-min-days-ahead date-time-start-year date-time-table-name date-time-tz first-day-of-week fiscal-year-start

More information

Basic Device Management

Basic Device Management This chapter contains the following sections: About, page 1 Licensing Requirements for, page 2 Default Settings for Basic Device Parameters, page 3 Changing the Device Hostname, page 3 Configuring the

More information

User Guide on Online Resource Booking System (ORBS) Centre for Genomic Sciences HKU

User Guide on Online Resource Booking System (ORBS) Centre for Genomic Sciences HKU User Guide on Online Resource Booking System (ORBS) Centre for Genomic Sciences HKU July 2013 Introduction to Online Resource Booking System The Online Resource Booking System (ORBS) is a convenient web-based

More information

MyOwnDeliveries. a Magento module. User manual

MyOwnDeliveries. a Magento module. User manual MyOwnDeliveries a Magento module User manual Summary Installation 3 On the front office 4 When ordering 4 When subscribing 6 Booking system 7 Delivery sub areas 7 time slots occupation 7 Reservation windows

More information

Examination C++ Programming

Examination C++ Programming LUND INSTITUTE OF TECHNOLOGY 1(8) Department of Computer Science Examination C++ Programming 2011 08 20, 8.00 13.00 Aid at the exam: one C++ book. The copies of the lecture slides are not allowed. You

More information

Configure System Settings on the FindIT Network Probe

Configure System Settings on the FindIT Network Probe Configure System Settings on the FindIT Network Probe Objective Cisco FindIT Network Probe equips a network administrator with indispensable tools that help securely monitor and manage Cisco devices from

More information

Dossier Creation (Create New Dossier Wizard)

Dossier Creation (Create New Dossier Wizard) Published on CMS RNE (https://cms.rne.eu) Home > Dossier Creation (Create New Dossier Wizard) Dossier Creation (Create New Dossier Wizard) Content Read below the step by step procedure or watch the following

More information

Coordinator of Education and Training Programs

Coordinator of Education and Training Programs l Coordinator of Education and Training Programs Celcat Entering Timetable sessions Once the roll creation and EFT have been processed in UE you will need to allow at least 15 minutes for the data to flow

More information

MyOwnDeliveries. a Magento 2 module. User manual

MyOwnDeliveries. a Magento 2 module. User manual MyOwnDeliveries a Magento 2 module User manual Summary Installation 3 Module Settings 6 Configuration 6 Subareas 13 Time Slots 15 Fee Slices 17 Administration 19 Availabilities 19 Deliveries 20 Installation

More information

Universal Function. How to build an Universal Function with beas Usability Extension. Beas Tutorial. Boyum Solutions IT A/S

Universal Function. How to build an Universal Function with beas Usability Extension. Beas Tutorial. Boyum Solutions IT A/S Universal Function How to build an Universal Function with beas Usability Extension Boyum Solutions IT A/S Beas Tutorial TABLE OF CONTENTS 1. INTRODUCTION... 3 2. PROCESS... 3 2.1. Header... 5 2.2. Detailed...

More information

University of Florida CISE department Gator Engineering. Data Preprocessing. Dr. Sanjay Ranka

University of Florida CISE department Gator Engineering. Data Preprocessing. Dr. Sanjay Ranka Data Preprocessing Dr. Sanjay Ranka Professor Computer and Information Science and Engineering University of Florida, Gainesville ranka@cise.ufl.edu Data Preprocessing What preprocessing step can or should

More information

Systems Programming/ C and UNIX

Systems Programming/ C and UNIX Systems Programming/ C and UNIX A. Fischer CSCI 4547/6647 What is Time? November 6, 2017 A. Fischer CSCI 4547/6647[1ex]What is Time? Systems Programming Lecture 8... 1/24 November 6, 2017 1 / 24 Outline

More information

Practice for Chapter 15: Analyzing Existing Subnet Masks

Practice for Chapter 15: Analyzing Existing Subnet Masks A P P E N D I X F Practice for Chapter 15: Analyzing Existing Masks Practice s This appendix lists problems that require you to analyze an existing IP address and mask to determine the number of network,

More information

Public Appointment API. Calendar A

Public Appointment API. Calendar A Public Appointment API Calendar 205.01A Copyright notice The information in this document is subject to change without prior notice and does not represent a commitment on the part of Q-MATIC AB. All efforts

More information

Data Preprocessing. Data Preprocessing

Data Preprocessing. Data Preprocessing Data Preprocessing Dr. Sanjay Ranka Professor Computer and Information Science and Engineering University of Florida, Gainesville ranka@cise.ufl.edu Data Preprocessing What preprocessing step can or should

More information

Recorded Data / Current Readings (XML Format) Specifications. Ver 1.25

Recorded Data / Current Readings (XML Format) Specifications. Ver 1.25 Recorded Data / Current Readings (XML Format) Specifications Ver 1.25 Revision History Revision History By Date Version Contents 2010/3/16 1.00 First Release 2010/8/10 1.10 2011/6/30 1.20 Made compatible

More information

Genesys Info Mart. schedule Section

Genesys Info Mart. schedule Section Genesys Info Mart schedule Section 11/26/2017 schedule Section aggregate-duration aggregate-schedule etl-end-time etl-frequency etl-start-time export-schedule maintain-start-time on-demand-migration run-aggregates

More information

AIMMS Language Reference - Read and Write Statement

AIMMS Language Reference - Read and Write Statement AIMMS Language Reference - Read and Write Statement This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit www.aimms.com. Aimms 4 Copyright

More information

AIMMS Language Reference - Set Declaration

AIMMS Language Reference - Set Declaration AIMMS Language Reference - Set Declaration This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit www.aimms.com. Aimms 4 Copyright c 1993

More information

Quick Start Guide. Version R94. English

Quick Start Guide. Version R94. English Custom Reports Quick Start Guide Version R94 English December 12, 2016 Copyright Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept

More information

LTE TAI Management Database Configuration Mode Commands

LTE TAI Management Database Configuration Mode Commands LTE TAI Management Database Configuration Mode Commands The LTE TAI Management Database Configuration Mode is used to create and manage the LTE Tracking Area Identifier (TAI) management database on this

More information

Generate Reports to Monitor End-user Activity

Generate Reports to Monitor End-user Activity This chapter contains the following sections: Overview of Reporting, on page 1 Using the Reporting Pages, on page 2 Enabling Reporting, on page 7 Scheduling Reports, on page 7 Generating Reports On Demand,

More information

Manual Configuration of Time Settings of SG200, SG300, and SG500 Series Switches

Manual Configuration of Time Settings of SG200, SG300, and SG500 Series Switches Manual Configuration of Time Settings of SG200, SG300, and SG500 Series Switches Objective System time can be set manually by the user, dynamically from an SNTP Unicast/ Multicast/Anycast server, or synchronized

More information

Resource Booker. User Guide. Log into Resource Booker. Make a Booking. Go to and click Log in.

Resource Booker. User Guide. Log into Resource Booker. Make a Booking. Go to   and click Log in. Resource Booker User Guide Log into Resource Booker Go to https://resourcebooker.le.ac.uk and click Log in. Resource Booker is a single sign on application so if you are already logged in on a device on

More information

Kaseya 2. User Guide. Version 7.0. English

Kaseya 2. User Guide. Version 7.0. English Kaseya 2 Custom Reports User Guide Version 7.0 English September 3, 2014 Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULATOS

More information

Exam Name: Netezza Platform Software v6

Exam Name: Netezza Platform Software v6 Vendor: IBM Exam Code: 000-553 Exam Name: Netezza Platform Software v6 Version: DEMO 1.Which CREATE DATABASE attributes are required? A. The database name. B. The database name and the redo log file name.

More information

How to make provisional booking..

How to make provisional booking.. How to make provisional booking.. The following help notes are provided to guide you through The Web Room Booking (WRB) application. If you still have questions after you have read these notes please e-mail

More information

Format specification for the SMET Weather Station Meteorological Data Format version 1.1

Format specification for the SMET Weather Station Meteorological Data Format version 1.1 Format specification for the SMET Weather Station Meteorological Data Format version 1.1 Mathias Bavay November 28, 2017 Abstract The goal of this data format is to ease the exchange of meteorological

More information

DSC 201: Data Analysis & Visualization

DSC 201: Data Analysis & Visualization DSC 201: Data Analysis & Visualization Time Series Dr. David Koop Pivot Tables tips total_bill tip sex smoker day time size tip_pct 0 16.99 1.01 Female No Sun Dinner 2 0.059447 1 10.34 1.66 Male No Sun

More information

Package TimeWarp. R topics documented: July 22, 2016

Package TimeWarp. R topics documented: July 22, 2016 Type Package Title Date Calculations and Manipulation Version 1.0.15 Date 2016-07-19 Author Tony Plate, Jeffrey Horner, Lars Hansen Maintainer Tony Plate

More information

COMPUSTAT Additional Files

COMPUSTAT Additional Files COMPUSTAT Additional Files 10 COMPUSTAT Additional Files i Business Descriptions File 1 Economic & Industry Sector File 1 Value/Growth File 1 Trends & Projections 1 Index Fundamentals File 1 File Structure

More information

IEEE LANGUAGE REFERENCE MANUAL Std P1076a /D3

IEEE LANGUAGE REFERENCE MANUAL Std P1076a /D3 LANGUAGE REFERENCE MANUAL Std P1076a-1999 2000/D3 Clause 10 Scope and visibility The rules defining the scope of declarations and the rules defining which identifiers are visible at various points in the

More information

Interlibrary Loan Protocol Implementors Group (IPIG) Directory Services for Interlibrary Loan Information Model Diagrams

Interlibrary Loan Protocol Implementors Group (IPIG) Directory Services for Interlibrary Loan Information Model Diagrams Interlibrary Loan Protocol Implementors Group (IPIG) Directory Services for Interlibrary Loan Information Model Diagrams Version 1.0 3 August 2002 Directory Services for Interlibrary Loan The most current

More information

They grow as needed, and may be made to shrink. Officially, a Perl array is a variable whose value is a list.

They grow as needed, and may be made to shrink. Officially, a Perl array is a variable whose value is a list. Arrays Perl arrays store lists of scalar values, which may be of different types. They grow as needed, and may be made to shrink. Officially, a Perl array is a variable whose value is a list. A list literal

More information

AIMMS Function Reference - GMPInstance Procedures and Functions

AIMMS Function Reference - GMPInstance Procedures and Functions AIMMS Function Reference - Instance Procedures and Functions This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit www.aimms.com Aimms 3.13

More information

UK Graduate and Interns & STEM Feedback. UK Associates TAS Process Guide & User Manual

UK Graduate and Interns & STEM Feedback. UK Associates TAS Process Guide & User Manual UK Graduate and Interns & STEM Feedback UK Associates TAS Process Guide & User Manual Document Revision History Version Revised by Status Date Reviewer(s) Notes 1.0 Amy Patton Draft 08/01/2013 Draft for

More information

Taleo Enterprise. Taleo Scheduling Center Configuration Guide

Taleo Enterprise. Taleo Scheduling Center Configuration Guide Taleo Enterprise Taleo Scheduling Center Configuration Guide Feature Pack 11A March 25, 2011 Confidential Information and Notices Confidential Information The recipient of this document (hereafter referred

More information

INTERNATIONAL TELECOMMUNICATION UNION

INTERNATIONAL TELECOMMUNICATION UNION INTERNATIONAL TELECOMMUNICATION UNION CCITT G.709 THE INTERNATIONAL TELEGRAPH AND TELEPHONE CONSULTATIVE COMMITTEE (11/1988) SERIES G: TRANSMISSION SYSTEMS AND MEDIA, DIGITAL SYSTEMS AND NETWORKS General

More information

MOBILE COMPUTING 2/11/18. System Structure. Context as Implicit Input. explicit input. explicit output. explicit input.

MOBILE COMPUTING 2/11/18. System Structure. Context as Implicit Input. explicit input. explicit output. explicit input. MOBILE COMPUTING CSE 40814/60814 Spring 2018 System Structure explicit input explicit output Context as Implicit Input explicit input explicit output Context: state of the user state of the physical environment

More information

Configuring the Hostname, Domain Name, Passwords, and Other Basic Settings

Configuring the Hostname, Domain Name, Passwords, and Other Basic Settings CHAPTER 5 Configuring the Hostname, Domain Name, Passwords, and Other Basic Settings This chapter describes how to configure basic settings on your ASA 1000V that are typically required for a functioning

More information

DINO. Language Reference Manual. Author: Manu Jain

DINO. Language Reference Manual. Author: Manu Jain DINO Language Reference Manual Author: Manu Jain Table of Contents TABLE OF CONTENTS...2 1. INTRODUCTION...3 2. LEXICAL CONVENTIONS...3 2.1. TOKENS...3 2.2. COMMENTS...3 2.3. IDENTIFIERS...3 2.4. KEYWORDS...3

More information

AIMMS User s Guide - Calling AIMMS

AIMMS User s Guide - Calling AIMMS AIMMS User s Guide - Calling AIMMS This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit www.aimms.com. Aimms 4 Copyright c 1993 2018 by

More information

High Accuracy Time Synchronization over SpaceWire Networks - update

High Accuracy Time Synchronization over SpaceWire Networks - update High Accuracy Time Synchronization over SpaceWire Networks - update Aeroflex Gaisler AB Kungsgatan 12, SE-41119 Göteborg, Sweden sales@gaisler.com +46 31 775 86 50 www.aeroflex.com/gaisler 1 Overview Standard

More information

Table of Contents 1 Basic Configuration Commands 1-1

Table of Contents 1 Basic Configuration Commands 1-1 Table of Contents 1 Basic Configuration Commands 1-1 Basic Configuration Commands 1-1 clock datetime 1-1 clock summer-time one-off 1-2 clock summer-time repeating 1-3 clock timezone 1-4 configure-user

More information

Supplement to A Practical Guide to Data Structures and Algorithms Using Java. Project 4

Supplement to A Practical Guide to Data Structures and Algorithms Using Java. Project 4 Supplement to A Practical Guide to Data Structures and Algorithms Using Java Sally A. Goldman and Kenneth J. Goldman Project 4 This lab will bring together several of the topics we have studied this semester

More information

The Year argument can be one to four digits between 1 and Month is a number representing the month of the year between 1 and 12.

The Year argument can be one to four digits between 1 and Month is a number representing the month of the year between 1 and 12. The table below lists all of the Excel -style date and time functions provided by the WinCalcManager control, along with a description and example of each function. FUNCTION DESCRIPTION REMARKS EXAMPLE

More information

Microsoft Compound Document File Format

Microsoft Compound Document File Format OpenOffice.org's Documentation of the Microsoft Compound Document File Format Author License Contributors Other sources Mailing list Download Project started Last change Revision 1.3 Daniel Rentz mailto:dr@openoffice.org

More information

New Permit Request Guide

New Permit Request Guide 2016 2017 New Permit Request Guide To start the process you will have to open the facilities rentals online permit bookings system by accessing the following webpage; http://permits.peelschools.org. Sign

More information

MOBILE COMPUTING 2/14/17. System Structure. Context as Implicit Input. explicit input. explicit output. explicit input.

MOBILE COMPUTING 2/14/17. System Structure. Context as Implicit Input. explicit input. explicit output. explicit input. MOBILE COMPUTING CSE 40814/60814 Spring 2017 System Structure explicit input explicit output Context as Implicit Input explicit input explicit output Context: state of the user state of the physical environment

More information

Programming Date and Time APIs

Programming Date and Time APIs System i Programming Date and Time APIs Version 6 Release 1 System i Programming Date and Time APIs Version 6 Release 1 Note Before using this information and the product it supports, read the information

More information

EUROPEAN COMMISSION DIRECTORATE-GENERAL FOR MARITIME AFFAIRS AND FISHERIES. Aggregated Catch Data Report (ACDR) Implementation Document v 1.

EUROPEAN COMMISSION DIRECTORATE-GENERAL FOR MARITIME AFFAIRS AND FISHERIES. Aggregated Catch Data Report (ACDR) Implementation Document v 1. Ref. Ares(2015)6026067-23/12/2015 EUROPEAN COMMISSION DIRECTORATE-GENERAL FOR MARITIME AFFAIRS AND FISHERIES MEDITERRANEAN AND BLACK SEA Integrated Fisheries Data Management THE INTEGRATED FISHERIES DATA

More information

AIMMS User s Guide - User Interface Language Components

AIMMS User s Guide - User Interface Language Components AIMMS User s Guide - User Interface Language Components This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit www.aimms.com. Aimms 4 Copyright

More information

Stratigraphy Modeling Horizons and Solids

Stratigraphy Modeling Horizons and Solids v. 10.3 GMS 10.3 Tutorial Stratigraphy Modeling Horizons and Solids Create solids from boreholes using the Horizons Solids tool. Objectives Learn how to construct a set of solid models using the horizon

More information

Creating a Reservation for Suppliers

Creating a Reservation for Suppliers Logging into the C3 Reservations Dashboard 1. Upon logging in as a supplier, you'll see the main C3 Reservations dashboard. 2. The Reservations list will display reservations that have been approved or

More information

Dynamic Menu HD. User Manual

Dynamic Menu HD. User Manual Dynamic Menu HD User Manual Dynamic Menu HD is a powerful application that will gives users the ability to easily update digital menus. This is perfect for corporations, universities, schools & consumers

More information

AIMMS Language Reference - Procedures and Functions

AIMMS Language Reference - Procedures and Functions AIMMS Language Reference - Procedures and Functions This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit www.aimms.com. Aimms 4 Copyright

More information

Basics of Dimensional Modeling

Basics of Dimensional Modeling Basics of Dimensional Modeling Data warehouse and OLAP tools are based on a dimensional data model. A dimensional model is based on dimensions, facts, cubes, and schemas such as star and snowflake. Dimension

More information

WHAT'S NEW UVC MOBILE APP VERSION 2.0

WHAT'S NEW UVC MOBILE APP VERSION 2.0 WHAT'S NEW UVC MOBILE APP VERSION 2.0 Two major modules have been added to the new version of the UVC mobile APP. When you click on the menu button you will see: - the Calendar option and - the FileStore

More information

Automated Load Forecast System (ALFS) Interface Specification. Fall 2017 Release

Automated Load Forecast System (ALFS) Interface Specification. Fall 2017 Release Automated Load Forecast System (ALFS) Interface Specification Fall 2017 Release Version: 1.1 March 27, 2017 Revision History Date Version Description 03/01/2017 1.0 Initial document release related to

More information

ICC. BACnet MS/TP Server Driver Manual INDUSTRIAL CONTROL COMMUNICATIONS, INC Industrial Control Communications, Inc.

ICC. BACnet MS/TP Server Driver Manual INDUSTRIAL CONTROL COMMUNICATIONS, INC Industrial Control Communications, Inc. INDUSTRIAL CONTROL COMMUNICATIONS, INC. BACnet MS/TP Server Driver Manual August 17, 2017 2017 Industrial Control Communications, Inc. TABLE OF CONTENTS 1 BACnet MS/TP Server... 2 1.1 Overview... 2 1.2

More information

Clock Commands on the Cisco IOS XR Software

Clock Commands on the Cisco IOS XR Software Clock Commands on the Cisco IOS XR Software This module describes the commands used to set and display the internal clock settings in Cisco IOS XR software. For more information about manually setting

More information

Data Policy. Actionable Data, Part I. Feature Guide

Data Policy. Actionable Data, Part I. Feature Guide Feature Guide Data Policy Actionable Data, Part I Data Policy... 2 How it Works... 2 Activation Triggers... 2 Calendar-Based Activation... 2 Action-Based Activation... 3 Activation Sequence... 3 Actions...

More information

Clock Commands on the Cisco IOS XR Software

Clock Commands on the Cisco IOS XR Software This module describes the commands used to set and display the internal clock settings in Cisco IOS XR software. For more information about manually setting the router clock, see Cisco IOS XR Getting Started

More information

Conferencing Systems. Conference Moderator

Conferencing Systems. Conference Moderator Top Conferencing Systems Conference Moderator Quick Reference Version 4.5 DOC0003 Rev. 5.0.06 Table of Contents TABLE OF CONTENTS Login... 3 2 Setting Time Zone and Language... 4 3 Scheduling a Conference...

More information

COMPATIBILITY CONSIDERATIONS OF THE PL/1 IMPLEMENTATION

COMPATIBILITY CONSIDERATIONS OF THE PL/1 IMPLEMENTATION G0081 1/20/69 R. FREIBURGHOUSE COMPATIBILITY CONSIDERATIONS OF THE PL/1 IMPLEMENTATION Considerable interest has been expressed concerning the extent to which the implementation of PL/1 is compatible with

More information

New Permit Request Guide

New Permit Request Guide 2017 2018 New Permit Request Guide If this is the first time that you using our permit system you will need to register your group you will need to go to http://permits.peelschools.org and in the lower

More information

Fundamentals of Python: First Programs. Chapter 4: Strings and Text Files

Fundamentals of Python: First Programs. Chapter 4: Strings and Text Files Fundamentals of Python: First Programs Chapter 4: Strings and Text Files Objectives After completing this chapter, you will be able to Access individual characters in a string Retrieve a substring from

More information

SFU Connect Calendar. Guide. Creating a Daily Note/All Day Event

SFU Connect Calendar. Guide. Creating a Daily Note/All Day Event SFU Connect Calendar How-To Guide Creating a Daily Note/All Day Event Last updated: March 2009 Table of Contents Overview of Daily Notes & Day Events... 3 Method #1: Creating a Daily Note in your Default

More information

IEEE LANGUAGE REFERENCE MANUAL Std P1076a /D3

IEEE LANGUAGE REFERENCE MANUAL Std P1076a /D3 LANGUAGE REFERENCE MANUAL Std P1076a-1999 2000/D3 Clause 2 Subprograms and packages Subprograms define algorithms for computing values or exhibiting behavior. They may be used as computational resources

More information

Clock Commands. Cisco IOS XR System Management Command Reference for the Cisco XR Series Router, Release 4.3.x OL

Clock Commands. Cisco IOS XR System Management Command Reference for the Cisco XR Series Router, Release 4.3.x OL This module describes the commands used to set and display the internal clock settings in Cisco IOS XR software. For more information about manually setting the router clock, see Cisco IOS XR Getting Started

More information

DICOM Correction Proposal

DICOM Correction Proposal DICOM Correction Proposal STATUS Final Text Date of Last Update 2017/09/17 Person Assigned Submitter Name Ulrich Busch (ulrich.busch@varian.com) Ulrich Busch (ulrich.busch@varian.com) Submission Date 2016/05/03

More information

A First Book of ANSI C Fourth Edition. Chapter 8 Arrays

A First Book of ANSI C Fourth Edition. Chapter 8 Arrays A First Book of ANSI C Fourth Edition Chapter 8 Arrays One-Dimensional Arrays Array Initialization Objectives Arrays as Function Arguments Case Study: Computing Averages and Standard Deviations Two-Dimensional

More information

Sona Systems Guide Adding Time Slots

Sona Systems Guide Adding Time Slots Sona Systems Guide Adding Time Slots Hello and welcome to the Behavioral Research Lab! This guide is intended to walk you through the steps to viewing and adding time slots on SONA. To get started, visit

More information

The new Schmersal online catalogue. Quick start guide and the new functions at a glance.

The new Schmersal online catalogue. Quick start guide and the new functions at a glance. The new Schmersal online catalogue Quick start guide and the new functions at a glance. Re_Onlinekat_uk (2).doc V.1.0 Author: Ma-Fra / 20.01.2009 2 Table of contents Technical data sheets to the part number...

More information

Extracting Energy Data from MODBUS Devices Using CIP

Extracting Energy Data from MODBUS Devices Using CIP Extracting Energy Data from Devices Using CIP Rick Blair System Architect Schneider Electric Presented at the 2012 ODVA Industry Conference & 15 th Annual Meeting October 16-18, 2012 Stone Mountain, Georgia,

More information

History SDK for. Version Part Number E

History SDK for. Version Part Number E for Version 15.8 Part Number E65856-01 Oracle, 2015 Table of Content 1 Introduction...4 1.1 Document Purpose... 4 1.2 Scope of the Document... 4 1.3 Target Audience... 4 1.4 Glossary... 4 2 History API

More information

Python for Data Analysis

Python for Data Analysis Python for Data Analysis Wes McKinney O'REILLY 8 Beijing Cambridge Farnham Kb'ln Sebastopol Tokyo Table of Contents Preface xi 1. Preliminaries " 1 What Is This Book About? 1 Why Python for Data Analysis?

More information

AIMMS User s Guide - Model Explorer

AIMMS User s Guide - Model Explorer AIMMS User s Guide - Model Explorer This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit www.aimms.com. Aimms 4 Copyright c 1993 2018 by

More information

SUBSCRIBING TO ICAL FEEDS

SUBSCRIBING TO ICAL FEEDS SUBSCRIBING TO ICAL FEEDS INSTRUCTIONS OUTLOOK 2007/2010/2013 GOOGLE CALENDAR APPLE IPHONE 4 (OR LATER) IPAD GENERAL INFORMATION WHAT IS AN ICAL FEED? icalendar (ical) format is a standard for calendar

More information

Class Library java.util Package. Bok, Jong Soon

Class Library java.util Package. Bok, Jong Soon Class Library java.util Package Bok, Jong Soon javaexpert@nate.com www.javaexpert.co.kr Enumeration interface An object that implements the Enumeration interface generates a series of elements, one

More information

Last modified on Author Reason 3/4/2019 CHRS Recruiting Training Team Initial publication

Last modified on Author Reason 3/4/2019 CHRS Recruiting Training Team Initial publication Revision history Last modified on Author Reason 3/4/2019 CHRS Recruiting Training Team Initial publication Introduction This guide shows you how create and book events by using the CHRS Recruiting system

More information

Is this a known issue? Seems to affect only recurring events. I have some of them and all are shifted. Non-recurring events show properly.

Is this a known issue? Seems to affect only recurring events. I have some of them and all are shifted. Non-recurring events show properly. Wrong time on recurring google calendar events Posted by AraldoL - 2014/01/11 06:21 Hello, using the latest stable Rainlendar Pro 2.12 I had some issues: After every installation on my two computers it

More information

Atomic Time Manager 400 Product Documentation

Atomic Time Manager 400 Product Documentation Atomic Time Manager 400 Product Documentation Version 1.2.3 March 24, 2004 Copyright 2003-2004, Client Server Development, Inc. and Davis Software Services, Inc. All Rights Reserved 1. Introduction...4

More information

Customer Journey Platform Customer Engagement Analyzer User Guide

Customer Journey Platform Customer Engagement Analyzer User Guide Customer Journey Platform Customer Engagement Analyzer User Guide Notification Copyright Notice The Broadsoft CC-One solution has been renamed the Cisco Customer Journey Platform. Beginning in August 2018,

More information

This view provides a list of all upcoming prayer events that have been registered on the site. Figure 1: 24-7 Prayer Homepage Upcoming Prayer Events

This view provides a list of all upcoming prayer events that have been registered on the site. Figure 1: 24-7 Prayer Homepage Upcoming Prayer Events 24/7 Prayer Scheduling Table of Contents Accessing the Calendar... 1 Registering a New Prayer Event... 2 Delete or Edit a Prayer Event... 4 Booking a Prayer Timeslot... 4 Check Prayer Schedule & Get Email

More information

AXIOMS FOR THE INTEGERS

AXIOMS FOR THE INTEGERS AXIOMS FOR THE INTEGERS BRIAN OSSERMAN We describe the set of axioms for the integers which we will use in the class. The axioms are almost the same as what is presented in Appendix A of the textbook,

More information

Angela Z: A Language that facilitate the Matrix wise operations Language Reference Manual

Angela Z: A Language that facilitate the Matrix wise operations Language Reference Manual Angela Z: A Language that facilitate the Matrix wise operations Language Reference Manual Contents Fei Liu, Mengdi Zhang, Taikun Liu, Jiayi Yan 1. Language definition 3 1.1. Usage 3 1.2. What special feature

More information

Task Management User Guide

Task Management User Guide Task Management User Guide Version 18 April 2018 Contents About This Guide... 5 Tasks Overview... 5 Create a Project for Task Management... 5 Project Templates Overview... 5 Add a Project Template...

More information