Views
No views yet
pimpleFoam)| Metric | v2 (public) | v3 cycle-2 (this) |
|---|---|---|
| End-to-end PASS rate | $110/110 = 100.0%$ | $110/110 = 100.0%$ |
| Solver-pick exact match | $106/110 = 96.4%$ | $106/110 = 96.4%$ |
| Same 4 borderline mismatches | yes | yes |
| Per-prompt FILES_CHANGE | n/a (baseline) | 4 prompts (3 attributable to active-learning training, 1 noise floor) |
| Per-prompt regression flags | n/a | 0 |
arungovindneelan/foam-cfd-unified-14b (v2 merged, bf16)1from vllm import LLM, SamplingParams
2llm = LLM(
3 model="arungovindneelan/foam-cfd-unified-14b-private",
4 dtype="bfloat16",
5 max_model_len=8192,
6 gpu_memory_utilization=0.55,
7)
8out = llm.chat(
9 [{"role": "system", "content": "You are an expert OpenFOAM CFD engineer..."},
10 {"role": "user", "content": "2D lid-driven cavity Re=1000, 2m square, water"}],
11 sampling_params=SamplingParams(temperature=0.0, max_tokens=1024),
12)
13print(out[0].outputs[0].text)github.com/AGN000/foam-cfd-agent-v3-private