79 lines
3.0 KiB
Python
79 lines
3.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2026 Nexa Systems Inc.
|
|
# License OPL-1 (Odoo Proprietary License v1.0)
|
|
# Part of the Fusion Plating product family.
|
|
|
|
{
|
|
'name': 'Fusion Plating — Aluminum Anodizing Process Pack',
|
|
'version': '19.0.1.0.0',
|
|
'category': 'Manufacturing/Plating',
|
|
'summary': 'Aluminum anodizing process types — Type I chromic, Type II sulfuric, Type III hardcoat, plus dye/seal/desmut — with bath parameter schemas.',
|
|
'description': """
|
|
Fusion Plating — Aluminum Anodizing Process Pack
|
|
==================================================
|
|
|
|
Part of the Fusion Plating product family by Nexa Systems Inc.
|
|
|
|
This data-only module plugs into the ``fusion_plating`` core and seeds the
|
|
process taxonomy and bath chemistry schemas specific to aluminum anodizing.
|
|
No new models, no new views — just records loaded with ``noupdate="1"`` so
|
|
downstream customizations survive upgrades.
|
|
|
|
Process types shipped
|
|
---------------------
|
|
* Type I — Chromic Acid Anodize (MIL-A-8625)
|
|
* Type II — Sulfuric Anodize, Clear (MIL-A-8625)
|
|
* Type II — Sulfuric Anodize, Dyed (MIL-A-8625)
|
|
* Type III — Hardcoat Anodize (MIL-A-8625)
|
|
* Dye Immersion
|
|
* Hot Water Seal
|
|
* Nickel Acetate Seal
|
|
* Dichromate Seal
|
|
* Bright Dip (pre-anodize)
|
|
* Desmut (post-etch)
|
|
|
|
Bath parameters shipped
|
|
-----------------------
|
|
Sulfuric acid concentration, dissolved aluminum, bath temperatures (Type II
|
|
room-temp and Type III chilled), current density, voltage, chromic acid
|
|
(Type I), seal bath temperature, seal bath pH, nickel acetate concentration,
|
|
dye concentration, and dye bath temperature. Per-bath target overrides
|
|
happen on the bath or recipe record in the core.
|
|
|
|
Hazard awareness
|
|
----------------
|
|
* Type I (chromic acid) carries the same Cr(VI) carcinogen warnings as
|
|
chrome plating — NPRI Part 1B reportable, Toronto Ch. 681 Cr(VI) limit
|
|
2 mg/L, mandatory mist suppression and medical surveillance.
|
|
* Type II and Type III sulfuric baths are severe splash hazards —
|
|
acid-resistant PPE, eyewash within 10 seconds travel, safety shower.
|
|
* Type III chilled bath requires mandatory refrigeration and arc flash
|
|
PPE at rectifier voltages up to 90V+.
|
|
* Nickel acetate seal is a WHMIS 2015 Category 1A sensitizer/carcinogen
|
|
subject to Ontario Reg. 833 air monitoring.
|
|
|
|
Prefer Type II over Type I wherever customer spec allows, to reduce
|
|
hexavalent chromium exposure in the facility.
|
|
|
|
Install this module after ``fusion_plating``. It depends only on the core
|
|
module and ships no security rules or views of its own.
|
|
|
|
Copyright (c) 2026 Nexa Systems Inc. All rights reserved.
|
|
""",
|
|
'author': 'Nexa Systems Inc.',
|
|
'website': 'https://www.nexasystems.ca',
|
|
'maintainer': 'Nexa Systems Inc.',
|
|
'support': 'support@nexasystems.ca',
|
|
'license': 'OPL-1',
|
|
'price': 0.00,
|
|
'currency': 'CAD',
|
|
'depends': ['fusion_plating'],
|
|
'data': [
|
|
'data/fp_bath_parameter_data.xml',
|
|
'data/fp_process_type_data.xml',
|
|
],
|
|
'installable': True,
|
|
'application': False,
|
|
'auto_install': False,
|
|
}
|