Skip to content

Commit c9363e9

Browse files
committedMar 4, 2023
Add more introduction
1 parent 56e2f60 commit c9363e9

File tree

7 files changed

+69
-30
lines changed

7 files changed

+69
-30
lines changed
 

‎.gitignore

-4
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,3 @@ dmypy.json
130130

131131
# vscode
132132
.vscode/
133-
134-
# some folders
135-
model/
136-
outs/

‎README.md

+61-26
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,21 @@
1-
# A Unified Hard-Constraint Framework for Solving Geometrically Complex PDEs
1+
# Unified Hard-Constraint Framework
22

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).
44

5-
## Requirements
5+
## Introduction
66

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**.
88

9-
```bash
10-
pip install -r requirements.txt
11-
```
9+
![](poster.png)
1210

13-
## Directory
11+
## Directory Tree
1412

15-
The following is a description of the contents of the directory
13+
This repository is organized as:
1614

1715
```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
2219
2320
├─data # data used in this paper
2421
│ case1_pack.txt # ground truth for "Simulation of a 2D battery pack (Heat Equation)"
@@ -31,7 +28,7 @@ code/
3128
│ case1.py # scripts for each experiment
3229
│ ...
3330
34-
├─configs # hyper-parameters for each experiment
31+
├─configs # configurations for each experiment
3532
│ │
3633
│ ├─case1
3734
│ │ ...
@@ -50,21 +47,51 @@ code/
5047
└─utils/ # some utils
5148
```
5249

53-
## Training & Evaluation
50+
## Getting Started
5451

55-
To train and evaluate the models in the paper, run this command:
52+
1. Install necessary dependencies:
5653

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*.
6066

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`.
6268

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:
6470

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)
6673

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+
![](problems.png)
89+
90+
**Results**:
91+
92+
<img src="results.png" style="zoom: 25%;" />
93+
94+
## Problem & Solution
6895

6996
1. Scalar Type Error
7097

@@ -78,7 +105,7 @@ To run the experiment of *Ablation Study: Hyper-parameters of Hardness*, you can
78105
RuntimeError: expected scalar type Float but found Double
79106
```
80107

81-
Please modify `ENV_PATH/lib/python3.9/site-packages/deepxde/model.py (line 228)`:
108+
Please modify `ENV_PATH/lib/python3.9/site-packages/deepxde/model.py (line 228)` from:
82109

83110
```python
84111
self.net.train(mode=training)
@@ -96,8 +123,16 @@ To run the experiment of *Ablation Study: Hyper-parameters of Hardness*, you can
96123
outputs_ = self.net(self.net.inputs.float()) # add this
97124
```
98125

126+
## Citation
99127

100-
## Contributing
128+
If you find this work is helpful for your research, please **cite us** with the following BibTeX entry:
101129

102-
Authors of *A Unified Hard-Constraint Framework for Solving Geometrically Complex PDEs*
130+
```
131+
@article{liu2022unified,
132+
title={A Unified Hard-Constraint Framework for Solving Geometrically Complex PDEs},
133+
author={Liu, Songming and Hao, Zhongkai and Ying, Chengyang and Su, Hang and Zhu, Jun and Cheng, Ze},
134+
journal={arXiv preprint arXiv:2210.03526},
135+
year={2022}
136+
}
137+
```
103138

‎model/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except this file
4+
!.gitignore

‎outs/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except this file
4+
!.gitignore

‎poster.png

752 KB
Loading

‎problems.png

58.3 KB
Loading

‎results.png

135 KB
Loading

0 commit comments

Comments
 (0)
Please sign in to comment.