1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/web/ synced 2025-03-16 00:00:03 +01:00
VILLASweb/app/controllers/lab-mashup.js
2015-10-26 11:22:07 -04:00

133 lines
3.1 KiB
JavaScript

import Ember from 'ember';
export default Ember.Controller.extend({
freq575GreenZones: [{from: 49.5, to: 50.5}],
freq575YellowZones: [{from: 49, to: 49.5}, {from: 50.5, to: 51}],
freq575AlarmZones: [{from: 49, to: 49.5}, {from: 50.5, to: 51}],
freq575Value: 0,
_waitForStateUpdate: false,
init: function() {
this.set('state', 1);
Ember.run.later(this, this._updateState, 100);
},
S1Entity: function() {
return this.model.findBy('id', 'S1_ElectricalGrid');
}.property('model.[]'),
Voltage203937: function() {
var entity = this.model.findBy('id', 'S1_ElectricalGrid');
if (entity) {
return [
{
label: 'RMS voltage [pu]',
data: entity.get('properties').findBy('name', 'Voltage203937').get('values'),
color: "rgb(51, 153, 255)"
}
];
} else {
return {};
}
}.property('model.[]'),
Freq575Observer: function() {
Ember.run.later(this, this.Freq575Observer, 100);
if (this.model) {
var entity = this.model.findBy('id', 'S1_ElectricalGrid');
if (entity) {
var attribute = entity.get('properties').findBy('name', 'Freq_575');
this.set('freq575Value', attribute.get('currentValue'));
}
}
}.on('init'),
LoadGenProfiles: function() {
var entity = this.model.findBy('id', 'S1_ElectricalGrid');
if (entity) {
return [
{
label: 'Total consumption [MW]',
data: entity.get('properties').findBy('name', 'LoadProfile').get('values'),
color: "rgb(51, 153, 255)"
},
{
label: 'Total PV generation [MW]',
data: entity.get('properties').findBy('name', 'GenProfile').get('values'),
color: "rgb(255, 91, 51)"
}
];
} else {
return [];
}
}.property('model.[]'),
initState: function() {
return this.get('state') === 1;
}.property('state'),
eventState: function() {
return this.get('state') === 2;
}.property('state'),
_updateState: function() {
var control = this.store.peekRecord('data-file-control', 'DataFileControl');
var updated = false;
if (control.get('Filename') === '/share/data/m1_S1_ElectricalGrid_data.txt') {
if (this.get('state') !== 1) {
this.set('state', 1);
}
} else {
if (this.get('state') !== 2) {
this.set('state', 2);
}
}
if (control.get('Status') === 'EOF') {
if (this.get('state') === 1) {
control.set('ForceReload', true);
} else {
control.set('Filename', '/share/data/m1_S1_ElectricalGrid_data.txt');
}
updated = true;
}
if (updated) {
control.save();
}
Ember.run.later(this, this._updateState, 100);
},
_updateDataFileControl: function(state) {
var control = this.store.peekRecord('data-file-control', 'DataFileControl');
if (state === 1) {
control.set('Filename', '/share/data/m1_S1_ElectricalGrid_data.txt');
} else {
control.set('Filename', '/share/data/m2_S1_ElectricalGrid_data.txt');
}
console.log("changed data control");
control.set('ForceReload', true);
control.save();
},
actions: {
resetData: function() {
this._updateDataFileControl(1);
},
eventData: function() {
this._updateDataFileControl(2);
}
}
});