IEA EBC Annex 60 EBC logo

Annex60.Utilities.Diagnostics.BaseClasses

Package with base classes for Annex60.Utilities.Diagnostics

Information

This package contains base classes that are used to construct the models in Annex60.Utilities.Diagnostics.

Extends from Modelica.Icons.BasesPackage (Icon for packages containing base classes).

Package Content

Name Description
Annex60.Utilities.Diagnostics.BaseClasses.PartialInputCheck PartialInputCheck Assert when condition is violated

Annex60.Utilities.Diagnostics.BaseClasses.PartialInputCheck Annex60.Utilities.Diagnostics.BaseClasses.PartialInputCheck

Assert when condition is violated

Annex60.Utilities.Diagnostics.BaseClasses.PartialInputCheck

Information

Partial model that can be used to check whether its inputs satisfy a certain condition such as equality within a prescribed threshold.

Extends from Modelica.Blocks.Icons.Block (Basic graphical layout of input/output block).

Parameters

TypeNameDefaultDescription
TimestartTime0Start time for activating the assert [s]
RealthreShold1E-2Threshold for equality comparison
Stringmessage"Inputs differ by more than ... 

Connectors

TypeNameDescription
input RealInputu1Value to check
input RealInputu2Value to check

Modelica definition

block PartialInputCheck "Assert when condition is violated" extends Modelica.Blocks.Icons.Block; parameter Modelica.SIunits.Time startTime = 0 "Start time for activating the assert"; parameter Real threShold(min=0)=1E-2 "Threshold for equality comparison"; parameter String message = "Inputs differ by more than threShold"; Modelica.Blocks.Interfaces.RealInput u1 "Value to check"; Modelica.Blocks.Interfaces.RealInput u2 "Value to check"; protected parameter Modelica.SIunits.Time t0( fixed=false) "Simulation start time"; initial equation t0 = time + startTime; end PartialInputCheck;

http://iea-annex60.org