Snapshot WIP: solver HP epic progress, BPHX/HX physics, BMAD skill refresh.
Some checks failed
CI / check (push) Has been cancelled

Capture uncommitted solver robustness work (regularization, domain errors, linear solver lifecycle, tube DP/MSH), web workbench updates, and synced BMAD skills across IDE agent folders before starting BPHX pressure-drop.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-07-19 16:35:31 +02:00
parent 88620790d6
commit 5bd180b5b8
1363 changed files with 101041 additions and 58547 deletions

View File

@@ -0,0 +1,42 @@
const { chromium } = require("C:/Users/ramez/AppData/Roaming/npm/node_modules/playwright");
(async () => {
console.log("Starting simple Dymola test script on port 3008...");
const browser = await chromium.launch({ headless: true });
const page = await browser.newPage({ viewport: { width: 1440, height: 900 } });
page.on('console', msg => console.log('BROWSER LOG:', msg.text()));
await page.goto("http://localhost:3008", { waitUntil: "domcontentloaded" });
await page.waitForTimeout(2000);
console.log("Clicking Bibliothèque tab...");
await page.click("button:has-text('Bibliothèque')");
await page.waitForTimeout(1500);
console.log("Looking for Poser sur canvas button...");
const btn = page.locator("button:has-text('Poser sur canvas')").first();
await btn.waitFor({ state: "visible", timeout: 10000 });
await btn.click();
await page.waitForTimeout(1500);
// Take screenshot Mode 1: Dymola Icon Mode
const pathMode1 = "C:/Users/ramez/.gemini/antigravity-ide/brain/e16f5552-47ce-4483-9b25-8266bb395491/dymola_mode_1_icon.png";
await page.screenshot({ path: pathMode1 });
console.log(`Saved Mode 1 screenshot to ${pathMode1}`);
// Click Mode Schéma toggle button on the node
console.log("Looking for Mode Schéma button on node...");
const schemaBtn = page.locator("button:has-text('Mode Schéma')").first();
if (await schemaBtn.isVisible()) {
await schemaBtn.click();
await page.waitForTimeout(1500);
}
// Take screenshot Mode 2: In-Place Internal Diagram Mode
const pathMode2 = "C:/Users/ramez/.gemini/antigravity-ide/brain/e16f5552-47ce-4483-9b25-8266bb395491/dymola_mode_2_diagram.png";
await page.screenshot({ path: pathMode2 });
console.log(`Saved Mode 2 screenshot to ${pathMode2}`);
await browser.close();
})();