Industrial Applications¶
Industrial application profiles map SC-NeuroCore modules to domain-specific hazards, standards, and evidence categories. They are readiness gates, not deployment approvals: a profile is marked ready only when the supplied evidence bag contains every mandatory category for that domain. This is the commercial bridge between research prototypes and buyer-facing diligence: it turns potential use cases into explicit evidence checklists and missing-evidence reports.
from sc_neurocore.industrial_applications import (
IndustrialDomain,
assess_industrial_readiness,
)
from sc_neurocore.safety_cert import EvidenceBag, EvidenceItem
bag = EvidenceBag()
bag.add(EvidenceItem("design.md", "design", "system architecture"))
bag.add(EvidenceItem("tests.xml", "test", "targeted verification"))
bag.add(EvidenceItem("fmeda.md", "analysis", "failure analysis"))
bag.add(EvidenceItem("report.md", "report", "safety report"))
assessment = assess_industrial_readiness(IndustrialDomain.INDUSTRIAL_CONTROL, bag)
assert assessment.ready
Built-in profiles cover aerospace, automotive, medical HIL research, rail, and industrial-control condition monitoring. The profile data deliberately records hazards and missing evidence instead of making unsupported field-deployment claims.
sc_neurocore.industrial_applications is in the scoped public-docstring policy.
Its focused readiness-gate suite is strict typed and covers profile inventory,
evidence-category aliases, mandatory/optional evidence handling, deterministic
registry ordering, and closed failure modes at 100% isolated module coverage.
This page has no polyglot or benchmark counterpart; the surface is a Python API
and buyer-facing documentation contract.
Buyer-facing interpretation¶
Use this API to turn a potential application into a diligence checklist. A
ready=false result is useful: it names the exact missing evidence before a
pilot or commercial deployment discussion. A ready=true result means the
local evidence bag satisfies the profile contract; it does not replace
independent certification, target-hardware qualification, cybersecurity review,
or domain-authority acceptance.
sc_neurocore.industrial_applications
¶
Industrial application profiles and evidence-readiness assessment.
IndustrialDomain
¶
Bases: Enum
Supported industrial application domains.
Source code in src/sc_neurocore/industrial_applications.py
| Python | |
|---|---|
20 21 22 23 24 25 26 27 28 29 30 | |
EvidenceCategory
¶
Bases: Enum
Evidence categories expected in an industrial readiness pack.
Source code in src/sc_neurocore/industrial_applications.py
| Python | |
|---|---|
33 34 35 36 37 38 39 40 41 42 43 | |
EvidenceRequirement
dataclass
¶
One evidence requirement for an application profile.
Source code in src/sc_neurocore/industrial_applications.py
| Python | |
|---|---|
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | |
to_dict()
¶
Return a JSON-ready requirement.
Source code in src/sc_neurocore/industrial_applications.py
| Python | |
|---|---|
54 55 56 57 58 59 60 | |
IndustrialApplicationProfile
dataclass
¶
Readiness profile for one SC-NeuroCore industrial use case.
Source code in src/sc_neurocore/industrial_applications.py
| Python | |
|---|---|
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | |
to_dict()
¶
Return a JSON-ready profile.
Source code in src/sc_neurocore/industrial_applications.py
| Python | |
|---|---|
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | |
IndustrialReadinessAssessment
dataclass
¶
Evidence coverage assessment for one industrial application profile.
Source code in src/sc_neurocore/industrial_applications.py
| Python | |
|---|---|
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | |
ready
property
¶
Whether all mandatory evidence categories are present.
mandatory_coverage
property
¶
Mandatory evidence coverage ratio.
to_dict()
¶
Return a JSON-ready assessment.
Source code in src/sc_neurocore/industrial_applications.py
| Python | |
|---|---|
117 118 119 120 121 122 123 124 125 126 | |
IndustrialApplicationRegistry
¶
Registry of application profiles and evidence-readiness checks.
Source code in src/sc_neurocore/industrial_applications.py
| Python | |
|---|---|
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | |
get(domain)
¶
Return the profile for a domain.
Source code in src/sc_neurocore/industrial_applications.py
| Python | |
|---|---|
140 141 142 143 144 145 146 147 148 149 | |
list_profiles()
¶
Return all registered profiles in deterministic order.
Source code in src/sc_neurocore/industrial_applications.py
| Python | |
|---|---|
151 152 153 154 155 | |
assess(domain, evidence_bag)
¶
Assess whether the evidence bag covers a domain profile.
Source code in src/sc_neurocore/industrial_applications.py
| Python | |
|---|---|
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | |
default_industrial_profiles()
¶
Return conservative built-in industrial application profiles.
Source code in src/sc_neurocore/industrial_applications.py
| Python | |
|---|---|
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 | |
assess_industrial_readiness(domain, evidence_bag)
¶
Assess readiness for a built-in industrial application domain.
Source code in src/sc_neurocore/industrial_applications.py
| Python | |
|---|---|
373 374 375 376 377 378 | |