Extends the Test Datasheet Pipeline on AD2:C:\Shares\testdatadb to
generate web-published datasheets for the SCMVAS-Mxxx (obsolete) and
SCMHVAS-Mxxxx (replacement) High Voltage Input Module product lines.
Both are tested either with the existing TESTHV3 software (production
VASLOG .DAT logs) or in Engineering with plain .txt output.
Key changes on AD2 (all deployed 2026-04-12 with dated backups):
- parsers/spec-reader.js: getSpecs() returns a `{_family:'SCMVAS',
_noSpecs:true}` sentinel for SCMVAS/SCMHVAS/VAS-M/HVAS-M model prefixes
so the export pipeline does not silently skip them for missing specs.
- templates/datasheet-exact.js: new Accuracy-only template branch
(generateSCMVASDatasheet + helpers) that mirrors the existing shipped
format byte-for-byte. Extraction regex covers both QuickBASIC STR$()
output formats: scientific-with-trailing-status-digit (98.4% of
records) and plain-decimal (1.6% of records above QB's threshold).
- parsers/vaslog-engtxt.js (new): parses the Engineering-Tested .txt
files in TS-3R\LOGS\VASLOG\VASLOG - Engineering Tested\. Filename SN
regex strips optional trailing 14-digit timestamp; in-file "SN:"
header is the authoritative source when the filename is malformed.
- database/import.js: LOG_TYPES grows a VASLOG_ENG entry with
subfolder + recursive flags. Pre-existing 7 log types keep their
implicit recursive=true behaviour (config.recursive !== false).
importFiles() routes VASLOG_ENG paths before the generic loop so a
VASLOG - Engineering Tested/*.txt path does not mis-dispatch to the
multiline parser.
- database/export-datasheets.js: VASLOG_ENG records are written
verbatim via fs.copyFileSync(source_file, For_Web/<SN>.TXT) for true
byte-level pass-through, with a graceful raw_data fallback when the
source file is no longer on disk.
Deploy outcome:
- 27,503 SCMVAS/SCMHVAS datasheets rendered (27,065 from scientific +
438 from plain-decimal PASS lines, post-patch rerun)
- 434 Engineering-Tested .txt files pass-through-copied to For_Web
- 0 errors across both batches
Repo layout added here:
- scmvas-hvas-research/: discovery artifacts (source .BAS, hvin.dat,
sample .DAT + .txt, binary-format notes, IMPLEMENTATION_PLAN.md)
- implementation/: staged final code + deploy helpers + local test
harness + per-step verification scripts
- backups/pre-deploy-20260412/: independent local snapshot of the 4
AD2 files replaced, pulled byte-for-byte before deploy
All helper scripts fetch the AD2 password at runtime from the SOPS
vault (clients/dataforth/ad2.sops.yaml). None of the committed files
contain the plaintext credential. Known vault-entry hygiene issue
(stale shell-escape backslash before the `!`) is documented in the
fetcher comments and stripped at read-time; flagged separately for
cleanup.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
93 lines
2.5 KiB
Python
93 lines
2.5 KiB
Python
"""Parse hvin.dat based on TYPE DBASE from DBHV.BAS / TESTHV3.BAS.
|
|
|
|
Record layout (199 bytes each):
|
|
MODNAME STRING * 13
|
|
INTYPE STRING * 3
|
|
MININ SINGLE
|
|
MAXIN SINGLE
|
|
OUTSIGTYPE STRING * 7
|
|
MINOUT SINGLE
|
|
MAXOUT SINGLE
|
|
WAVESHPCAL STRING * 8
|
|
...42 SINGLEs total...
|
|
"""
|
|
import struct, sys
|
|
|
|
FIELDS = [
|
|
('MODNAME', 's', 13),
|
|
('INTYPE', 's', 3),
|
|
('MININ', 'f', 4),
|
|
('MAXIN', 'f', 4),
|
|
('OUTSIGTYPE', 's', 7),
|
|
('MINOUT', 'f', 4),
|
|
('MAXOUT', 'f', 4),
|
|
('WAVESHPCAL', 's', 8),
|
|
('FINCAL', 'f', 4),
|
|
('FINMIN', 'f', 4),
|
|
('FINMAX', 'f', 4),
|
|
('FINEXTMIN', 'f', 4),
|
|
('FINEXTMAX', 'f', 4),
|
|
('INPROTECT', 'f', 4),
|
|
('IOUTLIM', 'f', 4),
|
|
('VOUTLIM', 'f', 4),
|
|
('OUTRES', 'f', 4),
|
|
('OUTNOISE', 'f', 4),
|
|
('OSCALIN', 'f', 4),
|
|
('GNCALIN', 'f', 4),
|
|
('OSCALPT', 'f', 4),
|
|
('GNCALPT', 'f', 4),
|
|
('CALTOL', 'f', 4),
|
|
('ADJ', 'f', 4),
|
|
('LINEAR', 'f', 4),
|
|
('ACCSINCAL', 'f', 4),
|
|
('ACCSINSTD', 'f', 4),
|
|
('ACCSINEXT', 'f', 4),
|
|
('ACCCF12', 'f', 4),
|
|
('ACCCF23', 'f', 4),
|
|
('ACCCF34', 'f', 4),
|
|
('ACCCF45', 'f', 4),
|
|
('CMR', 'f', 4),
|
|
('STEPTIME', 'f', 4),
|
|
('STEPPERC', 'f', 4),
|
|
('STEPTOL', 'f', 4),
|
|
('LOOPVMIN', 'f', 4),
|
|
('LOOPVNOM', 'f', 4),
|
|
('LOOPVMAX', 'f', 4),
|
|
('MAXLOADR', 'f', 4),
|
|
('MINVS', 'f', 4),
|
|
('NOMVS', 'f', 4),
|
|
('MAXVS', 'f', 4),
|
|
('ISMIN', 'f', 4),
|
|
('ISMAX', 'f', 4),
|
|
('PSS', 'f', 4),
|
|
]
|
|
|
|
RECORD_SIZE = sum(sz for _, _, sz in FIELDS)
|
|
print(f'Computed record size: {RECORD_SIZE} bytes')
|
|
|
|
def parse_record(buf, off):
|
|
rec = {}
|
|
pos = off
|
|
for name, typ, sz in FIELDS:
|
|
chunk = buf[pos:pos+sz]
|
|
if typ == 's':
|
|
rec[name] = chunk.rstrip(b'\x00 ').decode('latin-1', errors='replace').strip()
|
|
else:
|
|
rec[name] = struct.unpack('<f', chunk)[0]
|
|
pos += sz
|
|
return rec
|
|
|
|
def main():
|
|
with open(sys.argv[1], 'rb') as f:
|
|
buf = f.read()
|
|
print(f'File size: {len(buf)} bytes, {len(buf)/RECORD_SIZE} records')
|
|
n = len(buf) // RECORD_SIZE
|
|
for i in range(n):
|
|
r = parse_record(buf, i * RECORD_SIZE)
|
|
if not r['MODNAME'] or not any(c.isalnum() for c in r['MODNAME']):
|
|
continue
|
|
print(f"#{i+1:02d} {r['MODNAME']!r:20s} IN={r['INTYPE']!r} OUT={r['OUTSIGTYPE']!r} {r['MININ']:+.3f} to {r['MAXIN']:+.3f} -> {r['MINOUT']:+.3f} to {r['MAXOUT']:+.3f} Vs={r['NOMVS']:.1f} Is={r['ISMAX']:.1f}mA")
|
|
|
|
if __name__ == '__main__':
|
|
main()
|