Use a simple script to achieve powder pile | Maya nParticle简单脚本实现粒子堆叠


Youtube

Maya nParticle only calculates friction/stickness between particles and rigid bodies, not friction is encountered between particles. My guess is the algorithm complexity is too high. Anyway there is two relative easy ways to fake the effect, according to my searching.

想要用一个一包糖粒堆在物体(对又是它..)上的片段,发现Maya的nParticle只计算粒子和Rigid body的摩擦力不计算粒子和粒子间的摩擦力(想来是算法复杂度太高了),所以不管怎么搞最终都会摊成大烧饼,并且还会不停的抽搐.. 查了下大概有两个相对简单的方法

1. hold particles with a invisible rigid body. 2. Use RealFlow, which seems to have much more handy control over particles

I’m not happy with either. 1 is lame. 2 too much trouble, have to get hang of another environment. If I must do scripting, I choose to learn mel.

So the algorithm is:

It’s unlikely to mess with friction as I guessed above. I tried to modify per particle mass to let them stuck in the space. Yea that works but they tend to be headbutted by other particles and flying around.. for science. Later I googled out it’s possible to control force field per particle, with attribute named “Field name”_”option name”. That is to say adding attribute “gravityField1_magnitude” to nParticle2 will grant you control over per particle gravity from the field.

On creation:

[php]
global int $freezeCap=5; //be completely frozen after the cap rounds
global int $gravityPP=500;
global float $dragPP=100;
global float $accelerationTrigger=15; //the speed parameter to trigger ‘I’m free again!", which leads to free droping.
global int $n[100000]; //how many times have the particle been locked
global int $preVel[100000]; //velocity of last frame
global int $locked[100000];

nParticleShape4.dragField1_magnitude=0;
nParticleShape4.gravityField1_magnitude=$gravityPP;

global int $init=1;
if($init==1) {
int $i;
for($i=0;$i<100000;$i++) {
$n[$i]=0;
$locked[$i]=0;
}
$init=0;
}
[/php]

Before dynamics:
[php]
int $id=nParticleShape4.particleId;
float $vel=abs(nParticleShape4.velocity);

//print("nParticleShape2.velocity "+$nParticleShape2.velocity+"\n");

if($vel>$preVel[$id]+$accelerationTrigger) {
$n[$id]=0;
nParticleShape4.dragField1_magnitude=0; //If it’s free again, unlock and erase record
}
else {
$freezeFact=$n[$id]/$freezeCap; //progress bar of locking
if($freezeFact>1)
$freezeFact=1;
$n[$id]+=1;
nParticleShape4.dragField1_magnitude=$freezeFact*$dragPP; //increase drag force depending on locking level
nParticleShape4.gravityField1_magnitude=$gravityPP*(1-$freezeFact)*(1-$freezeFact); //parabola is better according to experiment
nParticleShape4.velocity=<<0,0,0>>;
}

$preVel[$id]=nParticleShape4.velocity;
[/php]

The script is not bad to me.. adjustable parameters are handy. Time efficiency is acceptable (as a former ACMer, I can confirm this is O(n), can’t be better). 20 million particles * 100 frames cost my i7 half an hour. Not perfect but enough for bragging.
1. 弄个透明的动画的rigid body来把粒子圈起来。 2. 用RealFlow,我只用RealFlow模拟水,但是显然那它对粒子的控制比Maya厉害得多。

两个方法我都不高兴,1太不屌爆,2太麻烦,要做很多熟悉另一个环境的工作,且要写脚本,所以不如来学下mel。下了本书叫Maya Python — for Games and Film,翻了一百页发现Python在Maya上基本是庞大的workflow中工程师为了其他人方便写的maya程序,并且也要有mel基础,不是我要的。

总之,思路是:

想要计算摩擦力显然是不现实的,说过了。我先通过改质量的途径让粒子满足条件时失去质量以停在原地不受重力影响,停是能停住但是会被别的particle撞飞.. 非常科学。后来查到可以使用 <力场名>_<属性名> 的方式控制Per Particle的行为,即,给nParticle2添加名为gravityField1_magnitude的attribute程序就会使用它来控制它受到重力场1的magnitude。然后通过DragField让particle稳定。我在注释里详细说。

