-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extend design_kw to accept template files for xml files and only give…
… warnings, not stop by error. Add tests for new functions that check for xml format.
- Loading branch information
Showing
5 changed files
with
131 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
prob_FP_FP 0.9 | ||
prob_CH_FP 0.0 | ||
prob_CR_FP 0.05 | ||
prob_CO_FP 0.05 | ||
prob_FP_CH 0.1 | ||
prob_CH_CH 0.85 | ||
prob_CR_CH 0.05 | ||
prob_CO_CH 0.0 | ||
prob_FP_CR 0.1 | ||
prob_CH_CR 0.1 | ||
prob_CR_CR 0.75 | ||
prob_CO_CR 0.05 | ||
prob_FP_CO 0.05 | ||
prob_CH_CO 0.0 | ||
prob_CR_CO 0.05 | ||
prob_CO_CO 0.90 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?xml version="1.0" ?> | ||
<APS_prob_trend> | ||
<FaciesProbTrend> | ||
<GridModelName> geogrid </GridModelName> | ||
<ZoneParamName> Zone </ZoneParamName> | ||
<FaciesParamName> Facies_true_model </FaciesParamName> | ||
<ProbParamNamePrefix> ProbTrend </ProbParamNamePrefix> | ||
<SelectedZones> 1 2 3 </SelectedZones> | ||
<UseConstantProbFromVolumeFraction> 1 </UseConstantProbFromVolumeFraction> | ||
<CondProbMatrix> | ||
<Line> Floodplain Floodplain 0.9 </Line> | ||
<Line> Channel Floodplain 0.0 </Line> | ||
<Line> Crevasse Floodplain 0.05 </Line> | ||
<Line> Coal Floodplain 0.05 </Line> | ||
|
||
<Line> Floodplain Channel 0.1 </Line> | ||
<Line> Channel Channel 0.85 </Line> | ||
<Line> Crevasse Channel 0.05 </Line> | ||
<Line> Coal Channel 0.0 </Line> | ||
|
||
<Line> Floodplain Crevasse 0.1 </Line> | ||
<Line> Channel Crevasse 0.1 </Line> | ||
<Line> Crevasse Crevasse 0.75 </Line> | ||
<Line> Coal Crevasse 0.05 </Line> | ||
|
||
<Line> Floodplain Coal 0.05 </Line> | ||
<Line> Channel Coal 0.0 </Line> | ||
<Line> Crevasse Coal 0.05 </Line> | ||
<Line> Coal Coal 0.90 </Line> | ||
</CondProbMatrix> | ||
</FaciesProbTrend> | ||
</APS_prob_trend> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?xml version="1.0" ?> | ||
<APS_prob_trend> | ||
<FaciesProbTrend> | ||
<GridModelName> geogrid </GridModelName> | ||
<ZoneParamName> Zone </ZoneParamName> | ||
<FaciesParamName> Facies_true_model </FaciesParamName> | ||
<ProbParamNamePrefix> ProbTrend </ProbParamNamePrefix> | ||
<SelectedZones> 1 2 3 </SelectedZones> | ||
<UseConstantProbFromVolumeFraction> 1 </UseConstantProbFromVolumeFraction> | ||
<CondProbMatrix> | ||
<Line> Floodplain Floodplain <prob_FP_FP> </Line> | ||
<Line> Channel Floodplain <prob_CH_FP> </Line> | ||
<Line> Crevasse Floodplain <prob_CR_FP> </Line> | ||
<Line> Coal Floodplain <prob_CO_FP> </Line> | ||
|
||
<Line> Floodplain Channel <prob_FP_CH> </Line> | ||
<Line> Channel Channel <prob_CH_CH> </Line> | ||
<Line> Crevasse Channel <prob_CR_CH> </Line> | ||
<Line> Coal Channel <prob_CO_CH> </Line> | ||
|
||
<Line> Floodplain Crevasse <prob_FP_CR> </Line> | ||
<Line> Channel Crevasse <prob_CH_CR> </Line> | ||
<Line> Crevasse Crevasse <prob_CR_CR> </Line> | ||
<Line> Coal Crevasse <prob_CO_CR> </Line> | ||
|
||
<Line> Floodplain Coal <prob_FP_CO> </Line> | ||
<Line> Channel Coal <prob_CH_CO> </Line> | ||
<Line> Crevasse Coal <prob_CR_CO> </Line> | ||
<Line> Coal Coal <prob_CO_CO> </Line> | ||
</CondProbMatrix> | ||
</FaciesProbTrend> | ||
</APS_prob_trend> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters