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,972 thoughts on “Use a simple script to achieve powder pile | Maya nParticle简单脚本实现粒子堆叠

  1. sbobet

    SBOBET เว็บตรง 2026 ครบทุกความสนุกทั้ง แทงบอลออนไลน์ เดิมพันกีฬา คาสิโนสด และเกมสล็อต ระบบฝากถอนอัตโนมัติ ปลอดภัย จ่ายเงินจริง

    Reply
  2. Kareem

    OMT’s helpful feedback loopholes urge development ѕtate ߋf mind, assisting pupils love math and feel
    motivated f᧐r exams.

    Join our small-groᥙp on-site classes іn Singapore fοr personalized assistance іn а nurturing environment tһɑt constructs strong
    fundamental mathematics abilities.

    Ԝith mathematics integrated seamlessly іnto Singapore’s class settings tօ benefit both teachers
    ɑnd students, committed math tuition, Kareem, amplifies tһese gains bʏ offering customized
    support fօr sustained achievement.

    Wіth PSLE mathematics contributing considerably t᧐
    total ratings, tuition supplies additional resources ⅼike design responses for pattern recognition ɑnd algebraic thinking.

    Gіѵеn tһe higһ stakes of O Levels for secondary school development іn Singapore,
    math tuition mаkes tһe m᧐st оf opportunities fߋr top
    grades and wanted placements.

    Math tuition at thе junior college degree emphasizes theoretical clarity оveг rote memorization, essential fоr taқing on application-based Ꭺ Level concerns.

    Ꮤһat makes OMT remarkable iѕ its exclusive curriculum tһаt straightens witһ MOE ᴡhile presenting
    aesthetic aids ⅼike bar modeling іn innovative mеɑns for
    primary learners.

    Adaptive tests adapt tо your level lah,
    challenging you ideal tto gradually elevcate ʏoᥙr
    exam ratings.

    Math tuition develops resilience іn encountering challenging inquiries, а necessity foг thriving in Singapore’s hiɡh-pressure exam setting.

    Reply
  3. CH加密中心学院

    Hello, i read your blog occasionally and i own a similar one and i was just curious if you get a lot of spam comments? If so how do you prevent it, any plugin or anything you can recommend? I get so much lately it’s driving me insane so any assistance is very much appreciated.

    Reply
  4. play888new.com

    This is a very informative post about online casinos and betting platforms.
    I especially liked how it explains the importance of choosing a
    trusted site before signing up.

    Many players often ask where they can find reliable gaming platforms with fair odds and smooth payouts.
    From what I’ve seen, checking platforms like vn22vip helps users compare features, bonuses, and overall experience.

    Thanks for sharing these insights — they’re helpful for
    both beginners and experienced bettors.

    Reply
  5. submissions

    I have been surfing online greater than 3 hours lately, but I never discovered any fascinating article
    like yours. It is beautiful worth enough for me.
    In my opinion, if all web owners and bloggers made excellent content
    material as you probably did, the net will be much more useful than ever
    before.

    Reply
  6. Visit Website

    Hey I know this is off topic but I was wondering if you knew of any widgets I could add to my blog that
    automatically tweet my newest twitter updates. I’ve been looking for
    a plug-in like this for quite some time and was hoping maybe you would
    have some experience with something like
    this. Please let me know if you run into anything.
    I truly enjoy reading your blog and I look forward to your new updates.

    Reply
  7. РандX промокод

    Осознанный гемблинг — это метод, ориентированный на обеспечение самоконтроля над финансовыми расходами и понимание потенциальных проблем, связанных с игровой деятельностью, при параллельном упоминании на отдых как основную функцию участия.
    https://randx-super.ru/

    Reply
  8. hoki178daftar.click

    Hey! I just wanted to ask if you ever have any problems with hackers?
    My last blog (wordpress) was hacked and I ended up losing several weeks of hard work due to no data backup.
    Do you have any solutions to prevent hackers?

    Reply
  9. winna promo code

    Hmm is anyone else encountering problems with the pictures on this blog loading?
    I’m trying to determine if its a problem on my
    end or if it’s the blog. Any suggestions
    would be greatly appreciated.

    Reply
  10. Ранд X играть

    Разумное участие в играх — это практика, предназначенный на сохранение самоконтроля над своими решениями и осознание негативных последствий, сопутствующих с участием в ставках, при параллельном упоминании на отдых как базовую функцию участия.
    https://randx-super.ru/

    Reply
  11. hoki178daftar.online

    Have you ever considered about adding a little bit more than just your
    articles? I mean, what you say is fundamental and everything.
    Nevertheless think about if you added some great images
    or video clips to give your posts more, “pop”!
    Your content is excellent but with images and video clips, this
    website could undeniably be one of the best in its field.
    Terrific blog!

    Reply
  12. Visit Website

    Hi there, I think your site could be having internet browser compatibility problems.
    When I take a look at your blog in Safari, it looks fine however
    when opening in Internet Explorer, it has some overlapping issues.
    I just wanted to provide you with a quick heads up!

    Other than that, fantastic website!

    Reply
  13. https://cryptifyhub.com

    该平台由民间Web3爱好者自发组织和维护,品牌定位为“学院”,实则是一个带有工具导航功能的交流社群。它不隶属于任何企业、高校或政府机构,也没有商业变现的明确模式(目前以免费为主)。用户在其中可以看到社群成员分享的工具链接、项目分析、市场观点等。鉴于其民间属性,所有信息的准确性、时效性和安全性均需用户自行验证。

    Reply
  14. porn

    It’s in fact very complex in this busy life to listen news on Television, thus I just use internet for that reason, and take the newest information.

    Reply
  15. РУССКОЕ ПОРНО

    Вау!Этот сайт имеет самые безумные трах в жопу!

    Девушки берут так глубоко,а разрешение идеальное!

    Наконец-то нашёл место с настоящим анальным экшеном.
    Растяжка и идеальные кремпаи。

    Самая мощная коллекция анального порно,которую я встречал。Сцены дикие,а девушки выглядят супер сексуально。

    Эти anal sex porn videos за гранью。Брутальный и супер горячий。Стриминг работает супер плавно。

    Дикий анальный экшен!Тугие попки выебывают самым грязным способом。

    Настоятельно рекомендую!Полностью подсел

    My blog: РУССКОЕ ПОРНО

    Reply
  16. Azbongda.com

    Klasse Beitrag. Eine Menge praktische Anregungen. Danke fürs Teilen. Ich speichere mir die Seite
    ab.
    Stimme zu – die Sache der Einrichtung kann schwierig.
    Hilfreicher Ansatz.
    Echt praxisnah. Ich habe schon nach so etwas
    seit Wochen gesucht. Danke!

    Visit my blog – Azbongda.com

    Reply
  17. promotions

    Unlock the most effective off Singapore’s shopping at Kaizenaire.ⅽom, the leading internet site fοr promotions and deals.

    Singapore aas a customer’ѕ paradise delights Singaporeans ѡith continuous deals аnd promotions.

    Hosting motion picture marathons аt homе entertains cinephile Singaporeans, аnd remember tⲟ remɑin upgraded оn Singapore’ѕ neԝeѕt promotions and shopping deals.

    DBS, ɑ premier financial establishment іn Singapore,
    ρrovides ɑ variety of monetary solutions from electronic banking tⲟ wide range management, whіch Singaporeans love f᧐r tһeir smooth
    assimilation into daily life.

    Haidilao рrovides hotpot eating experiences ԝith exceptional solution mah, loved Ьy Singaporeans fⲟr their savory broths ɑnd
    interactive meals sia.

    Irvins Salted Egg crisps chips ɑnd treats witһ salty egg yolk, beloved
    ƅy Singaporeans for habit forming, umami surges.

    Wһy think twice mah, consistently check оut Kaizenaire.com for unequalled shopping discounts lah.

    Reply
  18. Wilbur

    Ciekawy wpis. Mnóstwo konkretnych wskazówek.
    Dzięki za podzielenie się. Czekam na więcej.
    Trafnie napisane – kwestia doboru mebli jest niełatwa.
    Dobrze, że ktoś to wyjaśnia.
    Szczerze pomocne. Szukałem czegoś takiego już jakiś czas.
    Dziękuję!

    Here is my page: Wilbur

    Reply
  19. блекспрут

    Thanks for the good writeup. It actually used to be a enjoyment account it.
    Look complicated to more delivered agreeable from you!
    By the way, how could we keep in touch?

    Reply
  20. hoki178-gf.com

    It’s the best time to make some plans for the long run and it’s time to be happy.

    I have learn this post and if I may I wish to recommend you few
    interesting issues or advice. Perhaps you could write subsequent articles relating
    to this article. I desire to learn more issues about it!

    Reply
  21. Buy Xanax Online

    I like the valuable info you provide in your articles.
    I’ll bookmark your blog and check again here frequently. I’m quite certain I’ll learn many new stuff right here!
    Good luck for the next!

    Reply
  22. www.green-collar.com

    Toller Inhalt. Eine Menge konkrete Hinweise. Vielen Dank für den Beitrag.
    Ich empfehle die Seite gerne weiter.
    Genau – die Sache der Möbelauswahl wird oft
    schwierig. Endlich mal Klartext.
    Sehr praxisnah. Ich suche schon nach genau so einem Beitrag seit
    Wochen gesucht. Viele Grüße!

    Visit my web page: http://www.green-collar.com

    Reply
  23. hoki178dde.store

    Hey There. I found your blog the usage of msn. That is a very smartly written article.
    I’ll be sure to bookmark it and come back to learn extra
    of your useful information. Thank you for the post. I will definitely return.

    Reply
  24. RandX бездепозитный бонус

    Безопасное увлечение ставками — это принцип, предназначенный на сохранение дисциплины над временем за игрой и осознание рисков, сопутствующих с игровой деятельностью, при параллельном упоминании на отдых как главную функцию участия.
    https://randx-super.ru/

    Reply
  25. restaurant floor plan

    Howdy would you mind letting me know which webhost you’re utilizing?
    I’ve loaded your blog in 3 different web browsers and I must say this
    blog loads a lot faster then most. Can you suggest a good
    hosting provider at a reasonable price? Thanks a lot, I appreciate it!

    My webpage :: restaurant floor plan

    Reply
  26. go 88

    Hi there, I do believe your site may be having browser compatibility problems.

    When I look at your site in Safari, it looks fine but when opening in I.E., it has some
    overlapping issues. I merely wanted to provide you
    with a quick heads up! Apart from that, wonderful blog!

    Reply
  27. best solar water heater

    Please let me know if you’re looking for a article author for your weblog.
    You have some really good articles and I think I would be a good
    asset. If you ever want to take some of the load off,
    I’d absolutely love to write some material for your blog in exchange for
    a link back to mine. Please blast me an email if interested.
    Thanks!

    Reply
  28. press pills

    Today, I went to the beachfront with my kids. I found a sea shell and
    gave it to my 4 year old daughter and said “You can hear the ocean if you put this to your ear.” She put the
    shell to her ear and screamed. There was a hermit crab inside and it pinched her ear.

    She never wants to go back! LoL I know this is completely off topic but I had to tell someone!

    Reply
  29. find here

    Everyone loves what you guys tend to be up too. Such clever work and reporting!
    Keep up the great works guys I’ve included you guys to my own blogroll.

    Reply
  30. u888

    Hi, Neat post. There is a problem with your website in internet explorer, could
    test this? IE still is the market leader and a huge element of folks will omit your wonderful writing due to this problem.

    Reply
  31. vn22vip.com

    This is a very informative post about online casinos and betting platforms.
    I especially liked how it explains the importance of choosing a
    licensed site before signing up.

    Many players often ask where they can find reliable
    gaming platforms with fair odds and smooth payouts.
    From what I’ve seen, checking platforms like vn22vip helps users compare features, bonuses,
    and overall experience.

    Thanks for sharing these insights — they’re helpful for both beginners and experienced bettors.

    Reply
  32. RandX играть

    Безопасное увлечение ставками — это практика, ориентированный на поддержание меры над своими решениями и осознание опасностей, связанных с участием в ставках, при параллельном упоминании на отдых как базовую функцию участия.
    https://randx-super.ru/

    Reply
  33. blazing wildz app

    Hallo daar, ondergetekende ben ondertussen behoorlijk tijdje bezig op deze digitale casino’s en eerlijk gezegd het lijkt mij
    toch verbazen op welke manier vlot de hele techniek
    vooruitgaat. Wat mij meteen is opgevallen, is dat het niveau van de apps
    vandaag de dag bijna beter functioneren dan de desktopversies, iets wat vroeger totaal geenszins voorstelbaar
    leek. Persoonlijk merk het feit dat het hebben van een goede
    verbinding het belangrijkste aspect is tijdens een potje blazing wildz app gezien het feit dat niets
    zo frustrerend is dan een storing midden in een goede bonusronde.

    Ook blijkt deze mening dat het niveau van de ondersteuning middels mobiel vaak
    veel vlotter antwoordt, wat geeft toch een veilig besef.

    Op dit moment ben ik eigenlijk benieuwd: ervaren jullie ook hetzelfde neiging
    naar native applicaties of misschien houden mensen eigenlijk
    op het gebruik van de webversie? En, wat vormt in jouw ogen het type doorslaggevende voordeel van mobiel deelnemen? Zelf hoor de reacties zeer zeker,
    succes vrienden!

    Reply
  34. Cooper

    Good day! This is my first comment here so I just wanted to give a quick shout out
    and tell you I truly enjoy reading through your posts.
    Can you suggest any other blogs/websites/forums that cover the
    same topics? Many thanks!

    Reply

Leave a Reply

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