-
Notifications
You must be signed in to change notification settings - Fork 172
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
【hydra No.4】aneurysm #607
Merged
Merged
【hydra No.4】aneurysm #607
Changes from 3 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
为了在计算时,准确快速地访问具体变量的值,在这里指定网络模型的输入变量名是
("x", "y", "z")
,输出变量名是("u", "v", "w", "p")
,这些命名与后续代码保持一致。接着通过指定 MLP 的层数、神经元个数,就实例化出了一个拥有 6 层隐藏神经元,每层神经元数为 512 的神经网络模型
model
,使用silu
作为激活函数,并使用WeightNorm
权重归一化。3.2 方程构建
血管瘤模型涉及到 2 个方程,一是流体 N-S 方程,二是流量计算方程,因此使用 PaddleScience 内置的
NavierStokes
和NormalDotVec
即可。3.3 计算域构建
本问题的几何区域由 stl 文件指定,按照下方命令,下载并解压到
aneurysm/
文件夹下。注:数据集中的 stl 文件和测试集数据(使用OpenFOAM生成)均来自 Aneurysm - NVIDIA Modulus。
解压完毕之后,
aneurysm/stl
文件夹下即存放了计算域构建所需的 stl 几何文件。???+ warning "注意"
然后通过 PaddleScience 内置的 STL 几何类
Mesh
来读取、解析这些几何文件,并且通过布尔运算,组合出各个计算域,代码如下:在此之后可以对几何域进行缩放和平移,以缩放输入数据的坐标范围,加快模型训练收敛。
3.4 约束构建
本案例共涉及到 6 个约束,在具体约束构建之前,可以先构建数据读取配置,以便后续构建多个约束时复用该配置。
3.4.1 内部点约束
以作用在内部点上的
InteriorConstraint
为例,代码如下:InteriorConstraint
的第一个参数是方程(组)表达式,用于描述如何计算约束目标,此处填入在 3.2 方程构建 章节中实例化好的equation["NavierStokes"].equations
;第二个参数是约束变量的目标值,在本问题中希望与 N-S 方程相关的四个值
continuity
,momentum_x
,momentum_y
,momentum_z
均被优化至 0;第三个参数是约束方程作用的计算域,此处填入在 3.3 计算域构建 章节实例化好的
geom["interior_geo"]
即可;第四个参数是在计算域上的采样配置,此处设置
batch_size
为6000
。第五个参数是损失函数,此处选用常用的 MSE 函数,且
reduction
设置为"sum"
,即会将参与计算的所有数据点产生的损失项求和;第六个参数是约束条件的名字,需要给每一个约束条件命名,方便后续对其索引。此处命名为 "interior" 即可。
3.4.2 边界约束
接着需要对血管入口、出口、血管壁这三个表面施加约束,包括入口速度约束、出口压力约束、血管壁无滑移约束。
在
bc_inlet
约束中,入口处的流速满足从中心点开始向周围呈二次抛物线衰减,此处使用抛物线函数表示速度随着远离圆心而衰减,再将其作为BoundaryConstraint
的第二个参数(字典)的 value。血管出口、血管壁约束的构建方法类似,如下所示:
3.4.3 积分边界约束
对于血管入口下方的一段区域和出口区域(面),需额外施加流入和流出的流量约束,由于流量计算涉及到具体面积,因此需要使用离散积分的方式进行计算,这些过程已经内置在了
IntegralConstraint
这一约束条件中。如下所示:对应的流量计算公式:
其中$M$表示离散积分点个数,$s_i$表示某一个点的(近似)面积,$\mathbf{u_i}$表示某一个点的速度矢量,$\mathbf{n_i}$表示某一个点的外法向矢量。
除前面章节所述的共同参数外,此处额外增加了
integral_batch_size
参数,这表示用于离散积分的采样点数量,此处使用 310 个离散点来近似积分计算;同时指定损失函数为IntegralLoss
,表示计算损失所用的最终预测值由多个离散点近似积分,再与标签值计算损失。在微分方程约束、边界约束、初值约束构建完毕之后,以刚才的命名为关键字,封装到一个字典中,方便后续访问。
3.5 超参数设定
接下来需要指定训练轮数和学习率,此处按实验经验,使用 1500 轮训练轮数。
3.6 优化器构建
训练过程会调用优化器来更新模型参数,此处选择较为常用的
Adam
优化器,并配合使用机器学习中常用的 OneCycle 学习率调整策略。3.7 评估器构建
在训练过程中通常会按一定轮数间隔,用验证集(测试集)评估当前模型的训练情况,因此使用
ppsci.validate.GeometryValidator
构建评估器。3.8 可视化器构建
在模型评估时,如果评估结果是可以可视化的数据,可以选择合适的可视化器来对输出结果进行可视化。
本文中的输出数据是一个区域内的三维点集,因此只需要将评估的输出数据保存成 vtu格式 文件,最后用可视化软件打开查看即可。代码如下:
3.9 模型训练、评估与可视化
完成上述设置之后,只需要将上述实例化的对象按顺序传递给
ppsci.solver.Solver
,然后启动训练、评估、可视化。4. 完整代码
5. 结果展示
对于血管瘤测试集(共取 2,962,708 个三维坐标点进行测试),模型预测结果如下所示。
![aneurysm_compare.jpg](https://paddle-org.bj.bcebos.com/paddlescience/docs/Aneurysm/aneurysm_compare.png){ loading=lazy } 左侧为PaddleScience预测结果,中间为OpenFOAM求解器预测结果,右侧为两者的差值可以看到对于管壁压力$p(x,y,z)$,模型的预测结果和 OpenFOAM 结果基本一致。
6. 参考资料
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
额?请问是有什么问题
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
文档代码块没写对,我改好了你复制进去就行了(记得把开头和结尾的```去掉)