initial commit

This commit is contained in:
Uwe Jakobeit
2026-03-30 09:41:19 +02:00
parent 7928ce3239
commit 00f8e9a751
76 changed files with 8341 additions and 1 deletions

29
app/datamodel.cpp Normal file
View File

@@ -0,0 +1,29 @@
/*
File: datamodel.cpp
Description: This is a C++ source file containing implementation code for a data collection (called model) used for
the realisation of a climate chamber control algorithm
Rev: 0.1 - draft
Created: 20.03.26
Author: Uwe Jakobeit
Copyright: Binder GmbH TUT
Purpose: Configuration data and run-time datasets are provided for a controller simulation
Notes: [Any relevant details, such as dependencies, usage examples, or known issues.]
*/
#include "datamodel.h"
DataModel::DataModel()
{
// uj todo - set defaults, if JSON input fails
// for now only hard-coded data
Kennfeld_Ueberhitzung = Kennfeld_Ueberhitzung_Default;
// In English:
HeadlineOverheat = HeadlineOverheatDefault;
Kennfeld_Entfeuchtung = Kennfeld_Entfeuchtung_Default;
Kennfeld_Ueberhitzung = Kennfeld_Ueberhitzung_Default;
}