153 lines
7.3 KiB
HTML
153 lines
7.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>HiNC Documentation | HiAPI-C# 2025 </title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="title" content="HiNC Documentation | HiAPI-C# 2025 ">
|
|
|
|
|
|
<link rel="icon" href="img/HiAPI.favicon.ico">
|
|
<link rel="stylesheet" href="public/docfx.min.css">
|
|
<link rel="stylesheet" href="public/main.css">
|
|
<meta name="docfx:navrel" content="toc.html">
|
|
<meta name="docfx:tocrel" content="toc.html">
|
|
|
|
<meta name="docfx:rel" content="">
|
|
|
|
|
|
|
|
<meta name="loc:inThisArticle" content="In this article">
|
|
<meta name="loc:searchResultsCount" content="{count} results for "{query}"">
|
|
<meta name="loc:searchNoResults" content="No results for "{query}"">
|
|
<meta name="loc:tocFilter" content="Filter by title">
|
|
<meta name="loc:nextArticle" content="Next">
|
|
<meta name="loc:prevArticle" content="Previous">
|
|
<meta name="loc:themeLight" content="Light">
|
|
<meta name="loc:themeDark" content="Dark">
|
|
<meta name="loc:themeAuto" content="Auto">
|
|
<meta name="loc:changeTheme" content="Change theme">
|
|
<meta name="loc:copy" content="Copy">
|
|
<meta name="loc:downloadPdf" content="Download PDF">
|
|
|
|
<script type="module" src="./public/docfx.min.js"></script>
|
|
|
|
<script>
|
|
const theme = localStorage.getItem('theme') || 'auto'
|
|
document.documentElement.setAttribute('data-bs-theme', theme === 'auto' ? (window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light') : theme)
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body class="tex2jax_ignore" data-layout="" data-yaml-mime="">
|
|
<header class="bg-body border-bottom">
|
|
<nav id="autocollapse" class="navbar navbar-expand-md" role="navigation">
|
|
<div class="container-xxl flex-nowrap">
|
|
<a class="navbar-brand" href="index.html">
|
|
<img id="logo" class="svg" src="img/HiAPI.logo.png" alt="">
|
|
|
|
</a>
|
|
<button class="btn btn-lg d-md-none border-0" type="button" data-bs-toggle="collapse" data-bs-target="#navpanel" aria-controls="navpanel" aria-expanded="false" aria-label="Toggle navigation">
|
|
<i class="bi bi-three-dots"></i>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navpanel">
|
|
<div id="navbar">
|
|
<form class="search" role="search" id="search">
|
|
<i class="bi bi-search"></i>
|
|
<input class="form-control" id="search-query" type="search" disabled placeholder="Search" autocomplete="off" aria-label="Search">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
|
|
<main class="container-xxl">
|
|
|
|
<div class="content">
|
|
<div class="actionbar">
|
|
|
|
<nav id="breadcrumb"></nav>
|
|
</div>
|
|
|
|
<article data-uid="">
|
|
<h1 id="hinc-documentation">HiNC Documentation</h1>
|
|
|
|
<p>HiNC is a virtual machine tool and milling simulation software by <a href="https://superhightech.com.tw">Tech Coordinate</a>. It performs pre-machining verification and optimization through high-precision simulation and milling physics analysis — including cutting force, moment, deflection, heat, wear, and more.</p>
|
|
<pre><code class="lang-mermaid">flowchart TD
|
|
subgraph Setup["Setup (ordering-free)"]
|
|
Mt["Build / Load<br>Virtual Machine Tool"]
|
|
ControlPreset["Configure<br>Drive Mode"]
|
|
BasicConfig["Set Workpiece, Fixture,<br>Tool House, Controller & NC"]
|
|
MaterialConfig["Set Cutting<br>Parameters"]
|
|
ImportData["Import Sensor Data<br>(dynamometer / smart tool holder)"]
|
|
end
|
|
|
|
Setup --> Sim["Run Simulation"]
|
|
|
|
Sim --> Collision["Collision Detection"]
|
|
Sim --> Examine["Inspect & Analyze<br>(force, moment, heat,<br>deflection, wear, power)"]
|
|
ImportData --> Examine
|
|
|
|
Sim --> Train["Train Milling<br>Parameters"]
|
|
ImportData --> Train
|
|
Train --> MaterialConfig
|
|
|
|
Sim --> Opt["Generate Optimized NC<br>(re-interpolation,<br>feedrate adjustment)"]
|
|
|
|
subgraph Inspection
|
|
Collision
|
|
Examine
|
|
end
|
|
|
|
subgraph Output
|
|
Opt
|
|
end
|
|
</code></pre>
|
|
<h2 id="where-to-start">Where to Start</h2>
|
|
<ul>
|
|
<li><strong>Running a job from end to end.</strong> <a href="workflows/index.html">Workflows</a> takes one job from the data you have to the result you want, in order, in a single page.</li>
|
|
<li><strong>Operating the application.</strong> <a href="manual/index.html">Manual</a> is the screen-by-screen reference for the HiNC web application — the frame, the equipment, the run, and the supporting screens.</li>
|
|
<li><strong>Understanding why the numbers come out the way they do.</strong> <a class="xref" href="technique/index.html">Technique</a> carries the milling physics, machine capability, measurement and NC optimization knowledge, independently of any screen.</li>
|
|
<li><strong>Writing C# against the HiAPI packages.</strong> Technique also carries the developer layer — API foundations, scripting, rendering, the mechanism topology and the NC dialects — and the <a href="api/Hi.Machining.html">API Reference</a> is its generated class-by-class companion.</li>
|
|
</ul>
|
|
<h2 id="sections">Sections</h2>
|
|
<p>Every entry below is a section index: it states its own ordering principle and lists what it holds,
|
|
so navigation is top-down — this page, then the section index, then the sub-folder index, then the
|
|
page.</p>
|
|
<ul>
|
|
<li><a href="manual/index.html">Manual</a> — Operating the web application, chapter by chapter: basics, setup, running a simulation, utilities</li>
|
|
<li><a href="workflows/index.html">Workflows</a> — End-to-end task guides, each read start to finish</li>
|
|
<li><a class="xref" href="technique/index.html">Technique</a> — The durable knowledge behind the numbers: milling physics, machine capability, measurement, NC optimization, and the API layer applications are built on</li>
|
|
<li><a class="xref" href="anatomy/index.html">App Anatomy</a> — The shipped applications broken down component by component: view ↔ model ↔ source</li>
|
|
<li><a href="api/Hi.Machining.html">API Reference</a> — The generated C# class and method reference for the HiAPI packages</li>
|
|
<li><a href="release-note/index.html">Release Note</a> — What changed in each release, and what upgrading costs</li>
|
|
<li><a href="product/index.html">Product</a> — About Tech Coordinate, system requirements, license terms, activation and multi-station setup</li>
|
|
</ul>
|
|
|
|
</article>
|
|
|
|
<div class="contribution d-print-none">
|
|
</div>
|
|
|
|
<div class="next-article d-print-none border-top" id="nextArticle"></div>
|
|
|
|
</div>
|
|
|
|
<div class="affix">
|
|
<nav id="affix"></nav>
|
|
</div>
|
|
</main>
|
|
|
|
<div class="container-xxl search-results" id="search-results"></div>
|
|
|
|
<footer class="border-top text-secondary">
|
|
<div class="container-xxl">
|
|
<div class="flex-fill">
|
|
<span> Copyright © 2025 <a href='https://superhightech.com.tw'>Tech Coordinate</a>. All rights reserved. <a href='https://superhightech.com.tw'>超級高科技股份有限公司</a> © 2025 版權所有 </span>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|