粒子生成时脚本:

[php]
global int $freezeCap=5; //be completely frozen after the cap rounds
global int $gravityPP=500;
global float $dragPP=100;
global float $accelerationTrigger=15; //the speed parameter to trigger ‘I’m free again!", which leads to free droping.
global int $n[100000]; //how many times have the particle been locked
global int $preVel[100000]; //velocity of last frame
global int $locked[100000];

nParticleShape4.dragField1_magnitude=0;
nParticleShape4.gravityField1_magnitude=$gravityPP;

global int $init=1;
if($init==1) {
int $i;
for($i=0;$i<100000;$i++) {
$n[$i]=0;
$locked[$i]=0;
}
$init=0;
}
[/php]

动态前的脚本:

[php]
int $id=nParticleShape4.particleId;
float $vel=abs(nParticleShape4.velocity);

//print("nParticleShape2.velocity "+$nParticleShape2.velocity+"\n");

if($vel>$preVel[$id]+$accelerationTrigger) {
$n[$id]=0;
nParticleShape4.dragField1_magnitude=0; //If it’s free again, unlock and erase record
}
else {
$freezeFact=$n[$id]/$freezeCap; //progress bar of locking
if($freezeFact>1)
$freezeFact=1;
$n[$id]+=1;
nParticleShape4.dragField1_magnitude=$freezeFact*$dragPP; //increase drag force depending on locking level
nParticleShape4.gravityField1_magnitude=$gravityPP*(1-$freezeFact)*(1-$freezeFact); //parabola is better according to experiment
nParticleShape4.velocity=<<0,0,0>>;
}

$preVel[$id]=nParticleShape4.velocity;
[/php]

个人感觉这个还不错,有很多参数可以控制,效率也还行(前ACMer表示这个就是O(n)..不能再低了),200万粒子100帧i7跑半个小时。显然不完美,蒙人没问题。

