-
Notifications
You must be signed in to change notification settings - Fork 1
/
amity_activepower_generation-scheduler.js
233 lines (143 loc) · 6.11 KB
/
amity_activepower_generation-scheduler.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
/**
* Created by harinaths on 30/12/14.
*/
/**
* Created by harinaths on 30/12/14.
*/
var tz = require('timezone/loaded');
var moment = require('moment');
var async = require('async');
global.root = __dirname;
/* Congiguration */
var config = global.config = require('./config.js');
/* MongoDB*/
var Adaptor = require('mongo-adaptor');
var db = global.db = new Adaptor(config.database);
global.ObjectId = db.ObjectId;
var CronJob = require('cron').CronJob;
new CronJob('0 * * * * *', function(){
generateDailyGeneration();
}, null, true, "Asia/Kolkata");
var generateDailyGeneration = function(){
async.series({
zones : function(selfCB){
var zonesCriteria = {
condition : {},
requiredFields : {}
}
db.find('zones', zonesCriteria, function(err,zones){
if(!err && zones){
var zonesIterator = function(zone, zoneIteratorCB){
var deviceCriteria = {
condition : {zone:zone._id, typeName : 'GMETER'},
requiredFields : {}
};
db.find('devices', deviceCriteria, function(dQErr,devices){
if(!dQErr && devices){
if(devices.length > 0){
setZoneGenerationByGmeter(zone,zoneIteratorCB)
}else{
setZoneGenerationByInverter(zone,zoneIteratorCB)
}
}else{
process.nextTick(function(){zoneIteratorCB(null);})
}
})
};
async.eachSeries(zones, zonesIterator, function(zErr){
process.nextTick(function(){selfCB(null, null);})
})
}else{
selfCB(null, null);
}
});
},
sites : function(selfCB){
selfCB(null, null)
}
}, function(err, cb){
})
};
var setZoneGenerationByGmeter = function(zone,zoneIteratorCB){
var ts = {$gte : moment().startOf('day')._d, $lte : moment().endOf('day')._d };
// console.log(ts)
var zoneCriteria = [
{ $match: { parameter : 'gridActivePower', zone: zone._id, ts : ts } }, //TYPE Inverter
{$sort : {'ts':1}},
{ $project: { ts:1,deviceId:1, deviceSn:1,site:1,zone:1,gateway:1,current:1 } },
{ $group: { _id: {site:'$site',gateway:'$gateway',zone:"$zone", ts : '$ts'}, activePower: { $sum: '$current' } } },
{$sort : {'_id.ts':1}}
];
// console.log(JSON.stringify(zoneCriteria));
db.aggregate('days',zoneCriteria, function(err, data) {
if(!err && data && data.length > 0){
console.log("DATA LENGTH : ", data.length)
var dataIterator = function(record, dataIteratorCB){
setTimeSlices.apply(record._id,[]);
console.log("Zone ", zone._id, " Generation by GMETER is ", record.activePower, '@ : ', record._id.ts);
var updateObj = {
condition : {_id: record._id},
value : record,
options : {multi : false, upsert : true}
};
db.update('activePowerGeneration', updateObj, dataIteratorCB);
}
async.eachSeries(data, dataIterator, function(err){
console.log("ERROR : ",err);
zoneIteratorCB(null);
})
}else{
console.log("Zone ", zone._id, " Generation by GMETER is -" );
zoneIteratorCB(null);
}
});
};
var setZoneGenerationByInverter = function (zone, zoneIteratorCB) {
var ts = {$gte : moment().startOf('day')._d, $lte : moment().endOf('day')._d };
// console.log(ts)
var zoneCriteria = [
{ $match: { parameter : 'invActivePower', zone: zone._id, ts : ts } }, //TYPE Inverter
{$sort : {'ts':1}},
{ $project: { ts:1,deviceId:1, deviceSn:1,site:1,zone:1,gateway:1,current:1 } },
{ $group: { _id: {site:'$site',gateway:'$gateway',zone:"$zone", ts : '$ts'}, activePower: { $sum: '$current' } } },
{$sort : {'_id.ts':1}}
];
console.log(JSON.stringify(zoneCriteria))
// console.log(zoneCriteria)
db.aggregate('days',zoneCriteria, function(err, data) {
if(!err && data && data.length > 0){
console.log("DATA LENGTH : ", data.length)
var dataIterator = function(record, dataIteratorCB){
setTimeSlices.apply(record._id,[]);
console.log("Zone ", zone._id, " Generation by Inverter is ", record.activePower, '@ : ', record._id.ts);
var updateObj = {
condition : {_id: record._id},
value : record,
options : {multi : false, upsert : true}
};
db.update('activePowerGeneration', updateObj, dataIteratorCB);
}
async.eachSeries(data, dataIterator, function(err){
console.log("ERROR : ",err);
zoneIteratorCB(null);
})
}else{
console.log("Zone ", zone._id, " Generation by Inverter is -" );
zoneIteratorCB(null);
}
});
};
var setTimeSlices = function(cb){
try{
// this._mi = moment(new Date(tz(this.ts,'Asia/Kolkata'))).startOf('minute')._d;
this._h= moment(new Date(tz(this.ts,'Asia/Kolkata'))).startOf('hour')._d;
this._d= moment(new Date(tz(this.ts,'Asia/Kolkata'))).startOf('day')._d;
this._w= moment(new Date(tz(this.ts,'Asia/Kolkata'))).startOf('week')._d;
this._mo= moment(new Date(tz(this.ts,'Asia/Kolkata'))).startOf('month')._d;
this._y= moment(new Date(tz(this.ts,'Asia/Kolkata'))).startOf('year')._d;
this._dt= moment(new Date(tz(this.ts,'Asia/Kolkata')))._d;
cb && (cb(null, this));
}catch(e){
cb && (cb("ERROR @ SETTING TIME SCALES", null));
}
};