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

  1. https://msimarketingagency.com/some-people-excel-at-wande-streichen-and-some-dont-which-one-are-you/

    Servus, ich habe das Forum durchgeblättert und ich stelle fest, dass es hier viele wertvolle Inhalte gibt. Ich renoviere seit kurzem die Einrichtung neu zu und ich suche nach Inspiration. Grüße an die Forengemeinde.
    Wertvoller Beitrag. Meiner Meinung nach die Raumgestaltung nicht zu unterschätzen ist. Lieber einmal richtig als zweimal.

    My blog: https://msimarketingagency.com/some-people-excel-at-wande-streichen-and-some-dont-which-one-are-you/

    Reply
  2. ngentot adik

    I have read a few excellent stuff here. Definitely worth bookmarking for
    revisiting. I wonder how so much attempt you set to make the sort of excellent informative website.

    Reply
  3. Yolonda Cariaga

    I’m amazed, I must say. Seldom do I come across a blog that’s both educative and entertaining, and without a doubt, you have hit the nail on the head. The issue is an issue that too few men and women are speaking intelligently about. Now i’m very happy I stumbled across this in my hunt for something regarding this.

    Reply
  4. https://wiki.educom.Nu

    Naprawdę dobry artykuł. Mnóstwo wartościowych inspiracji.
    Dzięki że dzielisz się wiedzą. Zapisuję do ulubionych.

    Dokładnie – temat aranżacji potrafi być niełatwa.
    Wreszcie konkrety.
    Naprawdę przydatne. Szukałem takich informacji od dawna.
    Super robota!

    Here is my web page :: https://wiki.educom.Nu

    Reply
  5. chicken road

    Non commento spesso, ma dopo questa lettura devo assolutamente farti i complimenti.
    Il modo coinvolgente in cui tratti l’argomento mi ha colpito particolarmente.

    La cosa più preziosa è che si sente la passione che metti in ciò che
    scrivi. Hai sollevato punti su cui rifletterò a
    lungo.

    Spero vivamente di leggere presto altri tuoi articoli!
    Ho già condiviso l’articolo con tre amici che so che lo
    apprezzeranno.

    Reply
  6. New88

    I’m amazed, I must say. Seldom do I come across a blog that’s equally educative
    and engaging, and let me tell you, you have hit the nail on the head.
    The issue is something not enough people are speaking intelligently about.
    Now i’m very happy I found this in my search for something relating to this.

    Reply
  7. Delores

    Great post. I was checking constantly this blog and I’m impressed!
    Very useful info specifically the last part 🙂 I care for such info much.

    I was looking for this certain information for a very long time.
    Thank you and good luck.

    Reply
  8. 원주홈케어

    이런 정보 오랜만에 봤네요.
    원주출장안마에 대해 이렇게 자세히 정리해 주신
    분은 처음이에요.
    무엇보다 원주홈타이의 간편한 예약 시스템이 마음에 들었어요.

    원주힐링마사지 알아보시는 분들께 이 글을
    추천합니다.

    Feel free to visit my blog post 원주홈케어

    Reply
  9. rape on child

    Hi there are using WordPress for your blog platform?

    I’m new to the blog world but I’m trying to get started and create my own. Do you require any coding knowledge to make your own blog?
    Any help would be really appreciated!

    Reply
  10. Kelli

    Hey, ich habe das Forum durchgeblättert und mir ist aufgefallen, dass es hier viele wertvolle Inhalte gibt. Ich selbst renoviere seit kurzem mein Haus und solche Tipps sind echt hilfreich. Viele Grüße.
    Interessante Diskussion. Ich möchte hinzufügen, dass die richtige Farbgebung die Basis von allem ist. Ich empfehle, sich nicht zu hetzen.

    Reply
  11. Hot Math tutoring

    OMT’ѕ updated resources maintakn math fresh ɑnd exciting, inspiring Singapore students to ѡelcome
    it completely fߋr test victories.

    Established іn 2013 by Mr. Justin Tan, OMTMath Tuition has helped numerous students ace exams ⅼike PSLE, Ⲟ-Levels, ɑnd
    A-Levels ѡith proven analytical strategies.

    Τhе holistic Singapore Math method, ᴡhich develops multilayered analytical abilities, underscores ѡhy math tuition іs vital for mastering tthe curriculum аnd ɡetting ready for future careers.

    Ϝoг PSLE achievers, tuition offfers mock examinations ɑnd feedback,
    helping improve responses fօr maximum marks in both multiple-choice ɑnd open-ended areas.

    Provideɗ the hіgh risks of O Levels for secondary school progression in Singapore,
    math tuition mɑkes tһe most οf possibilities for leading qualities ɑnd preferred placements.

    Junior college math tuition cultivates іmportant thinking abilities neеded tо resolve non-routine issues thаt commnly ɑppear
    in A Level mathematics evaluations.

    OMT’ѕ custom-designed educational program distinctively boosts tһe MOE structure ƅy offering thematic devices tһаt attach math topics thгoughout primary tߋ JC levels.

    OMT’s օn the internet neighborhood оffers assistance leh, ѡhеre you
    ϲɑn ask inquiries аnd boost үour knowing for far better grades.

    Specialized math tuition fⲟr O-Levels helps Singapore
    secondary trainees distinguish tһemselves in a congested applicant
    pool.

    Ꮋere iѕ my blog: Hot Math tutoring

    Reply
  12. Jung

    Dzień dobry, natknąłem się na ten temat i chcę powiedzieć, że dużo się dowiedziałem. Sama od jakiegoś czasu zmieniam wystrój i takie porady bardzo się przydają. Pozdrawiam serdecznie.
    Wartościowy wątek. Dorzucę od siebie, że aranżacja wnętrza ma ogromne znaczenie. Polecam się nie spieszyć.

    Feel free to visit my web page – https://Adrovia.eu/index.php?page=item&id=42189

    Reply
  13. casino Booi

    Booi Casino — это мир ярких эмоций и огромных выигрышей, который ждет вас прямо сейчас. В нашем казино представлены все ваши любимые игры, от классических слотов до увлекательных live-игр с профессиональными крупье. Насыщенные акции и бонусы сделают ваше пребывание у нас еще более захватывающим.

    Что делает Booi Casino таким привлекательным для игроков? Мы гарантируем безопасность ваших данных и быстрые выплаты. Наши игроки ценят удобство использования платформы и отличное качество обслуживания.

    Когда начать свой путь в Booi Casino? Зарегистрируйтесь сейчас и получите сразу же доступ ко всем игровым возможностям и бонусам. Вот что вас ждет:

    Щедрые бонусы для новых игроков.
    Частые турниры с увлекательными призами.
    Мы всегда обновляем наш каталог игр, чтобы вам не было скучно.

    Каждый момент в Booi Casino — это возможность для большого выигрыша и незабываемых впечатлений. https://booi777glory.top/

    Reply
  14. FU99

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

    Reply
  15. Kunjungi

    I just like the valuable info you provide to your articles.
    I will bookmark your weblog and test again right here regularly.
    I am moderately certain I’ll be informed a lot of
    new stuff right right here! Good luck for the following!

    Reply
  16. online math tuition singapore

    Interdisciplinary web links in OMT’s lessons reveal mathematics’ѕ adaptability, stimulating
    curiosity ɑnd inspiration for exam accomplishments.

    Transform math obstacles іnto accomplishments ѡith OMT Math Tuition’ѕ blend of online and on-site alternatives, ƅacked by a performance history
    of trainee excellence.

    As mathematics underpins Singapore’ѕ credibility f᧐r quality inn international benchmarks ⅼike PISA,
    math tuition іs key to unlocking a child’s potential аnd securing scholastic advantages іn thiѕ core topic.

    Math tuition in primary school school bridges gaps іn class learning, guaranteeing trainees comprehend complex subjects ѕuch as geometry and іnformation analysis befoгe the PSLE.

    Routine simulated Ⲟ Level tests іn tuition settings replicate
    genuine problemѕ, allowing pupils tⲟ fіne-tune tһeir technique
    and reduce mistakes.

    Tuition instructs error analysis techniques, helping junior college
    pupils stay сlear of usual mistakes іn Ꭺ Level estimations and proofs.

    Τhe proprietary OMT curriculum uniquely improves
    tһe MOE curriculum ᴡith concentrated technique оn heuristic methods,
    preparing pupils mսch better for test challenges.

    Aesthetic aids ⅼike layouts helр envision problems lor,
    improving understanding аnd examination performance.

    Ιn Singapore, whеre math proficiency ⲟpens doors tо
    STEM careers, tuition іs important fօr solid exam
    structures.

    Visit my web site – online math tuition singapore

    Reply
  17. ngentot

    You are so interesting! I do not think I have read something
    like this before. So nice to find another person with a
    few genuine thoughts on this topic. Really.. thank you for starting this up.
    This website is one thing that’s needed on the web, someone with some originality!

    Reply
  18. JPM data file

    My programmer is trying to convince me to move to .net from PHP.
    I have always disliked the idea because of the costs. But he’s tryiong none the less.
    I’ve been using WordPress on a number of websites for about a year
    and am anxious about switching to another platform.
    I have heard excellent things about blogengine.net. Is there
    a way I can import all my wordpress content into it?
    Any help would be greatly appreciated!

    Reply
  19. ThomasAburo

    Ванная комната часто formulacomfort.ru недооценивается в плане дизайна, но именно здесь начинается и заканчивается наш день. Подвесная мебель экономит место и облегчает уборку. Большое зеркало с подсветкой не только функционально, но и зрительно увеличивает пространство. Теплые полы и Так комфортнее.

    Reply
  20. mopsw.Nic.in

    Witajcie, szukałem informacji o aranżacji i stwierdzam, że jest tu sporo wartościowych treści. Sam od jakiegoś czasu remontuję dom i każda wskazówka jest na wagę złota. Dzięki i pozdrawiam.
    Wartościowy wątek. Dorzucę od siebie, że aranżacja wnętrza ma ogromne znaczenie. Polecam się nie spieszyć.

    Stop by my web blog; https://Mopsw.NIC.In/sagarvidyakosh/index.php?title=Jak_urz%C4%85dzi%C4%87_ma%C5%82e_mieszkanie%3F_Postawi%C5%82am_na_meble_na_wymiar_i_nie_%C5%BCa%C5%82uj%C4%99

    Reply
  21. useful site

    Hi there! I’m at work browsing your blog from my new iphone!
    Just wanted to say I love reading your blog and look forward to all
    your posts! Keep up the great work!

    Reply
  22. Promos

    Kaizenaire.cоm uses Singapore’s best-curated collection օf shopping deals,
    promotions, ɑnd occasions developed to thrill customers.

    Ӏn Singapore, tһe shopping paradise, citizens’ love fоr
    promotions tᥙrns every getaway into a search.

    Participating іn ballet performznces motivates dance lovers іn Singapore, and remember tߋ stay upgraded on Singapore’ѕ lɑtest promotions аnd shopping deals.

    Workshop HHFZ develops bold, creative fashion tһings, loved ƅy imaginative Singaporeans
    f᧐r their one-᧐f-a-kind patterns and expressive designs.

    Ong Shunmugam reinterprets cheongsams ԝith modern spins mah, adored ƅy culturally honored Singaporeans fоr theiг blend ߋf tradition аnd advancement sia.

    Nation Foods refines chicken ɑnd meats, beloved
    for fresh materials in local markets.

    Aunties recognize lah, Kaizenaire.сom has the current deals leh.

    Feel free tο surf to my page Promos

    Reply
  23. Https://Www.3Dkvalq0Cx455Coz1C.Com/Wiki/Index.Php/AranżAcja_MałEgo_Mieszkania_–_Moje_Sprawdzone_Patenty_Na_KażDy_Centymetr

    Hej, natknąłem się na ten temat i muszę przyznać, że dużo się dowiedziałem. Sam właśnie teraz remontuję dom i szukam inspiracji. Dzięki i pozdrawiam.
    Dobry temat. Z mojego doświadczenia aranżacja wnętrza to podstawa. Warto poświęcić temu czas.

    Review my blog https://www.xn--3dkvalq0cx455coz1c.com/wiki/index.php/Aran%C5%BCacja_ma%C5%82ego_mieszkania_%E2%80%93_moje_sprawdzone_patenty_na_ka%C5%BCdy_centymetr

    Reply
  24. Mariana

    Dzień dobry, szukałem informacji o aranżacji i muszę przyznać, że dużo się dowiedziałem. Sama właśnie teraz zmieniam wystrój i każda wskazówka jest na wagę złota. Dzięki i pozdrawiam.
    Dobry temat. Moim zdaniem dobór mebli naprawdę robi różnicę. Polecam się nie spieszyć.

    Feel free to visit my web-site – https://Audiokniga-Online.ru/user/JannBavin6565/

    Reply
  25. website

    magnificent submit, very informative. I ponder why the opposite experts of this sector do not
    realize this. You must continue your writing. I’m sure, you have a great readers’ base already!

    Reply
  26. betting 1x2

    I just like the valuable information you supply for your articles.
    I’ll bookmark your blog and check again right here frequently.
    I am rather certain I will learn many new stuff proper here!
    Good luck for the next!

    Reply
  27. Paito Warna SDY 2026

    You really make it seem so easy with your presentation but I find this matter to be
    actually something that I think I would never understand.
    It seems too complex and extremely broad for me. I am looking forward for your next post,
    I’ll try to get the hang of it!

    Reply
  28. Sol

    Grüße euch, ich habe das Forum durchgeblättert und ich möchte sagen, dass es hier viele wertvolle Inhalte gibt. Ich selbst bin gerade dabei, mein Zuhause neu zu gestalten und jeder Ratschlag hilft mir weiter. Liebe Grüße in die Runde.
    Spannender Thread. Aus meiner Erfahrung die richtige Farbgebung wirklich einen Unterschied macht. Gut Ding will Weile haben.

    My page – https://Wikibuilding.org/index.php?title=Licht_Und_Raum:_Wie_Ich_Meine_Wohnung_Mit_Cleverer_Beleuchtung_Verwandelt_Habe

    Reply
  29. Live Draw Hongkong Lotto Online

    hey there and thank you for your info – I have definitely picked up something
    new from right here. I did however expertise several technical issues using this website,
    as I experienced to reload the website lots of times
    previous to I could get it to load properly.
    I had been wondering if your web 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.

    Well I’m adding this RSS to my e-mail and can look out for a lot more of your respective exciting content.
    Make sure you update this again soon.

    Reply

Leave a Reply

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