|
| 1 | +{ |
| 2 | + "definitions": {}, |
| 3 | + "$schema": "http://json-schema.org/draft-04/schema#", |
| 4 | + "type": "object", |
| 5 | + "title": "HIP-RA-X Schema", |
| 6 | + "required": [ |
| 7 | + "Reservoir Temperature", |
| 8 | + "Rejection Temperature", |
| 9 | + "Reservoir Porosity", |
| 10 | + "Reservoir Area", |
| 11 | + "Reservoir Thickness", |
| 12 | + "Reservoir Life Cycle", |
| 13 | + "Rock Heat Capacity", |
| 14 | + "Fluid Specific Heat Capacity", |
| 15 | + "Density Of Reservoir Fluid", |
| 16 | + "Density Of Reservoir Rock" |
| 17 | + ], |
| 18 | + "properties": { |
| 19 | + "Reservoir Temperature": { |
| 20 | + "description": "Reservoir Temperature [150 dec-C]", |
| 21 | + "type": "number", |
| 22 | + "units": "degC", |
| 23 | + "category": "Default", |
| 24 | + "default": 0.0, |
| 25 | + "minimum": 50, |
| 26 | + "maximum": 1000 |
| 27 | + }, |
| 28 | + "Rejection Temperature": { |
| 29 | + "description": "Rejection Temperature [25 dec-C]", |
| 30 | + "type": "number", |
| 31 | + "units": "degC", |
| 32 | + "category": "Default", |
| 33 | + "default": 0.0, |
| 34 | + "minimum": 0.1, |
| 35 | + "maximum": 200 |
| 36 | + }, |
| 37 | + "Reservoir Porosity": { |
| 38 | + "description": "Reservoir Porosity [18%]", |
| 39 | + "type": "number", |
| 40 | + "units": "%", |
| 41 | + "category": "Default", |
| 42 | + "default": 0.0, |
| 43 | + "minimum": 0.0, |
| 44 | + "maximum": 100.0 |
| 45 | + }, |
| 46 | + "Reservoir Area": { |
| 47 | + "description": "Reservoir Area [81 km2]", |
| 48 | + "type": "number", |
| 49 | + "units": "km**2", |
| 50 | + "category": "Default", |
| 51 | + "default": 0.0, |
| 52 | + "minimum": 0.0, |
| 53 | + "maximum": 10000.0 |
| 54 | + }, |
| 55 | + "Reservoir Thickness": { |
| 56 | + "description": "Reservoir Thickness [0.286 km]", |
| 57 | + "type": "number", |
| 58 | + "units": "kilometer", |
| 59 | + "category": "Default", |
| 60 | + "default": 0.0, |
| 61 | + "minimum": 0.0, |
| 62 | + "maximum": 10000.0 |
| 63 | + }, |
| 64 | + "Reservoir Life Cycle": { |
| 65 | + "description": "Reservoir Life Cycle [30 years]", |
| 66 | + "type": "integer", |
| 67 | + "units": "yr", |
| 68 | + "category": "Default", |
| 69 | + "default": null, |
| 70 | + "minimum": 1, |
| 71 | + "maximum": 100 |
| 72 | + }, |
| 73 | + "Rock Heat Capacity": { |
| 74 | + "description": "Rock Heat Capacity [2.84E+12 kJ/km3C]", |
| 75 | + "type": "number", |
| 76 | + "units": "kJ/km**3C", |
| 77 | + "category": "Default", |
| 78 | + "default": 0.0, |
| 79 | + "minimum": 0.0, |
| 80 | + "maximum": 100000000000000.0 |
| 81 | + }, |
| 82 | + "Fluid Specific Heat Capacity": { |
| 83 | + "description": "Specific Heat Capacity Of Water [4.18 kJ/kgC]", |
| 84 | + "type": "number", |
| 85 | + "units": "kJ/kgC", |
| 86 | + "category": "Default", |
| 87 | + "default": 0.0, |
| 88 | + "minimum": 3.0, |
| 89 | + "maximum": 10.0 |
| 90 | + }, |
| 91 | + "Density Of Reservoir Fluid": { |
| 92 | + "description": "Density Of Water [1.0E+12 kg/km3]", |
| 93 | + "type": "number", |
| 94 | + "units": "kg/km**3", |
| 95 | + "category": "Default", |
| 96 | + "default": 0.0, |
| 97 | + "minimum": 100000000000.0, |
| 98 | + "maximum": 10000000000000.0 |
| 99 | + }, |
| 100 | + "Density Of Reservoir Rock": { |
| 101 | + "description": "Density Of Rock [2.55E+12 kg/km3]", |
| 102 | + "type": "number", |
| 103 | + "units": "kg/km**3", |
| 104 | + "category": "Default", |
| 105 | + "default": 0.0, |
| 106 | + "minimum": 100000000000.0, |
| 107 | + "maximum": 10000000000000.0 |
| 108 | + }, |
| 109 | + "Rock Recoverable Heat": { |
| 110 | + "description": "percent of heat that is recoverable from the rock in the reservoir 0.66 for high-T reservoirs, 0.43 for low-T reservoirs (Garg and Combs (2011)", |
| 111 | + "type": "number", |
| 112 | + "units": "", |
| 113 | + "category": "Default", |
| 114 | + "default": 0.0, |
| 115 | + "minimum": 0.0, |
| 116 | + "maximum": 1.0 |
| 117 | + }, |
| 118 | + "Fluid Recoverable Heat": { |
| 119 | + "description": "percent of heat that is recoverable from the fluid in the reservoir 0.66 for high-T reservoirs, 0.43 for low-T reservoirs (Garg and Combs (2011)", |
| 120 | + "type": "number", |
| 121 | + "units": "", |
| 122 | + "category": "Default", |
| 123 | + "default": 0.0, |
| 124 | + "minimum": 0.0, |
| 125 | + "maximum": 1.0 |
| 126 | + }, |
| 127 | + "Recoverable Fluid Factor": { |
| 128 | + "description": "percent of fluid that is recoverable from the reservoir (0.5 = 50%)", |
| 129 | + "type": "number", |
| 130 | + "units": "", |
| 131 | + "category": "Default", |
| 132 | + "default": 0.0, |
| 133 | + "minimum": 0.0, |
| 134 | + "maximum": 1.0 |
| 135 | + }, |
| 136 | + "Reservoir Depth": { |
| 137 | + "description": "depth to top of reservoir (km). Calculated based on an assumed gradient and the reservoir temperature if no value given", |
| 138 | + "type": "number", |
| 139 | + "units": "kilometer", |
| 140 | + "category": "Default", |
| 141 | + "default": 0.0, |
| 142 | + "minimum": 0.001, |
| 143 | + "maximum": 15.0 |
| 144 | + }, |
| 145 | + "Reservoir Pressure": { |
| 146 | + "description": "pressure of the of reservoir (in mPa). Calculated assuming hydrostatic pressure and reservoir depth & water density if no value given", |
| 147 | + "type": "number", |
| 148 | + "units": "mPa", |
| 149 | + "category": "Default", |
| 150 | + "default": 0.0, |
| 151 | + "minimum": 0.0, |
| 152 | + "maximum": 10000.0 |
| 153 | + }, |
| 154 | + "Recoverable Heat from Rock": { |
| 155 | + "description": "percent of fluid that is recoverable from the reservoir (0.75 = 75%)", |
| 156 | + "type": "number", |
| 157 | + "units": "", |
| 158 | + "category": "Default", |
| 159 | + "default": 0.0, |
| 160 | + "minimum": 0.0, |
| 161 | + "maximum": 1.0 |
| 162 | + }, |
| 163 | + "HTML Output File": { |
| 164 | + "description": "Provide a HTML output name if you want to have HTML output (no output if not provided)", |
| 165 | + "type": "string", |
| 166 | + "units": null, |
| 167 | + "category": "Default", |
| 168 | + "default": null, |
| 169 | + "minimum": null, |
| 170 | + "maximum": null |
| 171 | + } |
| 172 | + } |
| 173 | +} |
0 commit comments