Buildings.Controls.SetPoints.Validation

Collection of validation models

Information

This package contains validation models for the classes in Buildings.Controls.SetPoints.

Note that most validation models contain simple input data which may not be realistic, but for which the correct output can be obtained through an analytic solution. The examples plot various outputs, which have been verified against these solutions. These model outputs are stored as reference data and used for continuous validation whenever models in the library change.

Extends from Modelica.Icons.ExamplesPackage (Icon for packages containing runnable examples).

Package Content

Name Description
Buildings.Controls.SetPoints.Validation.OccupancyScheduleNegativeStartTime OccupancyScheduleNegativeStartTime Test model for occupancy schedule with look-ahead
Buildings.Controls.SetPoints.Validation.OccupancySchedulePositiveStartTime OccupancySchedulePositiveStartTime Validation model for occupancy schedule with positive start time

Buildings.Controls.SetPoints.Validation.OccupancyScheduleNegativeStartTime Buildings.Controls.SetPoints.Validation.OccupancyScheduleNegativeStartTime

Test model for occupancy schedule with look-ahead

Buildings.Controls.SetPoints.Validation.OccupancyScheduleNegativeStartTime

Information

Example that validates the occupancy schedule for a negative start time.

Extends from Modelica.Icons.Example (Icon for runnable examples).

Modelica definition

model OccupancyScheduleNegativeStartTime "Test model for occupancy schedule with look-ahead" extends Modelica.Icons.Example; Buildings.Controls.SetPoints.OccupancySchedule occSchDay(occupancy=3600*{7,24}) "Day schedule"; OccupancySchedule occSchDay1(occupancy=3600*{0,2}) "Day schedule"; OccupancySchedule occSchDay2(occupancy=3600*{7,10,17,20}, firstEntryOccupied=false) "Day schedule"; end OccupancyScheduleNegativeStartTime;

Buildings.Controls.SetPoints.Validation.OccupancySchedulePositiveStartTime Buildings.Controls.SetPoints.Validation.OccupancySchedulePositiveStartTime

Validation model for occupancy schedule with positive start time

Buildings.Controls.SetPoints.Validation.OccupancySchedulePositiveStartTime

Information

Example that validates the occupancy schedule for a positive start time.

Extends from OccupancyScheduleNegativeStartTime (Test model for occupancy schedule with look-ahead).

Modelica definition

model OccupancySchedulePositiveStartTime "Validation model for occupancy schedule with positive start time" extends OccupancyScheduleNegativeStartTime; end OccupancySchedulePositiveStartTime;