流体交互

本文主要讲解Interaction折叠栏中的内容。原文地址:https://docs.chaosgroup.com/display/PHX3MAX/Liquid+Interaction

主要内容

综述


!It is strongly recommended to avoid geometry that has cavities inside.强烈建议避免内部有空洞的几何形状。

These may cause jets and other undesired phenomena.这些可能会导致喷流和其他不受欢迎的现象。

This dialog is used to enable/disable the interaction with objects in the scene.此对话框用于启用/禁用场景中与对象的交互。

There are several different types of objects that may affect the simulation: Sources, Solid objects, Forces, etc.有几种不同类型的对象可能会影响仿真:源、实体对象、力等。

By default, all these scene elements will interact with the simulator unless otherwise specified by the Include/Exclude list.默认情况下,所有这些场景元素都将与模拟器交互,除非Include/Exclude列表另有规定。

If you want to disable the interaction you have to put the objects in the Exclude list.如果要禁用交互,必须将对象放入排除列表中。

If there are more objects that don't need to interact with the simulator, you may alternatively switch to the Include list mode.如果有更多的对象不需要与模拟器交互,您可以切换到Include列表模式。

In this mode you have to add to the list all the objects that you want to interact with the simulator.在此模式下,您必须将想要与模拟器交互的所有对象添加到列表中。

Since all forces affect the simulation by default, adding a force in your scene to be used by e.g. PFlow will automatically affect your simulation and this might not be desired.由于默认情况下所有的力都会影响仿真,所以在场景中添加一个力,例如PFlow将会自动影响仿真,这可能是不需要的。

In the Active Forces list you can check which 3ds Max forces interact with the simulator and you may exclude them if you wish so.在动力列表中,您可以检查哪些3ds Max力与模拟器交互,如果您愿意,您可以排除它们。

UI Path: ||Select Liquid Simulator | LiquidSim object|| > Modify panel > Interaction rollout

参数


Include/Exclude list | ielistiemode – Determines which objects will be ignored or processed by the simulation.确定仿真将忽略或处理哪些对象。

Use the radio buttons to switch between Include list and Exclude list. When Exclude list is active (the default), all objects in the scene will interact with the simulator unless they are added to the exclusion list. In Include list mode, no objects will interact with the simulator unless they are added to the list.

Exclude hidden objects | exclhidden – When enabled, the hidden objects will be excluded regardless of the list content.

Exclude Fire/Smoke Sims | exclfiresm  – When enabled, FireSmokeSim objects will not interact with the liquid simulator.当启用时,FireSmokeSim对象将不会与液体模拟器交互。

PhoenixFD插件流体模拟——UI布局【Interaction】详解的更多相关文章

  1. PhoenixFD插件流体模拟——UI布局【Simulation】详解

    前言 之前使用RealFlow做流体模拟,但是总得和3ds导来导去,略显麻烦,特意学习PhoenixFD插件,直接在3ds中进行流体模拟.若读者有更好的流体模拟方法,欢迎在评论区交流. 原文地址:ht ...

  2. PhoenixFD插件流体模拟——UI布局【Output】详解

    Liquid Output 流体输出  本文主要讲解Output折叠栏中的内容.原文地址:https://docs.chaosgroup.com/display/PHX3MAX/Liquid+Outp ...

  3. PhoenixFD插件流体模拟——UI布局【Splash | Mist】详解

    液体飞溅 | 水雾 本文主要讲解Splash | Mist折叠栏中的内容.原文地址:https://docs.chaosgroup.com/display/PHX3MAX/Liquid+Splash+ ...

  4. PhoenixFD插件流体模拟——UI布局【Foam】详解

    流体泡沫 本文主要讲解Foam折叠栏中的内容.原文地址:https://docs.chaosgroup.com/display/PHX3MAX/Liquid+Foam 主要内容 Overview 综述 ...

  5. PhoenixFD插件流体模拟——UI布局【Rendering】详解

    Liquid Rendering 流体渲染  本文主要讲解Rendering折叠栏中的内容.原文地址:https://docs.chaosgroup.com/display/PHX3MAX/Liqui ...

  6. PhoenixFD插件流体模拟——UI布局【Export】详解

    Liquid Export 流体导出 本文主要讲解Export折叠栏中的内容.原文地址:https://docs.chaosgroup.com/display/PHX3MAX/Liquid+Expor ...

  7. PhoenixFD插件流体模拟——UI布局【Preview】详解

    Liquid Preview 流体预览  本文主要讲解Preview折叠栏中的内容.原文地址:https://docs.chaosgroup.com/display/PHX3MAX/Liquid+Pr ...

  8. PhoenixFD插件流体模拟——UI布局【Input】详解

    Liquid Input 流体输入 本文主要讲解Input折叠栏中的内容.原文地址:https://docs.chaosgroup.com/display/PHX3MAX/Liquid+Input 主 ...

  9. PhoenixFD插件流体模拟——UI布局【Dynamics】详解

    流体动力学 本文主要讲解Dynamics折叠栏中的内容.原文地址:https://docs.chaosgroup.com/display/PHX3MAX/Liquid+Dynamics 主要内容 Ov ...

