oreblocks 0.1.0__tar.gz
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.
- oreblocks-0.1.0/LICENSE +202 -0
- oreblocks-0.1.0/PKG-INFO +91 -0
- oreblocks-0.1.0/README.md +66 -0
- oreblocks-0.1.0/pyproject.toml +43 -0
- oreblocks-0.1.0/setup.cfg +4 -0
- oreblocks-0.1.0/src/oreblocks/__init__.py +46 -0
- oreblocks-0.1.0/src/oreblocks/_rng.py +20 -0
- oreblocks-0.1.0/src/oreblocks/economics.py +54 -0
- oreblocks-0.1.0/src/oreblocks/extraction.py +177 -0
- oreblocks-0.1.0/src/oreblocks/fields.py +146 -0
- oreblocks-0.1.0/src/oreblocks/grid.py +76 -0
- oreblocks-0.1.0/src/oreblocks/minelib_io.py +174 -0
- oreblocks-0.1.0/src/oreblocks/precedence.py +89 -0
- oreblocks-0.1.0/src/oreblocks/twins.py +84 -0
- oreblocks-0.1.0/src/oreblocks/upit.py +178 -0
- oreblocks-0.1.0/src/oreblocks.egg-info/PKG-INFO +91 -0
- oreblocks-0.1.0/src/oreblocks.egg-info/SOURCES.txt +19 -0
- oreblocks-0.1.0/src/oreblocks.egg-info/dependency_links.txt +1 -0
- oreblocks-0.1.0/src/oreblocks.egg-info/requires.txt +5 -0
- oreblocks-0.1.0/src/oreblocks.egg-info/top_level.txt +1 -0
- oreblocks-0.1.0/tests/test_oreblocks.py +230 -0
oreblocks-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
oreblocks-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: oreblocks
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Synthetic 3D ore-body block models of the MineLib nature: seeded deposit archetypes, bench structure, slope precedence, UPIT economics, an exact max-closure solver, extraction states with loading faces, and MineLib .blocks/.prec/.upit read/write
|
|
5
|
+
Author: Felipe Santibanez-Leal
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Repository, https://github.com/fsantibanezleal/CAOS_OreBlocks
|
|
8
|
+
Project-URL: Changelog, https://github.com/fsantibanezleal/CAOS_OreBlocks/blob/main/CHANGELOG.md
|
|
9
|
+
Project-URL: Issues, https://github.com/fsantibanezleal/CAOS_OreBlocks/issues
|
|
10
|
+
Keywords: mining,block-model,ore-body,ultimate-pit,UPIT,MineLib,open-pit,mine-planning,max-closure,synthetic-data
|
|
11
|
+
Classifier: Development Status :: 3 - Alpha
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
16
|
+
Classifier: Topic :: Scientific/Engineering
|
|
17
|
+
Requires-Python: >=3.11
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
License-File: LICENSE
|
|
20
|
+
Requires-Dist: numpy>=1.26
|
|
21
|
+
Provides-Extra: dev
|
|
22
|
+
Requires-Dist: pytest>=8; extra == "dev"
|
|
23
|
+
Requires-Dist: ruff>=0.4; extra == "dev"
|
|
24
|
+
Dynamic: license-file
|
|
25
|
+
|
|
26
|
+
# oreblocks
|
|
27
|
+
|
|
28
|
+
[](https://github.com/fsantibanezleal/CAOS_OreBlocks/actions)
|
|
29
|
+
[](LICENSE)
|
|
30
|
+
[](https://github.com/fsantibanezleal/CAOS_OreBlocks/tags)
|
|
31
|
+
|
|
32
|
+
**Synthetic 3-D ore-body block models of the MineLib nature** — seeded deposit archetypes with
|
|
33
|
+
per-block grades, bench (level) structure, slope precedence, UPIT economics with per-block optimal
|
|
34
|
+
destination, an **exact max-closure solver**, extraction states with **loading faces**, and MineLib
|
|
35
|
+
`.blocks/.prec/.upit` **read/write**. Deterministic given a seed; every generated instance is
|
|
36
|
+
clearly labelled SYNTHETIC.
|
|
37
|
+
|
|
38
|
+
Why: per-block ground truth on real mines is licensed or proprietary (MineLib grants academic
|
|
39
|
+
download only, no redistribution). oreblocks generates instances of the same *nature* — 3-D
|
|
40
|
+
benches, grades, precedence, net values — with a **stamped exact optimum**, so solvers, dispatch
|
|
41
|
+
simulators and teaching apps get license-free realistic instances with known-by-construction
|
|
42
|
+
answers.
|
|
43
|
+
|
|
44
|
+
## Install
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
pip install oreblocks
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
## Quickstart — a MineLib-format twin with a stamped optimum
|
|
51
|
+
|
|
52
|
+
```python
|
|
53
|
+
from oreblocks import make_twin
|
|
54
|
+
|
|
55
|
+
twin = make_twin("porphyry", dims=(20, 20, 10), seed=42)
|
|
56
|
+
print(twin.upit.pit_value, twin.upit.n_in_pit) # the EXACT optimum, stamped
|
|
57
|
+
twin.write("out/") # -> twin-*.blocks / .prec / .upit / .meta.json (MineLib format)
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
The emitted triplet is byte-consumable by any MineLib UPIT reader. Cross-validated against an
|
|
61
|
+
independent TypeScript min-cut engine (CAOS PitForge, which reproduces the published newman1 /
|
|
62
|
+
zuck_small / kd optima): relative disagreement ~1e-11 on a 4,000-block twin.
|
|
63
|
+
|
|
64
|
+
## Pieces
|
|
65
|
+
|
|
66
|
+
| Module | What |
|
|
67
|
+
|---|---|
|
|
68
|
+
| `BlockGrid` | regular grid; LEVELS increase upward (the MineLib convention) |
|
|
69
|
+
| `make_deposit` | seeded archetypes: `porphyry`, `vein`, `layered`, `core_halo` (trend + correlated noise) |
|
|
70
|
+
| `Econ` / `block_values` | UPIT net value at the optimal destination (floating cutoff = the max) |
|
|
71
|
+
| `build_precedence` | slope-cone template one level up (45° cubic → the classic 9-point), CSR |
|
|
72
|
+
| `solve_upit` | exact Picard max-closure → Dinic min-cut; closure + value-identity self-checks |
|
|
73
|
+
| `extraction_state` / `loading_faces` | top-down bench extraction + seeded k-means shovel faces (grade at face, ore fraction, tonnes) — the bridge to haulage simulators |
|
|
74
|
+
| `write_minelib` / `read_*` | the `.blocks/.prec/.upit` triplet + a meta sidecar with the stamped optimum |
|
|
75
|
+
|
|
76
|
+
## Convention notes
|
|
77
|
+
|
|
78
|
+
- Levels (z) increase **upward**: level 0 is the deepest bench — exactly how published MineLib
|
|
79
|
+
instances index (verified against newman1). Depth-down viewers flip with `z_down = nz-1-level`.
|
|
80
|
+
- `.blocks` free columns written by oreblocks are documented in the meta sidecar:
|
|
81
|
+
`grade (mass fraction) · tonnage (t) · density (t/m³)`.
|
|
82
|
+
- Nothing here downloads or redistributes published MineLib data.
|
|
83
|
+
|
|
84
|
+
## Used by
|
|
85
|
+
|
|
86
|
+
- **minehaulsim** (haulage DES) — geology-grounded scenarios: loading faces with grade/bench.
|
|
87
|
+
- **CAOS PitForge** — license-free synthetic twins next to the published-instance lane.
|
|
88
|
+
|
|
89
|
+
## License
|
|
90
|
+
|
|
91
|
+
Apache-2.0.
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
# oreblocks
|
|
2
|
+
|
|
3
|
+
[](https://github.com/fsantibanezleal/CAOS_OreBlocks/actions)
|
|
4
|
+
[](LICENSE)
|
|
5
|
+
[](https://github.com/fsantibanezleal/CAOS_OreBlocks/tags)
|
|
6
|
+
|
|
7
|
+
**Synthetic 3-D ore-body block models of the MineLib nature** — seeded deposit archetypes with
|
|
8
|
+
per-block grades, bench (level) structure, slope precedence, UPIT economics with per-block optimal
|
|
9
|
+
destination, an **exact max-closure solver**, extraction states with **loading faces**, and MineLib
|
|
10
|
+
`.blocks/.prec/.upit` **read/write**. Deterministic given a seed; every generated instance is
|
|
11
|
+
clearly labelled SYNTHETIC.
|
|
12
|
+
|
|
13
|
+
Why: per-block ground truth on real mines is licensed or proprietary (MineLib grants academic
|
|
14
|
+
download only, no redistribution). oreblocks generates instances of the same *nature* — 3-D
|
|
15
|
+
benches, grades, precedence, net values — with a **stamped exact optimum**, so solvers, dispatch
|
|
16
|
+
simulators and teaching apps get license-free realistic instances with known-by-construction
|
|
17
|
+
answers.
|
|
18
|
+
|
|
19
|
+
## Install
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
pip install oreblocks
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Quickstart — a MineLib-format twin with a stamped optimum
|
|
26
|
+
|
|
27
|
+
```python
|
|
28
|
+
from oreblocks import make_twin
|
|
29
|
+
|
|
30
|
+
twin = make_twin("porphyry", dims=(20, 20, 10), seed=42)
|
|
31
|
+
print(twin.upit.pit_value, twin.upit.n_in_pit) # the EXACT optimum, stamped
|
|
32
|
+
twin.write("out/") # -> twin-*.blocks / .prec / .upit / .meta.json (MineLib format)
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
The emitted triplet is byte-consumable by any MineLib UPIT reader. Cross-validated against an
|
|
36
|
+
independent TypeScript min-cut engine (CAOS PitForge, which reproduces the published newman1 /
|
|
37
|
+
zuck_small / kd optima): relative disagreement ~1e-11 on a 4,000-block twin.
|
|
38
|
+
|
|
39
|
+
## Pieces
|
|
40
|
+
|
|
41
|
+
| Module | What |
|
|
42
|
+
|---|---|
|
|
43
|
+
| `BlockGrid` | regular grid; LEVELS increase upward (the MineLib convention) |
|
|
44
|
+
| `make_deposit` | seeded archetypes: `porphyry`, `vein`, `layered`, `core_halo` (trend + correlated noise) |
|
|
45
|
+
| `Econ` / `block_values` | UPIT net value at the optimal destination (floating cutoff = the max) |
|
|
46
|
+
| `build_precedence` | slope-cone template one level up (45° cubic → the classic 9-point), CSR |
|
|
47
|
+
| `solve_upit` | exact Picard max-closure → Dinic min-cut; closure + value-identity self-checks |
|
|
48
|
+
| `extraction_state` / `loading_faces` | top-down bench extraction + seeded k-means shovel faces (grade at face, ore fraction, tonnes) — the bridge to haulage simulators |
|
|
49
|
+
| `write_minelib` / `read_*` | the `.blocks/.prec/.upit` triplet + a meta sidecar with the stamped optimum |
|
|
50
|
+
|
|
51
|
+
## Convention notes
|
|
52
|
+
|
|
53
|
+
- Levels (z) increase **upward**: level 0 is the deepest bench — exactly how published MineLib
|
|
54
|
+
instances index (verified against newman1). Depth-down viewers flip with `z_down = nz-1-level`.
|
|
55
|
+
- `.blocks` free columns written by oreblocks are documented in the meta sidecar:
|
|
56
|
+
`grade (mass fraction) · tonnage (t) · density (t/m³)`.
|
|
57
|
+
- Nothing here downloads or redistributes published MineLib data.
|
|
58
|
+
|
|
59
|
+
## Used by
|
|
60
|
+
|
|
61
|
+
- **minehaulsim** (haulage DES) — geology-grounded scenarios: loading faces with grade/bench.
|
|
62
|
+
- **CAOS PitForge** — license-free synthetic twins next to the published-instance lane.
|
|
63
|
+
|
|
64
|
+
## License
|
|
65
|
+
|
|
66
|
+
Apache-2.0.
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "oreblocks"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "Synthetic 3D ore-body block models of the MineLib nature: seeded deposit archetypes, bench structure, slope precedence, UPIT economics, an exact max-closure solver, extraction states with loading faces, and MineLib .blocks/.prec/.upit read/write"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.11"
|
|
7
|
+
license = { text = "Apache-2.0" }
|
|
8
|
+
authors = [{ name = "Felipe Santibanez-Leal" }]
|
|
9
|
+
keywords = ["mining", "block-model", "ore-body", "ultimate-pit", "UPIT", "MineLib", "open-pit", "mine-planning", "max-closure", "synthetic-data"]
|
|
10
|
+
classifiers = [
|
|
11
|
+
"Development Status :: 3 - Alpha",
|
|
12
|
+
"License :: OSI Approved :: Apache Software License",
|
|
13
|
+
"Programming Language :: Python :: 3.11",
|
|
14
|
+
"Programming Language :: Python :: 3.12",
|
|
15
|
+
"Programming Language :: Python :: 3.13",
|
|
16
|
+
"Topic :: Scientific/Engineering",
|
|
17
|
+
]
|
|
18
|
+
dependencies = ["numpy>=1.26"]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
Repository = "https://github.com/fsantibanezleal/CAOS_OreBlocks"
|
|
22
|
+
Changelog = "https://github.com/fsantibanezleal/CAOS_OreBlocks/blob/main/CHANGELOG.md"
|
|
23
|
+
Issues = "https://github.com/fsantibanezleal/CAOS_OreBlocks/issues"
|
|
24
|
+
|
|
25
|
+
[project.optional-dependencies]
|
|
26
|
+
dev = ["pytest>=8", "ruff>=0.4"]
|
|
27
|
+
|
|
28
|
+
[build-system]
|
|
29
|
+
requires = ["setuptools>=68"]
|
|
30
|
+
build-backend = "setuptools.build_meta"
|
|
31
|
+
|
|
32
|
+
[tool.setuptools.packages.find]
|
|
33
|
+
where = ["src"]
|
|
34
|
+
|
|
35
|
+
[tool.ruff]
|
|
36
|
+
line-length = 118
|
|
37
|
+
target-version = "py311"
|
|
38
|
+
|
|
39
|
+
[tool.ruff.lint]
|
|
40
|
+
select = ["E", "F", "W", "I", "N", "UP", "B", "SIM"]
|
|
41
|
+
|
|
42
|
+
[tool.pytest.ini_options]
|
|
43
|
+
testpaths = ["tests"]
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"""oreblocks — synthetic 3-D ore-body block models of the MineLib nature.
|
|
2
|
+
|
|
3
|
+
Seeded deposit archetypes with per-block grades, bench (level) structure, slope precedence, UPIT
|
|
4
|
+
economics with per-block optimal destination, an exact max-closure solver, extraction states with
|
|
5
|
+
loading faces, and MineLib ``.blocks/.prec/.upit`` read/write. Everything deterministic given a
|
|
6
|
+
seed; every generated instance is clearly labelled SYNTHETIC.
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
__version__ = "0.1.0"
|
|
10
|
+
|
|
11
|
+
from .economics import Econ, block_values, cutoff_grade, is_ore
|
|
12
|
+
from .extraction import ExtractionState, Face, extraction_state, loading_faces
|
|
13
|
+
from .fields import ARCHETYPES, Deposit, make_deposit
|
|
14
|
+
from .grid import BlockGrid
|
|
15
|
+
from .minelib_io import read_blocks, read_meta, read_prec, read_upit, write_minelib
|
|
16
|
+
from .precedence import Precedence, build_precedence, slope_offsets
|
|
17
|
+
from .twins import Twin, make_twin
|
|
18
|
+
from .upit import UpitResult, solve_upit
|
|
19
|
+
|
|
20
|
+
__all__ = [
|
|
21
|
+
"__version__",
|
|
22
|
+
"ARCHETYPES",
|
|
23
|
+
"BlockGrid",
|
|
24
|
+
"Deposit",
|
|
25
|
+
"Econ",
|
|
26
|
+
"ExtractionState",
|
|
27
|
+
"Face",
|
|
28
|
+
"Precedence",
|
|
29
|
+
"Twin",
|
|
30
|
+
"UpitResult",
|
|
31
|
+
"block_values",
|
|
32
|
+
"build_precedence",
|
|
33
|
+
"cutoff_grade",
|
|
34
|
+
"extraction_state",
|
|
35
|
+
"is_ore",
|
|
36
|
+
"loading_faces",
|
|
37
|
+
"make_deposit",
|
|
38
|
+
"make_twin",
|
|
39
|
+
"read_blocks",
|
|
40
|
+
"read_meta",
|
|
41
|
+
"read_prec",
|
|
42
|
+
"read_upit",
|
|
43
|
+
"slope_offsets",
|
|
44
|
+
"solve_upit",
|
|
45
|
+
"write_minelib",
|
|
46
|
+
]
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"""Seeded, named random streams — same discipline as minehaulsim.
|
|
2
|
+
|
|
3
|
+
Every stochastic component draws from its own named stream derived from (seed, name), so adding a
|
|
4
|
+
new consumer never perturbs existing draws and results are byte-identical given the seed.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from __future__ import annotations
|
|
8
|
+
|
|
9
|
+
import hashlib
|
|
10
|
+
|
|
11
|
+
import numpy as np
|
|
12
|
+
|
|
13
|
+
__all__ = ["stream"]
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
def stream(seed: int, name: str) -> np.random.Generator:
|
|
17
|
+
"""A generator for the (seed, name) pair — stable across platforms and numpy versions."""
|
|
18
|
+
digest = hashlib.sha256(f"{seed}:{name}".encode()).digest()
|
|
19
|
+
words = [int.from_bytes(digest[k : k + 4], "little") for k in range(0, 16, 4)]
|
|
20
|
+
return np.random.Generator(np.random.PCG64(np.random.SeedSequence(words)))
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"""Block economics — the UPIT value model with per-block optimal destination.
|
|
2
|
+
|
|
3
|
+
A block's net value is the better of its two destinations, exactly the semantics of a MineLib
|
|
4
|
+
``.upit`` column (verified against newman1, where the published net value equals
|
|
5
|
+
max(value-if-wasted, value-if-processed)):
|
|
6
|
+
|
|
7
|
+
- waste: ``-mining_cost * tonnage``
|
|
8
|
+
- ore: ``(grade * recovery * price - processing_cost) * tonnage - mining_cost * tonnage``
|
|
9
|
+
|
|
10
|
+
The floating cutoff falls out of the max: a block is ore iff processing it beats wasting it.
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
from __future__ import annotations
|
|
14
|
+
|
|
15
|
+
from dataclasses import dataclass
|
|
16
|
+
|
|
17
|
+
import numpy as np
|
|
18
|
+
|
|
19
|
+
from .fields import Deposit
|
|
20
|
+
|
|
21
|
+
__all__ = ["Econ", "block_values", "is_ore", "cutoff_grade"]
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
@dataclass(frozen=True)
|
|
25
|
+
class Econ:
|
|
26
|
+
"""price: $/t of recovered metal · recovery: 0..1 · costs: $/t mined / $/t milled."""
|
|
27
|
+
|
|
28
|
+
price: float = 9000.0
|
|
29
|
+
recovery: float = 0.88
|
|
30
|
+
mining_cost: float = 2.5
|
|
31
|
+
processing_cost: float = 9.0
|
|
32
|
+
|
|
33
|
+
def __post_init__(self) -> None:
|
|
34
|
+
if not (0 < self.recovery <= 1):
|
|
35
|
+
raise ValueError(f"recovery must be in (0,1], got {self.recovery}")
|
|
36
|
+
if self.price <= 0 or self.mining_cost < 0 or self.processing_cost < 0:
|
|
37
|
+
raise ValueError("price must be positive; costs non-negative")
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
def cutoff_grade(econ: Econ) -> float:
|
|
41
|
+
"""The grade above which processing beats wasting: processing_cost / (recovery * price)."""
|
|
42
|
+
return econ.processing_cost / (econ.recovery * econ.price)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
def block_values(dep: Deposit, econ: Econ) -> np.ndarray:
|
|
46
|
+
"""Net value per block (float64) at the optimal destination — the ``.upit`` column."""
|
|
47
|
+
waste = -econ.mining_cost * dep.tonnage
|
|
48
|
+
ore = (dep.grade * econ.recovery * econ.price - econ.processing_cost) * dep.tonnage + waste
|
|
49
|
+
return np.maximum(waste, ore)
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
def is_ore(dep: Deposit, econ: Econ) -> np.ndarray:
|
|
53
|
+
"""Boolean per block: does processing beat wasting?"""
|
|
54
|
+
return dep.grade > cutoff_grade(econ)
|