10,971 thoughts on “Use a simple script to achieve powder pile | Maya nParticle简单脚本实现粒子堆叠

  1. online math tuition

    Thematic devices in OMT’ѕ curriculum link mathematics tо interests like innovation,
    firing սp intereѕt and drive for leading examination ratings.

    Founded іn 2013 by Mr. Justin Tan, OMT Math Tuition һas assisted numerous students ace exams ⅼike PSLE, O-Levels,
    аnd Ꭺ-Levels with tested analytical methods.

    Ԝith students in Singapore starting formal math education from the fiгѕt daү ɑnd facing hіgh-stakes
    evaluations, math tuition ⲟffers the additional edge
    required tߋ achieve leading efficiency іn tһis vital topic.

    Tuition in primary math is essential f᧐r PSLE preparation,
    aѕ it pгesents advanced techniques fοr managing non-routine issues
    tһat stump numerous candidates.

    By using considerable practice ѡith preѵious O Level papers, tuition gears ᥙp students witһ familiarity
    and thee capability to prepare for question patterns.

    Ᏼy supplying considerable technique ѡith pаst A Level
    exam documents, math tuition acquaints students ԝith question layouts аnd marking plans fߋr optimal performance.

    OMT differentiates іtself viɑ a personalized syllabus tһat matches MOE’s by including intеresting, real-life scenarios to boost student rate of
    inteгеst and retention.

    Interactive devices mɑke discovering enjoyable
    lor, ѕo you stay determined and watch your mathematics
    qualities climb steadily.

    Ӏn Singapore’s competitive education landscape, math tuition ɡives the extra sіde required fоr trainees tо master
    high-stakes exams ⅼike tһе PSLE, Ⲟ-Levels,
    and A-Levels.

    Μy homepage – online math tuition

    Reply
  2. vavada_ytMt

    Слушайте кто играет Вечно то лаги Денег слил на всяком говне Короче, единственное где не кидают — vavada официальный сайт Поддержка отвечает сразу В общем, смотрите сами по ссылке — вавада [url=https://wwwpsy.ru]вавада[/url] Только вавада реально рулит Перешлите тому кто тоже ищет нормальное казино

    Reply
  3. vavada_pgPl

    Ребята кто в теме То вообще доступ закрывают Искал долго, перепробовал кучу вариантов Короче, нашел наконец толковое казино — вавада с быстрыми выплатами Фриспины и акции каждый день В общем, сохраняйте себе — вавада казино онлайн официальный сайт [url=https://polezno-vsem.ru]вавада казино онлайн официальный сайт[/url] Не ведитесь на лохотроны Перешлите тому кто тоже ищет нормальное казино

    Reply
  4. 188v nhà cái

    Have you ever thought about creating an ebook or guest authoring on other sites?
    I have a blog based upon on the same topics you discuss and would really like to have you share
    some stories/information. I know my visitors would enjoy your work.
    If you are even remotely interested, feel free to send me an e-mail.

    Reply
  5. online math tuition Woodlands

    In a society ᴡhеre academic performance greɑtly
    shapes future opportunities, countless Singapore families ѕee еarly primary math tuition as a wise strategic investment fⲟr
    sustained success.

    Moгe than merely raising marks, secondary math tuition cultivates emotional resilience аnd siɡnificantly alleviate exam-гelated
    stress ⅾuring оne of the most intense stages of a teenager’ѕ academc journey.

    Ϝor JC students facing difficulties adjusting tߋ self-directed һigher education, ᧐r thoѕe targeting tһe
    jump from good to excellent, math tuition supplies the winning margin neеded to distinguish
    themseⅼves in Singapore’ѕ highly meritocratic
    post-secondary environment.

    Ϝor JC students targeting prestigious tertiary pathways іn Singapore, online math tuition ρrovides specialised techniques fοr application-heavy problems, often creating the winning margin Ьetween ɑ pass ɑnd a һigh distinction.

    Exploratory modules аt OMT encourage creative analytical, aiding
    pupils fіnd math’s virtuosity ɑnd feel influenced for examination accomplishments.

    Discover tһe benefit ߋf 24/7 online math tuition at OMT, ᴡhеre engaging resources
    mаke discovering fun and effective foг alⅼ levels.

    In Singapore’ѕ rigorous education ѕystem, wһere mathematics іs obligatory and takes in around 1600
    hօurs ߋf curriculum tіme in primary school and secondary schools, math tuition bеcomes neceѕsary to help students build a strong
    foundation fοr lifelong success.

    Tuition programs foг primary math concentrate օn mistake analysis frօm pɑst PSLE documents, teaching trainees to aνoid
    repeating errors in computations.

    Offered tһe high stakes оf O Levels fⲟr hiɡһ school development іn Singapore, math tuition tаkes full advantage оf opportunities fⲟr leading grades ɑnd preferred positionings.

    Math tuition аt thе junior college degree emphasizes theoretical clarity օver rote
    memorization, essential fоr tackling application-based Ꭺ Level inquiries.

    OMT’scustom-designed program uniquely sustains tһe MOE syllabus by
    stressing mistake analysis and modification аpproaches to minimize errors іn assessments.

    Ꭲhe self-paced е-learning system frοm OMT is incredibly versatile lor, mаking it ⅼess complkicated tо handle school ɑnd tuition for higher mathematics marks.

    Tuition emphasizes time management strategies, vital for alloting initiatives sensibly іn multi-ѕection Singapore
    math tests.

    Ꮮօok іnto my website – online math tuition Woodlands

    Reply
  6. u888

    Greetings from Colorado! I’m bored at work so I decided to browse your website on my iphone during lunch
    break. I enjoy the knowledge you provide here and
    can’t wait to take a look when I get home. I’m surprised
    at how fast your blog loaded on my cell phone ..

    I’m not even using WIFI, just 3G .. Anyhow, very good site!

    Reply
  7. about his

    hello there and thank you for your information – I have definitely picked up
    anything new from right here. I did however
    expertise a few technical issues using this web site, as I
    experienced to reload the website a lot of times previous to I could
    get it to load properly. I had been wondering if your hosting is OK?
    Not that I’m complaining, but sluggish loading
    instances times will very frequently affect your placement in google and can damage your high-quality score if advertising
    and marketing with Adwords. Anyway I’m adding this RSS to my e-mail and could look out for a lot more of
    your respective exciting content. Ensure that you update this
    again very soon.

    Reply
  8. Meri

    บทความนี้ อ่านแล้วได้ความรู้เพิ่ม
    ครับ
    ดิฉัน ไปอ่านเพิ่มเติมเกี่ยวกับ
    ข้อมูลเพิ่มเติม
    ซึ่งอยู่ที่ Meri
    น่าจะถูกใจใครหลายคน
    มีการยกตัวอย่างที่เข้าใจง่าย
    ขอบคุณที่แชร์ คอนเทนต์ดีๆ
    นี้
    และหวังว่าจะได้เห็นโพสต์แนวนี้อีก

    Reply
  9. vavada_sbMl

    Гемблеры отзовитесь То выплаты задерживают Нервов потратил — мама не горюй Короче, работает стабильно и честно — вавада казино зеркало Фриспины и акции каждый день В общем, жмите чтобы не потерять — vavada казино официальный сайт [url=https://theblackwellfirm.com]vavada казино официальный сайт[/url] Не ведитесь на лохотроны Перешлите тому кто тоже ищет нормальное казино

    Reply
  10. vavada_rwsr

    Слушайте кто играет Вечно то лаги Искал долго, перепробовал кучу вариантов Короче, нашел наконец толковое казино — vavada официальный сайт Поддержка отвечает сразу В общем, смотрите сами по ссылке — вавада онлайн [url=https://zloymedik.ru]вавада онлайн[/url] Только вавада реально рулит Перешлите тому кто тоже ищет нормальное казино

    Reply
  11. loli

    Thanks for any other informative blog. Where else may I am getting
    that type of information written in such an ideal approach?

    I have a challenge that I am simply now running on, and
    I’ve been on the glance out for such info.

    Reply
  12. vavada_bvmr

    Народ кто в теме Задолбался я уже искать нормальное казино Искал долго, перепробовал кучу вариантов Короче, единственное где не кидают — вавада казино онлайн лучший выбор Фриспины и акции каждый день В общем, там все подробности — вавада казино официальный сайт [url=https://partscore.ru]вавада казино официальный сайт[/url] Не ведитесь на лохотроны Перешлите тому кто тоже ищет нормальное казино

    Reply
  13. vavada_quMt

    Слушайте кто играет То выплаты задерживают Денег слил на всяком говне Короче, единственное где не кидают — vavada официальный сайт Поддержка отвечает сразу В общем, там все подробности — vavada [url=https://wwwpsy.ru]vavada[/url] Только вавада реально рулит Перешлите тому кто тоже ищет нормальное казино

    Reply
  14. Reubencresy

    Конторы дают возможность делать ставки на спортивные турниры.
    Крайне важно выбирать надёжных букмекеров, а также внимательно изучать коэффициенты до заключением ставки.
    Ставки способны стать интересным хобби, однако стоит придерживаться принципы осознанного подхода и ограничивать расходы.
    https://protivbed.ru/full-article/analiz-populyarnykh-strategiy-stavok-na-futbol-2125/

    Reply
  15. video porno

    I enjoy what you guys are up too. Such clever work
    and reporting! Keep up the very good works guys I’ve incorporated you guys to my personal
    blogroll.

    Reply
  16. https://rushhourgames.com/

    Very good blog! Do you have any recommendations for aspiring writers?
    I’m planning to start my own site soon but I’m a
    little lost on everything. Would you suggest starting with a
    free platform like WordPress or go for a paid option? There are so
    many choices out there that I’m totally confused ..
    Any tips? Cheers!

    Reply
  17. vavada_oxMr

    Слушайте кто играет Задолбался я уже искать нормальное казино Искал долго, перепробовал кучу вариантов Короче, работает стабильно и честно — вавада с быстрыми выплатами Всё летает как часы В общем, смотрите сами по ссылке — vavada [url=https://cleansheet.ru]vavada[/url] Не ведитесь на лохотроны Перешлите тому кто тоже ищет нормальное казино

    Reply
  18. 4777 বোনাস

    Hello very cool website!! Guy .. Beautiful .. Superb ..
    I will bookmark your site and take the feeds also?
    I am glad to find so many useful info here within the submit,
    we need work out more techniques on this regard,
    thank you for sharing. . . . . .

    Reply
  19. Santiago

    Klasse Beitrag. Reichlich nützliche Inspirationen. Danke dass du dein Wissen teilst.
    Ab jetzt lese ich hier öfter mit.
    Sehe ich genauso – die Frage der Raumgestaltung ist schwierig.
    Danke für die klare Erklärung.
    Aufrichtig nützlich. Ich habe schon nach genau so einem Beitrag lange
    gesucht. Klasse gemacht!

    my blog :: Santiago

    Reply
  20. porn

    Admiring the hard work you put into your blog
    and detailed information you offer. It’s great to come across a blog every once in a
    while that isn’t the same out of date rehashed information. Excellent read!
    I’ve bookmarked your site and I’m including your RSS feeds to my Google account.

    Reply
  21. true fortune casino_qyma

    True Fortune is tailored to players in the United Kingdom, with familiar payment methods and clear terms.
    The game library includes thousands of titles, from classic fruit machines to modern video slots.
    The promotions page lists reload bonuses, tournaments and cashback offers.
    true fortune sister sites [url=true-fortune.com]true fortune sister sites[/url]
    Verified players enjoy speedy payouts through their preferred method.
    Players in the United Kingdom can use built-in tools to keep their gambling under control.
    Players can enjoy the full game library on mobile without installing an app.

    Reply
  22. true_hrEn

    True Fortune casino is one of the most popular online casinos among players in the United Kingdom.

    The True Fortune casino features thousands of slots from leading providers like Pragmatic Play, NetEnt and Play’n GO.

    Frequent players climb a VIP ladder that unlocks better rewards and faster withdrawals.

    Minimum deposits are low, making it easy to get started.

    All games run on certified random number generators for provably fair results.

    Clear rules and a well-organised help centre keep everything straightforward.

    free spins promo codes for true fortune casino no deposit [url=http://www.true-fortune-casino31.com/free-spins]free spins promo codes for true fortune casino no deposit[/url]

    Reply
  23. gnosis bridge

    this article helped me bridge erc20 tokens to gnosis, glad i found it – [url=https://crypto-alerts.hashnode.dev/how-to-choose-the-correct-token-route-on-gnosis-bridge]gnosis bridge[/url]

    Reply
  24. Https://Www.Pt2You.Com.Au/

    Wirklich guter Artikel. Eine Menge wertvolle Anregungen. Großes Lob für
    den Beitrag. Ich speichere mir die Seite ab.
    Genau – der Bereich der Einrichtung ist schwierig. Gut, dass es jemand
    erklärt.
    Echt hilfreich. Ich war schon nach so etwas seit einiger Zeit gesucht.
    Super Arbeit!

    Feel free to surf to my blog post; https://Www.Pt2You.Com.Au/

    Reply
  25. Be5 Digital Marketing

    Howdy, I do believe your blog could possibly be having internet
    browser compatibility issues. Whenever I take a look at your site in Safari, it
    looks fine but when opening in IE, it’s got some overlapping issues.
    I merely wanted to provide you with a quick heads up!

    Aside from that, wonderful site!

    Reply
  26. demo aviator free

    I am really inspired with your writing abilities and also
    with the layout to your blog. Is that this a paid subject or
    did you customize it yourself? Either way stay up the nice high quality writing, it is rare to peer a nice weblog like this one
    these days..

    Reply
  27. true_stpt

    true fortune casino no deposit [url=https://www.true-fortune-casino14.com/no-deposit-bonus]true fortune casino no deposit[/url]
    True Fortune casino is one of the most popular online casinos among players in the United Kingdom.

    True Fortune offers an extensive range of slots covering every theme and volatility level.

    New players in the United Kingdom can claim a generous welcome bonus with free spins on their first deposit.

    Fast, transparent withdrawals mean winnings reach players without long delays.

    Players in the United Kingdom can use built-in tools to keep their gambling under control.

    A 24/7 support team helps players in the United Kingdom through live chat and email.

    Reply
  28. vavada_cssr

    Ребята кто в теме Вечно то лаги Нервов потратил — мама не горюй Короче, работает стабильно и честно — вавада казино онлайн лучший выбор Поддержка отвечает сразу В общем, сохраняйте себе — vavada официальный сайт [url=https://zloymedik.ru]vavada официальный сайт[/url] Только вавада реально рулит Перешлите тому кто тоже ищет нормальное казино

    Reply

Leave a Reply

Your email address will not be published. Required fields are marked *