You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+61-26
Original file line number
Diff line number
Diff line change
@@ -1,24 +1,21 @@
1
-
# A Unified Hard-Constraint Framework for Solving Geometrically Complex PDEs
1
+
# Unified Hard-Constraint Framework
2
2
3
-
This repository is the official implementation of *A Unified Hard-Constraint Framework for Solving Geometrically Complex PDEs*.
3
+
This repository is the official implementation of the NeurIPS 2022 paper: [A Unified Hard-Constraint Framework for Solving Geometrically Complex PDEs](https://arxiv.org/abs/2210.03526).
4
4
5
-
## Requirements
5
+
## Introduction
6
6
7
-
To install requirements:
7
+
Physics-informed neural networks are suffering from the unbalanced competition in their loss function: $\mathcal{L}_{\mathrm{PDE}}$ vs. $\mathcal{L}_{\mathrm{BC}}$. Hard-constraint methods have been developed to alleviate such issues, which are, however, **limited to Dirichlet** boundary conditions. Our work provides a unified hard-constraint framework for the three most common types of boundary conditions: **Dirichlet, Neumann, and Robin**. The proposed method has achieved promising performance in **real-world geometrically complex problems**.
8
8
9
-
```bash
10
-
pip install -r requirements.txt
11
-
```
9
+

12
10
13
-
## Directory
11
+
## Directory Tree
14
12
15
-
The following is a description of the contents of the directory
13
+
This repository is organized as:
16
14
17
15
```bash
18
-
code/
19
-
│ .gitignore
20
-
│ README.md # description of this repository
21
-
│ requirements.txt
16
+
HardConstraint/
17
+
│ README.md
18
+
│ requirements.txt # required dependencies
22
19
│
23
20
├─data # data used in this paper
24
21
│ case1_pack.txt # ground truth for "Simulation of a 2D battery pack (Heat Equation)"
@@ -31,7 +28,7 @@ code/
31
28
│ case1.py # scripts for each experiment
32
29
│ ...
33
30
│
34
-
├─configs #hyper-parameters for each experiment
31
+
├─configs #configurations for each experiment
35
32
│ │
36
33
│ ├─case1
37
34
│ │ ...
@@ -50,21 +47,51 @@ code/
50
47
└─utils/ # some utils
51
48
```
52
49
53
-
## Training & Evaluation
50
+
## Getting Started
54
51
55
-
To train and evaluate the models in the paper, run this command:
52
+
1. Install necessary dependencies:
56
53
57
-
```bash
58
-
DDEBACKEND=pytorch python -m src.caseX
59
-
```
54
+
```bash
55
+
pip install -r requirements.txt
56
+
```
57
+
58
+
2. To train and evaluate the models in the paper, run this command:
59
+
60
+
```bash
61
+
# In the root directory of this repository
62
+
DDEBACKEND=pytorch python -m src.caseX
63
+
```
64
+
65
+
where X = 1, 2, 3, 4, corresponding to *Simulation of a 2D battery pack (Heat Equation)*, *Simulation of an Airfoil (Navier-Stokes Equations)*, *High-dimensional Heat Equation*, and *Ablation Study: Extra fields*.
60
66
61
-
where X = 1, 2, 3, 4, corresponding to *Simulation of a 2D battery pack (Heat Equation)*, *Simulation of an Airfoil (Navier-Stokes Equations)*, *High-dimensional Heat Equation*, and *Ablation Study: Extra fields*.
67
+
If you want to run different models (i.e., the proposed model and baselines), please modify the global variables in `src/caseX.py`.
62
68
63
-
If you want to test different models (i.e., the proposed model and baselines), please modify the global variables in `src/caseX.py`.
69
+
To run the experiment of *Ablation Study: Hyper-parameters of Hardness*, you can change the value of:
64
70
65
-
To run the experiment of *Ablation Study: Hyper-parameters of Hardness*, you can change the value of $\beta_s$ in `src/HC/l_functions.py` (line 31, default: $\beta_s=5$) and $\beta_t$ in `src/configs/case1/hc.py` (line 127, default: $\beta_t=10$, case 1) or `src/configs/case3/hc.py` (line 56, default: $\beta_t=10$, case 3).
71
+
- $\beta_s$ in `src/HC/l_functions.py` (line 31, default: $\beta_s=5$)
72
+
- $\beta_t$ in `src/configs/case1/hc.py` (line 127, default: $\beta_t=10$, case 1) or `src/configs/case3/hc.py` (line 56, default: $\beta_t=10$, case 3)
66
73
67
-
## Possible Problems & Solutions
74
+
## Experimental Results
75
+
76
+
**Settings**:
77
+
78
+
- Evaluation Metrics: Mean Absolute Error (**MAE**), Mean Absolute Percentage Error (**MAPE**), and Weighted Mean Absolute Percentage Error (**WMAPE**)
79
+
- Baselines:
80
+
-**PINN**: vanilla PINN
81
+
-**PINN-LA****& PINN-LA-2**: PINN with learning rate annealing
82
+
-**xPINN****& FBPINN**: PINN with domain decomposition for geometrically complex PDEs
83
+
-**PFNN****& PFNN-2**: hard-constraint methods based on the variational formulation of PDEs
84
+
-**HC**: our proposed method
85
+
86
+
**Problems**: a 2D battery pack, an airfoil, a high-dimensional heat equation
87
+
88
+

89
+
90
+
**Results**:
91
+
92
+
<imgsrc="results.png"style="zoom: 25%;" />
93
+
94
+
## Problem & Solution
68
95
69
96
1. Scalar Type Error
70
97
@@ -78,7 +105,7 @@ To run the experiment of *Ablation Study: Hyper-parameters of Hardness*, you can
78
105
RuntimeError: expected scalar type Float but found Double
0 commit comments