Initial commit

This commit is contained in:
ChuXun
2026-02-16 21:52:26 +08:00
commit 18ce59bec7
334 changed files with 35333 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
DIAGRAM_MACRO_LOGIC
```mermaid
graph TD
subgraph StageA [Step 1: Data Processing]
A1[OCV Fitting]
end
subgraph StageB [Step 2: Core Modeling]
B1[Power Map]
B2[CPL Closure]
B3[Thermal Dynamics]
end
subgraph StageC [Step 3: Application]
C1[Scenario Analysis]
C2[Uncertainty Quantification]
C3[Aging Forecast]
end
StageA --> StageB
StageB --> StageC
```
DIAGRAM_SYSTEM_INTERACTION
```mermaid
flowchart LR
I1[Screen Brightness L(t)] --> BS[Battery System]
I2[CPU Load C(t)] --> BS
I3[Network Activity N(t)] --> BS
I4[GPS Usage G(t)] --> BS
I5[Ambient Temperature T_a(t)] --> BS
```
DIAGRAM_CPL_LOOP
```mermaid
flowchart LR
P[Total Power P_tot] --> I[Current I (CPL Solve)]
I --> V[Terminal Voltage V_term]
V --> P
```