随机推荐

  1. MySQL中InnoDB锁不住表的原因

    MySQL中InnoDB锁不住表是因为如下两个参数的设置: mysql> show variables like '%timeout%'; +-------------------------- ...

  2. SQL脚本--总耗CPU最多的前个SQL --平均耗CPU最多的前个SQL

    --总耗CPU最多的前个SQL SELECT TOP 20 total_worker_time/1000 AS [总消耗CPU 时间(ms)],execution_count [运行次数], qs.t ...

  3. awesome资源包

    .NET资源包 https://github.com/jobbole/awesome-dotnet-cn java资源包 https://github.com/jobbole/awesome-java ...

  4. 课上补做:用C语言编程实现ls命令

    课上补做:用C语言编程实现ls命令 一.有关ls ls :用来打印当前目录或者制定目录的清单,显示出文件的一些信息等. ls -l:列出长数据串,包括文件的属性和权限等数据 ls -R:连同子目录一同 ...

  5. 事务回滚 SET XACT_ABORT ON

    USE tempdb IF OBJECT_ID ('dbo.test') IS NOT NULL DROP TABLE dbo.test GO CREATE TABLE dbo.test ( id I ...

  6. 所有设计复杂的ORM都是浮云

    很久没有写文章了. 一直很忙,不是很有时间整理. 今天主要是来吐槽下那些设计很复杂的ORM的. 项目做的越多,越觉得ORM这个东西设计的太复杂实在是没什么意义. 比较推崇Dapper这样比较简单,效率 ...

  7. OpenCV中Mat的使用

    一.数字图像存储概述 数字图像存储时,我们存储的是图像每个像素点的数值,对应的是一个数字矩阵. 二.Mat的存储 1.OpenCV1基于C接口定义的图像存储格式IplImage*,直接暴露内存,如果忘 ...

  8. uniapp仿h5+fire自定义事件触发监听

    仿h5+fire自定义事件触发监听 uni-app调用 event.js 源码记录(点击查看) 1.js下载地址 [event.js](https://ext.dcloud.net.cn/plugin ...

  9. SpringBoot+Mybatis实现关联查询

    SpringBoot+Mybatis实现关联查询 今天学习了下Mybatis的动态查询,然后接着上次的Demo改造了下实现表的关联查询. 话不多说,开始今天的小Demo 首先接着上次的项目 https ...

  10. 判断单向连通图(拓扑排序+tarjan缩点)

    题意: 给你一个有向图,如果对于图中的任意一对点u和v都有一条从u到v的路或从v到u的路,那么就输出’Yes’,否则输出’No’. 理解:当出现两个及以上入度为0的点(有一个就可能是别人到它,有两个的 ...