Newer
Older
import { CalculatorResults } from "./calculator-results";
import { CalculatedParamResults } from "./param-calc-results";
import { NgParameter } from "../formulaire/ngparam";
import { ServiceFactory } from "../services/service-factory";
import { PlottableData } from "./plottable-data";
import { GraphType } from "./graph-type";
export class VarResults extends CalculatedParamResults implements PlottableData {
private _variatedParams: NgParameter[];
* titre des colonnes des résultats variés
private _variableParamHeaders: string[];
mathias.chouet
committed
* clés des résultats
mathias.chouet
committed
public resultKeys: string[];
mathias.chouet
committed
* entête des colonnes des résultats
mathias.chouet
committed
private _resultHeaders: string[];
mathias.chouet
committed
* type de graphe
mathias.chouet
committed
* variated parameter or result displayed as chart's X-axis
mathias.chouet
committed
public chartX: string;
/**
* variated parameter or result displayed as chart's Y-axis
*/
public chartY: string;
/** size of the longest variated parameter */
public size: number;
mathias.chouet
committed
/** index of the longest variated parameter */
public longest: number;
/**
* tableau des ordonnées du graphe des résultats variés
*/
private _yValues: number[] = [];
constructor() {
super();
this.reset();
}
public reset() {
super.reset();
this._variableParamHeaders = [];
mathias.chouet
committed
this._resultHeaders = [];
this.resultKeys = [];
this._yValues = [];
mathias.chouet
committed
this.longest = 0;
public get variatedParameters(): NgParameter[] {
return this._variatedParams;
public set variatedParameters(p: NgParameter[]) {
this._variatedParams = p;
this._variableParamHeaders = this._variatedParams.map((v) => {
return CalculatorResults.paramLabel(v, true);
});
public get variableParamHeaders() {
return this._variableParamHeaders;
}
public get yValues() {
return this._yValues;
}
public get resultElements(): ResultElement[] {
mathias.chouet
committed
public get resultHeaders() {
return this._resultHeaders;
public get graphType(): GraphType {
return this._graphType;
}
public set graphType(gt: GraphType) {
this._graphType = gt;
this.resetDefaultAxisIfNeeded();
}
public getChartAxisLabel(symbol: string): string {
// 1. calculated param ?
if (this.calculatedParameter && this.calculatedParameter.symbol === symbol) {
return this.calculatedParameterHeader;
for (let i = 0; i < this.variatedParameters.length; i++) {
if (this._variatedParams[i].symbol === symbol) {
return this.variableParamHeaders[i];
mathias.chouet
committed
// 3. Result element / child result
return this.expandLabelFromSymbol(symbol);
}
/**
* Returns the translated name of the given symbol (usually an extraResult) with
* its unit, but without the symbol itself
*/
public expandLabelFromSymbol(symbol: string): string {
mathias.chouet
committed
let ret = "";
// calculator type for translation
const sn = this.result.sourceNub;
let ct = sn.calcType;
if (sn.parent) {
ct = sn.parent.calcType;
}
mathias.chouet
committed
// detect children results
const match = /^([0-9]+)_(.+)$/.exec(symbol);
if (match !== null) {
const pos = +match[1];
ct = sn.getChildren()[pos].calcType;
symbol = match[2];
ret += ServiceFactory.instance.i18nService.localizeText("INFO_OUVRAGE_N") + (pos + 1) + " : ";
}
ret += ServiceFactory.instance.formulaireService.expandVariableNameAndUnit(ct, symbol);
return ret;
mathias.chouet
committed
/**
* Returns the series of values for the required variated parameter / result element
mathias.chouet
committed
* @param symbol parameter / result symbol (ex: "Q", "0_Q"...)
mathias.chouet
committed
*/
public getValuesSeries(symbol: string) {
const series = [];
mathias.chouet
committed
// 1. variated param ?
for (let i = 0; i < this.variatedParameters.length; i++) {
if (this._variatedParams[i].symbol === symbol) {
const iter = this.variatedParameters[i].getExtendedValuesIterator(this.size);
for (const v of iter) {
mathias.chouet
committed
}
mathias.chouet
committed
// 2. Result element ?
for (const r of this.result.resultElements) { // re:ResultElement
mathias.chouet
committed
for (const k in r.values) {
mathias.chouet
committed
series.push(r.getValue(k));
mathias.chouet
committed
}
}
}
mathias.chouet
committed
// 3. Child result element ?
// detect children results
const match = /^([0-9]+)_(.+)$/.exec(symbol);
if (match !== null) {
const sn = this.result.sourceNub;
const pos = +match[1];
symbol = match[2];
const child = sn.getChildren()[pos];
for (const r of child.result.resultElements) {
series.push(r.getValue(symbol));
}
}
mathias.chouet
committed
return series;
}
/**
* Returns a list of plottable parameters / result elements, that can be defined
mathias.chouet
committed
*/
const res: string[] = [];
for (const v of this._variatedParams) {
res.push(v.symbol);
}
mathias.chouet
committed
for (const erk of this.resultKeys) {
if (erk.indexOf("ENUM_") === -1) { // ENUM variables are not plottable
res.push(erk);
}
}
// children results
const sn = this.result.sourceNub;
for (const c of sn.getChildren()) {
// using latest ResultElement; results count / types are supposed to be the same on every iteration
for (const k of c.result.resultElement.keys) {
if (k.indexOf("ENUM_") === -1) { // ENUM variables are not plottable
res.push(c.findPositionInParent() + "_" + k);
}
}
mathias.chouet
committed
}
return res;
}
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
/**
* Same as X axis, plus results families if graph type is Scatter
* (for multi-series comparison)
*/
public getAvailableYAxis(): string[] {
const res: string[] = this.getAvailableXAxis();
if (this._graphType === GraphType.Scatter) {
// add families having more than 1 variable as plottable ordinates
const families = this.extractFamilies();
console.log("FOUND FAMILIES", families);
for (const f in families) {
if (families[f].length > 1) {
res.push(f);
}
}
}
return res;
}
/**
* Browses all parameters and results to produce a map of families => list of
* symbols in this family
*/
private extractFamilies(): { [key: string]: string[] } {
const families: { [key: string]: string[] } = {};
for (const v of this._variatedParams) {
const f = ParamFamily[v.paramDefinition.family];
if (f !== undefined) {
if (! (f in families)) {
families[f] = [];
}
families[f].push(v.symbol);
}
}
mathias.chouet
committed
for (const erk of this.resultKeys) {
const f = ParamFamily[this.result.sourceNub.getFamily(erk)];
if (f !== undefined) {
if (! (f in families)) {
families[f] = [];
}
families[f].push(erk);
}
}
return families;
}
/**
* Returns the list of variating parameters
* (used by tooltip functions)
*/
public getVariatingParametersSymbols(): string[] {
return this._variatedParams.map((vp) => {
return vp.symbol;
});
}
if (this._variableParamHeaders.length === 0) {
this._variableParamHeaders = this._variatedParams.map((v) => {
return CalculatorResults.paramLabel(v, true);
});
// liste la plus longue
this.size = 0;
mathias.chouet
committed
let i = 0;
for (const v of this._variatedParams) {
const s = v.valuesIterator.count();
if (s > this.size) {
this.size = s;
mathias.chouet
committed
this.longest = i;
mathias.chouet
committed
i++;
mathias.chouet
committed
// result keys (extra or not) - some lines might miss some results, in case of an error;
// use those keys to ensure all columns are filled
if (this.resultKeys.length === 0) {
for (const re of this.result.resultElements) { // re:ResultElement
mathias.chouet
committed
for (const erk in re.values) {
if (!this.resultKeys.includes(erk)) {
this.resultKeys.push(erk);
// set axis selectors values the first time
let defaultY = this.chartY;
mathias.chouet
committed
if (this.resultKeys.length > 0) {
defaultY = this.resultKeys[0];
}
mathias.chouet
committed
this.chartX = this.chartX || this.variatedParameters[this.longest].symbol;
this.chartY = defaultY;
// calculator type for translation
const sn = this.result.sourceNub;
let ct = sn.calcType;
if (sn.parent) {
ct = sn.parent.calcType;
}
mathias.chouet
committed
// entêtes des résultats
this._resultHeaders = [];
for (const k of this.resultKeys) {
this._resultHeaders.push(
ServiceFactory.instance.formulaireService.expandVariableNameAndUnit(ct, k)
);
mathias.chouet
committed
// entêtes des résultats des enfants
for (const c of sn.getChildren()) {
// using latest ResultElement; results count / types are supposed to be the same on every iteration
for (const k of c.result.resultElement.keys) {
this._resultHeaders.push(
ServiceFactory.instance.i18nService.localizeText("INFO_OUVRAGE_N")
+ (c.findPositionInParent() + 1) + " : "
+ ServiceFactory.instance.formulaireService.expandVariableNameAndUnit(c.calcType, k)
);
}
}
mathias.chouet
committed
/**
* When variable parameter or graph type changes, ensure the X / Y current values are still available
*/
public resetDefaultAxisIfNeeded() {
console.log("RDAIN");
if (! this.getAvailableXAxis().includes(this.chartX)) {
this.chartX = this.variatedParameters[0].symbol;
mathias.chouet
committed
}
this.chartY = this.variatedParameters[0].symbol;
mathias.chouet
committed
}