@hestia-earth/engine-models 0.74.4 → 0.74.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/config/Cycle.json CHANGED
@@ -1264,6 +1264,21 @@
1264
1264
  },
1265
1265
  "stage": 2
1266
1266
  },
1267
+ {
1268
+ "key": "emissions",
1269
+ "model": "ipcc2019",
1270
+ "value": "co2ToAirBiocharStockChange",
1271
+ "runStrategy": "add_blank_node_if_missing",
1272
+ "runArgs": {
1273
+ "runNonMeasured": true,
1274
+ "runNonAddedTerm": true
1275
+ },
1276
+ "mergeStrategy": "list",
1277
+ "mergeArgs": {
1278
+ "replaceThreshold": ["value", 0.01]
1279
+ },
1280
+ "stage": 2
1281
+ },
1267
1282
  {
1268
1283
  "key": "emissions",
1269
1284
  "model": "ipcc2019",
@@ -82,7 +82,7 @@
82
82
  "key": "emissionsResourceUse",
83
83
  "model": "pooreNemecek2018",
84
84
  "value": "landOccupationDuringCycle",
85
- "runStrategy": "always",
85
+ "runStrategy": "add_blank_node_if_missing",
86
86
  "mergeStrategy": "list",
87
87
  "mergeArgs": {
88
88
  "replaceThreshold": ["value", 0.01]
@@ -225,6 +225,14 @@
225
225
  },
226
226
  "stage": 1
227
227
  },
228
+ {
229
+ "key": "cache_emissionsResourceUse",
230
+ "model": "impact_assessment",
231
+ "value": "pre_checks.cache_emissionsResourceUse",
232
+ "runStrategy": "always",
233
+ "mergeStrategy": "default",
234
+ "stage": 1
235
+ },
228
236
  {
229
237
  "key": "impacts",
230
238
  "model": "ipcc2021",
@@ -18,7 +18,8 @@ var includeModel = function (model) {
18
18
  !skipModels.includes(model.model),
19
19
  // cyclic dependencies
20
20
  !isHestiaResidueCyclicModel(model),
21
- !isOrganicCarbonCyclicModel(model)
21
+ !isOrganicCarbonCyclicModel(model),
22
+ !model.key.startsWith('cache')
22
23
  ].every(Boolean);
23
24
  };
24
25
  // dependencies that cannot be validated
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const ENGINE_VERSION = "0.74.4";
1
+ export declare const ENGINE_VERSION = "0.74.5";
package/dist/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ENGINE_VERSION = void 0;
4
- exports.ENGINE_VERSION = '0.74.4';
4
+ exports.ENGINE_VERSION = '0.74.5';
package/model-links.json CHANGED
@@ -1574,10 +1574,7 @@
1574
1574
  "path": "hestia_earth/models/hestia/waterSalinity.py",
1575
1575
  "docPath": "hestia_earth/models/hestia/waterSalinity.md",
1576
1576
  "model": "hestia",
1577
- "term": "waterSalinity",
1578
- "dependencies": [
1579
- "related"
1580
- ]
1577
+ "term": "waterSalinity"
1581
1578
  },
1582
1579
  {
1583
1580
  "path": "hestia_earth/models/hestia/feedConversionRatio/feedConversionRatioCarbon.py",
@@ -1943,7 +1940,7 @@
1943
1940
  "term": "co2ToAirBelowGroundBiomassStockChangeLandUseChange",
1944
1941
  "methodTier": "",
1945
1942
  "dependencies": [
1946
- " belowGroundBiomass",
1943
+ "belowGroundBiomass",
1947
1944
  "functionalUnit",
1948
1945
  "endDate"
1949
1946
  ]
@@ -1955,7 +1952,19 @@
1955
1952
  "term": "co2ToAirBelowGroundBiomassStockChangeManagementChange",
1956
1953
  "methodTier": "",
1957
1954
  "dependencies": [
1958
- " belowGroundBiomass",
1955
+ "belowGroundBiomass",
1956
+ "functionalUnit",
1957
+ "endDate"
1958
+ ]
1959
+ },
1960
+ {
1961
+ "path": "hestia_earth/models/ipcc2019/co2ToAirBiocharStockChange.py",
1962
+ "docPath": "hestia_earth/models/ipcc2019/co2ToAirBiocharStockChange.md",
1963
+ "model": "ipcc2019",
1964
+ "term": "co2ToAirBiocharStockChange",
1965
+ "methodTier": "",
1966
+ "dependencies": [
1967
+ "biocharOrganicCarbonPerHa",
1959
1968
  "functionalUnit",
1960
1969
  "endDate"
1961
1970
  ]
@@ -1988,7 +1997,7 @@
1988
1997
  "term": "co2ToAirSoilOrganicCarbonStockChangeLandUseChange",
1989
1998
  "methodTier": "",
1990
1999
  "dependencies": [
1991
- " organicCarbonPerHa",
2000
+ "organicCarbonPerHa",
1992
2001
  "functionalUnit",
1993
2002
  "endDate"
1994
2003
  ]
@@ -2000,7 +2009,7 @@
2000
2009
  "term": "co2ToAirSoilOrganicCarbonStockChangeManagementChange",
2001
2010
  "methodTier": "",
2002
2011
  "dependencies": [
2003
- " organicCarbonPerHa",
2012
+ "organicCarbonPerHa",
2004
2013
  "functionalUnit",
2005
2014
  "endDate"
2006
2015
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hestia-earth/engine-models",
3
- "version": "0.74.4",
3
+ "version": "0.74.5",
4
4
  "description": "HESTIA Engine Models",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",