Pralit Patel
Pralit Patel
I would also suggest checking the [Main_queries.xml](https://github.com/JGCRI/gcam-core/blob/master/output/queries/Main_queries.xml) which is more complete than the examples in rgcam and kept up to date. It is the place we draw the queries from...
To update on the progress of this issue. We have fixed (on the GCAM repo, we will back port to Github soon) the most egregious problem of this issue: aggregating...
A little bit of thought has been given to what the "families" might be. I've gone ahead and copied the list we came up with here as a starting point...
@bpbond sorry, I totally meant to respond to this and forgot. Well, honestly I'm not sure what the idea exactly the idea is. Maybe something like that could work, but:...
Also FYI: I pushed a quick test to use `drake` on a branch called `drake-test`
Re electricity structure challenge: Right now we have two variations of the electricity sector: [zchunk_L223.electricity.R](https://github.com/JGCRI/gcamdata/blob/master/R/zchunk_L223.electricity.R) and [zchunk_L2233.electricity_water.R]( https://github.com/JGCRI/gcamdata/blob/master/R/zchunk_L2233.electricity_water.R) which ultimately produce `electricity.xml` and `electricity_water.xml` (with the later being a re-organization...
@mchauhan2383 which query did you use? I just checked using the query "primary energy consumption with CCS by region (direct equivalent)" and verified GCAM 6 and 7 match in the...
Your model interface is likely pointing to a `Main_queries.xml` in an older workspace. You can look for a `model_interface.properties` file and edit that. Within there you will see something like:...
The problem is not with your Java but rather: > export JARS_LIB=/opt/openjdk-bin-17.0.6_p10/lib/*:/opt/gcam/exe/*.jar A couple of things: 1. `/opt/gcam/exe/*.jar` This isn't actually the correct syntax for a Java class path. If...
Also, on Windows: > SET CLASSPATH=C:\gcam-v7.0\libs\jars*;C:\gcam-v7.0\exe\XMLDBDriver.jar This is similar. It should be `C:\gcam-v7.0\libs\jars\*;C:\gcam-v7.0\exe\XMLDBDriver.jar` (Technically it should reference `C:\gcam-v7.0\output/modelinterface/ModelInterface.jar` too although you might be able to get by without it). That...