- โก Electrohydrodynamics for Hall Effect Thrusters - Mistral Large 3 (v1.0)
โก Electrohydrodynamics for Hall Effect Thrusters - Mistral Large 3 (v1.0)
๐ Fine-tuned from Mistral Large 3 for electrohydrodynamics and plasma physics research
๐ Model Overview
๐ท๏ธ Model Name: Taylor658/Electrohydrodynamics
๐ข Version: 1.0
๐ง Model Type: Granular Mixture-of-Experts Language Model, domain fine-tuned
๐ Language: English
๐ License: MIT (base model Apache 2.0, attribution retained)
๐๏ธ Base Model: mistralai/Mistral-Large-3-675B-Base-2512
๐ง Model Details
- ๐จโ๐ป Developers: A Taylor
- ๐๏ธ Model Architecture: Mistral Large 3 granular Mixture-of-Experts transformer (673B language model, 39B active) with a 2.5B vision encoder
- ๐ Parameters: 41B active / 675B total
- โก Context Window: 256,000 tokens (inherited from base model)
- ๐ผ๏ธ Vision Input: Supported by the base model; not a focus of this fine-tune
- ๐ง Native Function Calling: Supported by the base model
- ๐ Release: v1.0
๐ฏ Intended Use
๐ฌ Primary Applications:
- ๐งช Aerospace Engineering: Assist engineers and researchers in analyzing plasma and fluid flows in HET channels
- โก Electrohydrodynamics Research: Support for understanding EHD phenomena in thrusters
- ๐ฌ Computational Modeling: Assistance with plasma fluid interaction modeling
- ๐ Data Analysis: Interpret long simulation reports within the 256k context
- ๐ป Code Generation: Draft simulation scripts and analysis tools for review
๐ก Usage Scenarios:
- ๐งฒ Magnetic Field Analysis: Discussing the influence of magnetic fields on electron mobility in thruster channels
- โก Ionization Dynamics: Explaining ionization processes in the main thruster discharge channel
- ๐ Simulation Interpretation: Analyzing simulation datasets and theoretical results for efficiency optimization
- ๐ฌ Plume Characteristics: Discussing thruster plume behavior and performance metrics
- ๐ป Coding Assistance: Drafting CFD and plasma simulation code
- ๐ Long-Context Analysis: Reading extended research papers and technical documentation
๐ซ Out of Scope:
- ๐ฐ๏ธ Thruster design or flight qualification decisions without independent verification
- ๐ ๏ธ Any system where an incorrect output has physical consequences
- ๐ Domains outside electric propulsion and plasma physics
๐ Training Data
๐ Dataset Name: Taylor658/Electrohydrodynamics
๐ฌ Dataset Description:
A synthetic dataset of textual explanations, theoretical derivations, and computational concepts covering fluid dynamics and plasma interactions in Hall Effect Thrusters. All records are generated; none are measured test stand data.
๐ Data Modalities:
- ๐ Text: Technical explanations, research summaries, and theoretical analyses
- ๐ป Code: CFD simulation scripts and plasma modeling snippets
- ๐ Numerical: Simulated performance metrics
โ๏ธ Training Procedure
๐ Training Pipeline:
The model starts from Mistral Large 3 Base and undergoes the following fine-tuning:
- ๐ฏ Domain-Specific Fine-Tuning: Parameter adaptation using the electrohydrodynamics dataset
- ๐ Iterative Refinement: Repeated training rounds with manual review of sampled outputs
- ๐ง Long-Context Training: Training examples include extended documents to exercise the context window
๐ Evaluation
Quantitative benchmarks are not yet published for v1.0. Evaluation to date is manual review of sampled outputs against the source dataset and standard Hall thruster relationships. Results will be added in a later version.
๐ก How to Use
Mistral Large 3 requires a full node (B200 or H200 in FP8; H100 or A100 in NVFP4). The recommended path is serving with vLLM and querying through the OpenAI-compatible endpoint.
๐ง Serve:
vllm serve Taylor658/Electrohydrodynamics \
--tokenizer_mode mistral \
--max-model-len 262144 \
--tensor-parallel-size 8
๐ง Query:
from openai import OpenAI
client = OpenAI(api_key="EMPTY", base_url="http://localhost:8000/v1")
model = client.models.list().data[0].id
resp = client.chat.completions.create(
model=model,
temperature=0.15,
max_tokens=1024,
messages=[
{"role": "user", "content": "Explain how the Hall parameter governs electron mobility in a Hall Effect Thruster discharge channel. State assumptions."}
],
)
print(resp.choices[0].message.content)
๐ Example Queries:
- โก "How does the Hall parameter affect electron mobility in a Hall Effect Thruster operating at 300V discharge voltage?"
- ๐ฌ "What are the primary factors influencing ionization efficiency in the thruster channel, and how do they interact?"
- ๐ "Summarize this simulation report and identify the parameters most sensitive to efficiency."
- ๐ป "Draft a CFD simulation script for modeling plasma flow in a cylindrical HET channel."
โ ๏ธ Limitations
- ๐ข First Release: v1.0 is a first release; behavior will change in later versions
- ๐ฏ Domain Specificity: Optimized for Hall Effect Thruster fluid dynamics; may degrade outside this domain
- ๐ฌ Synthetic Data Foundation: Trained exclusively on synthetic data; outputs must be validated against experimental results
- ๐ No Published Benchmarks: Quantitative evaluation is pending
- ๐พ Computational Resources: 675B total parameters; requires a multi-GPU node for inference
- ๐ Long Context: Quality may degrade toward the upper end of the 256k window
๐ค Ethical Considerations
- ๐ Research Aid: Intended as a research and educational tool; not a substitute for expert judgment in critical applications
- โ Accuracy Validation: Users should validate model outputs against established literature and experimental results
- ๐ Responsible Use: Follow Mistral AI's usage guidelines
- ๐ Environmental Impact: Consider the computational cost of deploying a model of this size
๐ Acknowledgements
- ๐ข Mistral AI: For the Mistral Large 3 base model (Apache 2.0)
- ๐ Dataset: A Taylor, electrohydrodynamics dataset
- ๐ฌ Research Community: Hall Effect Thruster and plasma physics literature that informed the dataset
๐ License
- ๐ Model License: MIT
- ๐๏ธ Base Model: Mistral Large 3, Apache 2.0 (see Mistral AI's model card); original notice retained
- ๐ Dataset License: MIT
๐ฎ Future Work
- ๐ Benchmarks: Publish quantitative evaluation against held-out problem sets
- ๐ง Magnetohydrodynamics: Extend coverage to MHD modeling
- ๐ Boundary Conditions: Better handling of variable mass flow rates and complex boundary conditions
- ๐ฌ Plasma-Wall Interaction: Refinement of wall interaction reasoning
- ๐ผ๏ธ Diagram Input: Evaluate the base model's vision capability on thruster schematics
- ๐ Real-world Validation: Comparison against published test stand data
๐ Contact Information
๐จโ๐ Author: A Taylor
๐ Profile: hf.co/Taylor658
๐ง Support: Hugging Face discussions tab on this repository
๐๏ธ Base Model: Mistral Large 3
Built with โก for the aerospace and plasma physics research community using Mistral's latest Large 2411 model
'
'
Model tree for Taylor658/Electrohydrodynamics
Base model
mistralai/Mistral-Large-3-675B-Base-2512