File tree Expand file tree Collapse file tree 4 files changed +4
-1
lines changed Expand file tree Collapse file tree 4 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ PaddleScience 是一个基于深度学习框架 PaddlePaddle 开发的科学计
36
36
| 微分方程 | [ 分数阶微分方程] ( https://github.com/PaddlePaddle/PaddleScience/blob/develop/examples/fpde/fractional_poisson_2d.py ) | 机理驱动 | MLP | 无监督学习 | - | - |
37
37
| 光孤子 | [ Optical soliton] ( https://paddlescience-docs.readthedocs.io/zh/latest/zh/examples/nlsmb ) | 机理驱动 | MLP | 无监督学习 | - | [ Paper] ( https://doi.org/10.1007/s11071-023-08824-w ) |
38
38
| 光纤怪波 | [ Optical rogue wave] ( https://paddlescience-docs.readthedocs.io/zh/latest/zh/examples/nlsmb ) | 机理驱动 | MLP | 无监督学习 | - | [ Paper] ( https://doi.org/10.1007/s11071-023-08824-w ) |
39
+ | 相场方程 | [ Allen-Cahn] ( https://paddlescience-docs.readthedocs.io/zh/latest/zh/examples/allen_cahn ) | 机理驱动 | MLP | 无监督学习 | - | |
39
40
40
41
<br >
41
42
<p align =" center " ><b >技术科学(AI for Technology)</b ></p >
Original file line number Diff line number Diff line change 81
81
| 微分方程 | [ 分数阶微分方程] ( https://github.com/PaddlePaddle/PaddleScience/blob/develop/examples/fpde/fractional_poisson_2d.py ) | 机理驱动 | MLP | 无监督学习 | - | - |
82
82
| 光孤子 | [ Optical soliton] ( ./zh/examples/nlsmb.md ) | 机理驱动 | MLP | 无监督学习 | - | [ Paper] ( https://doi.org/10.1007/s11071-023-08824-w ) |
83
83
| 光纤怪波 | [ Optical rogue wave] ( ./zh/examples/nlsmb.md ) | 机理驱动 | MLP | 无监督学习 | - | [ Paper] ( https://doi.org/10.1007/s11071-023-08824-w ) |
84
+ | 相场方程 | [ Allen-Cahn] ( ./zh/examples/allen_cahn.md ) | 机理驱动 | MLP | 无监督学习 | - | |
84
85
85
86
<br >
86
87
<p align =" center " ><b >技术科学(AI for Technology)</b ></p >
Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ def train(cfg: DictConfig):
66
66
# set equation
67
67
equation = {"AllenCahn" : ppsci .equation .AllenCahn (0.01 ** 2 )}
68
68
69
+ # set constraint
69
70
data = sio .loadmat (cfg .DATA_PATH )
70
71
u_ref = data ["usol" ].astype (dtype ) # (nt, nx)
71
72
t_star = data ["t" ].flatten ().astype (dtype ) # [nt, ]
@@ -79,7 +80,6 @@ def train(cfg: DictConfig):
79
80
x0 = x_star [0 ] # float
80
81
x1 = x_star [- 1 ] # float
81
82
82
- # set constraint
83
83
def gen_input_batch ():
84
84
tx = np .random .uniform (
85
85
[t0 , x0 ],
Original file line number Diff line number Diff line change 47
47
- Rossler_transform_physx : zh/examples/rossler.md
48
48
- Volterra_IDE : zh/examples/volterra_ide.md
49
49
- NLSMB : zh/examples/nlsmb.md
50
+ - AllenCahn : zh/examples/allen_cahn.md
50
51
- 技术科学(AI for Technology) :
51
52
- 流体 :
52
53
- AMGNet : zh/examples/amgnet.md
You can’t perform that action at this time.
0 commit comments