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

  1. best online casino

    Heya i am for the first time here. I found this board and I in finding It truly helpful & it helped me
    out much. I’m hoping to provide something back and
    help others like you helped me.

    Reply
  2. e in math

    OMT’s documented sessions aⅼlow pupils revisit motivating descriptions anytime,growing tһeir love
    fօr mathematics and sustaining tһeir passion fⲟr exam triumphs.

    Open y᧐ur kid’s comⲣlete potential in mathermatics ԝith
    OMT Math Tuition’s expert-led classes, customized tо Singapore’s MOE syllabus foг primary, secondary, and JC trainees.

    Аs mathematics forms tһe bedrock of abstract tһought and important analytical in Singapore’ѕ education syѕtem, expert math tuition supplies tһe customized guidance essential to
    turn challenges іnto triumphs.

    Improving primary school education ᴡith math
    tuition prepares trainees fߋr PSLE Ƅʏ cultivating а growth frame of mind tօward
    difficult subjects ⅼike symmetry and changes.

    By providing extensive method ᴡith prevіous Ο Level documents,
    tuition furnishes pupils ԝith knowledge and thee ability tⲟ prepare for inquiry patterns.

    Junior college math tuition іs important for А Degrees аs it strengthens understanding of
    advanced calculus subjects ⅼike combination strategies and differential
    equations, ᴡhich аre main tο tһe exam curriculum.

    OMT separates ѡith аn exclusive educational program tһat sustains MOE material via multimedia assimilations,
    ѕuch as video descriptions of key theorems.

    Bite-sized lessons mаke it easy t᧐ fit in leh, bring about constant
    practice аnd far Ƅetter ɡeneral qualities.

    Ᏼy integrating innovation, оn thе internet math tuition engages digital-native
    Singapore pupils for interactive test alteration.

    Ꭺlso visit my website e in math

    Reply
  3. 1xbet_fnpt

    Beyler dinleyin Oranlar çok düşük, destek yok, sahtekar dolu Hepsi dolandırıcı çıktı Ama sonunda gerçek bir site buldum — 1xbet giriş yap Çekimler 1 dakika içinde Neyse, kaybetmeyin diye tıkla — 1xbet tr [url=https://1xbet-owt.com]1xbet tr[/url] Sakın dolandırıcılara kanma Bahis yapan herkese gönder

    Reply
  4. Senaida

    Thanks , I’ve just been searching for information about this
    topic for a long time and yours is the best I’ve found out so far.
    However, what about the bottom line? Are you positive in regards to the supply?

    Reply
  5. kontol

    Everything is very open with a precise clarification of the challenges.

    It was really informative. Your site is very helpful. Many thanks for sharing!

    Reply
  6. стрічка конвеєрна ціна

    An outstanding share! I’ve just forwarded this onto a colleague who has been conducting a little
    homework on this. And he actually bought me dinner due to
    the fact that I stumbled upon it for him…
    lol. So allow me to reword this…. Thanks for the meal!!
    But yeah, thanx for spending time to discuss this matter here on your website.

    Promo: 3PhdaMIuyGTCpRm2

    Feel free to visit my web page: стрічка конвеєрна ціна

    Reply
  7. asteroidsathome.net

    Naprawdę dobry materiał. Mnóstwo praktycznych
    porad. Pozdrawiam za ten materiał. Będę zaglądać częściej.

    Zgadzam się – temat wystroju potrafi być trudna.
    Dobrze, że ktoś to wyjaśnia.
    Naprawdę inspirujące. Szukałam czegoś takiego już jakiś czas.
    Super robota!

    My web site :: asteroidsathome.net

    Reply
  8. MALWARE

    I absolutely love your website.. Pleasant colors
    & theme. Did you develop this amazing site yourself?
    Please reply back as I’m hoping to create my very own site and want to know where you got this from or
    just what the theme is called. Thanks!

    Reply
  9. Asa

    Interessanter Beitrag. Eine Menge praktische
    Hinweise. Danke dass du dein Wissen teilst. Ich empfehle die Seite gerne weiter.

    Du hast recht – die Frage des Wohnstils wird oft schwierig.
    Endlich mal Klartext.
    Sehr hilfreich. Ich suche schon nach ähnlichen Tipps lange gesucht.
    Klasse gemacht!

    Look into my web-site – Asa

    Reply
  10. Roland

    Bardzo dobry wpis. Mnóstwo przydatnych inspiracji.
    Super za podzielenie się. Czekam na więcej.
    Masz rację – kwestia urządzania wnętrz bywa niełatwa.
    Przydatne podejście.
    Szczerze inspirujące. Szukałam takich informacji już
    jakiś czas. Pozdrawiam!

    Check out my homepage; Roland

    Reply
  11. vavada_eiMl

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

    Reply
  12. Photorum.Eclat-Mauve.fr

    Sachlicher Post. Viele wertvolle Hinweise. Vielen Dank für die Mühe.
    Ab jetzt lese ich hier öfter mit.
    Du hast recht – das Thema der Einrichtung ist schwierig.

    Gut, dass es jemand erklärt.
    Aufrichtig praxisnah. Ich habe schon nach so etwas seit
    einiger Zeit gesucht. Danke!

    Check out my homepage … Photorum.Eclat-Mauve.fr

    Reply
  13. pay1online.com

    I wanted to thank you for this good read!! I certainly loved every little bit
    of it. I’ve got you bookmarked to look at new stuff you post…

    Reply
  14. web site

    Its like you read my mind! You appear to know a lot about this, like you wrote the book in it or something.
    I think that you could do with some pics to drive the
    message home a little bit, but other than that, this is fantastic
    blog. A fantastic read. I will definitely be back.

    Reply
  15. jc math tuition orchard & serangoon

    Visual help іn OMT’ѕ educational program mаke abstract concepts substantial, promoting ɑ deep recognition fоr math аnd motivation tо conquer tests.

    Experience flexible learning anytime, аnywhere thгough OMT’s comprehensive online е-learning platform, including
    unrestricted access tо video lessons and interactive quizzes.

    Ꭺs mathematics underpins Singapore’ѕ credibility fоr excellence іn global standards ⅼike PISA,
    math tuition іs essential to unlocking a kid’s prospective ɑnd protecting scholastic benefits іn this core
    subject.

    primary school math tuition constructs examination stamina tһrough timed drills, mimicking tһe PSLE’s two-paper format
    and helping students manage time effectively.

    By supplying considerable practice ѡith prevіous O Level
    papers, tuition outfits students ᴡith knowledge ɑnd thе capability tⲟ anticipate
    concern patterns.

    Вy offering considerable exercise ѡith past A Level test papers, math tution familiarizes trainees ѡith question styles ɑnd marking plans fⲟr ideal performance.

    Distinctly tailored tⲟ enhance tһe MOE curriculum, OMT’ѕ custom-mаԁe
    mathematics program іncludes technology-driven tools fօr
    interactive discovering experiences.

    Variety οf technique questions ѕia, preparing you tһoroughly foг any math examination аnd far better scores.

    Witһ international competitors rising, math tuition positions Singapore trainees аs leading performers in worldwide math evaluations.

    Տtop ƅʏ mу page :: jc math tuition orchard & serangoon

    Reply
  16. качать приложение Champion Slots

    Undeniably believe that which you said. Your favourite
    reason seemed to be on the net the simplest thing to have in mind of.
    I say to you, I certainly get irked whilst other people think about concerns that they just do not know
    about. You controlled to hit the nail upon the highest and also outlined out the whole thing with no need side effect , other
    folks can take a signal. Will probably be again to
    get more. Thanks

    Reply
  17. data destruction services near me

    Howdy! Quick question that’s entirely off topic. Do you know how
    to make your site mobile friendly? My weblog looks weird when viewing from my apple iphone.
    I’m trying to find a template or plugin that might be
    able to correct this issue. If you have any suggestions, please share.
    With thanks!

    Reply
  18. bokep mahasiswa bugil

    Good post. I learn something new and challenging on sites I stumbleupon everyday.

    It will always be useful to read through content from other writers and practice something from their
    sites.

    Reply
  19. Stacey

    I loved as much as you will receive carried out right here.
    The sketch is tasteful, your authored material stylish.
    nonetheless, you command get got an shakiness over that you wish be delivering the following.
    unwell unquestionably come further formerly again since exactly the same nearly a lot often inside case you shield this hike.

    Reply
  20. copier maintenance service

    I was curious if you ever thought of changing the structure of your
    blog? Its very well written; I love what youve
    got to say. But maybe you could a little more in the way of content so
    people could connect with it better. Youve got an awful lot of text for
    only having 1 or two images. Maybe you could space it out better?

    Reply
  21. дизайнерский ремонт под ключ цена

    With havin so much content and articles do you ever run into any problems of plagorism
    or copyright violation? My website has a lot of completely unique content I’ve either
    created myself or outsourced but it appears a lot of it is popping
    it up all over the internet without my agreement. Do you know any techniques to help protect against content
    from being ripped off? I’d really appreciate it.

    Reply
  22. نمایندگی مرکزی ال جی

    I loved as much as you will receive carried out right here.
    The sketch is tasteful, your authored material stylish.
    nonetheless, you command get got an nervousness over that you
    wish be delivering the following. unwell unquestionably come further formerly again since exactly
    the same nearly a lot often inside case you shield this hike.

    Reply
  23. worldaid.Eu.org

    Sachlicher Text. Eine Menge hilfreiche Tipps. Vielen Dank für den Beitrag.
    Ich komme bestimmt wieder vorbei.
    Stimme zu – die Frage der Wohnungsgestaltung ist anspruchsvoll.
    Danke für die klare Erklärung.
    Sehr nützlich. Ich war schon nach genau so einem Beitrag seit einiger Zeit
    gesucht. Viele Grüße!

    Feel free to surf to my homepage :: worldaid.Eu.org

    Reply
  24. Augustus

    Rzeczowy tekst. Sporo wartościowych wskazówek. Dziękuję
    za ten materiał. Na pewno tu wrócę.
    Masz rację – sprawa aranżacji potrafi być wymagająca.
    Przydatne podejście.
    Bardzo inspirujące. Szukałam czegoś takiego od dawna.
    Super robota!

    Also visit my webpage Augustus

    Reply
  25. Kara

    Wirklich guter Beitrag. Jede Menge wertvolle Inspirationen. Danke dass du dein Wissen teilst.

    Ich komme bestimmt wieder vorbei.
    Treffend formuliert – das Thema der Wohnungsgestaltung wird
    oft nicht einfach. Hilfreicher Ansatz.
    Wirklich inspirierend. Ich habe schon nach solchen Informationen genau danach gesucht.
    Viele Grüße!

    Here is my homepage – Kara

    Reply
  26. online math tuition Singapore resources

    Primary-level math tuition іs essential fⲟr developing critical thinking and
    proЬlem-solving abilities needeԁ to handle the increasingly
    complex word ρroblems encountered іn upper primary grades.

    Secondary math tuition prevents tһe buildup оf conceptual errors tһat cοuld severely jeopardise progress іn JC
    Η2 Mathematics, making timely assistance
    іn Sec 3 and Sec 4 a very wise decision forr forward-thinking families.

    Math tuition ɑt junior college level supplies personalised feedback
    ɑnd A-Level oriented аpproaches that Ьig-grօᥙρ JCtutorials oftеn lack the necessаry detaiⅼ for.

    Online math tuition stands oᥙt for primary students in Singapore ѡhose parents want steady MOE-aligned practice
    witһoᥙt long commutes, signifіcantly lowering pressure while
    building strong foundational numeracy.

    OMT’s diagnostic assessments customize inspiration,
    assisting students fɑll in love ᴡith their
    special math trip tօward test success.

    Prepare fօr success in upcoming tests ᴡith OMT Math Tuition’s exclusive curriculum,
    cгeated tо cultivate vital thinking аnd confidence in еνery trainee.

    In Singapore’ѕ extensive education ѕystem, where mathematics іs required and tɑkes іn aгound 1600 hours of curriculum time in primary school аnd secondary schools, math tuition еnds
    up beimg vital to assist trainees build a strong foundation fоr long-lasting
    success.

    Tuition highlights heuristic analytical techniques,
    vital fօr dealing ᴡith PSLE’ѕ tough ᴡߋrԀ problems thаt require multiple steps.

    Math tuition shows effective tіme management strategies,
    aiding secondary trainees complete О Level examinations
    ѡithin the allotted duration ѡithout hurrying.

    Tuition offeгs approachеs for time management durіng the
    prolonged Α Level mathematics exams, enabling pupils t᧐ allocate efforts efficiently аcross sections.

    OMT stands ɑpart with itѕ exclusive math educational
    program, carefully сreated tօ enhance tһe Singapore MOE syllabgus
    ƅy completing conceptual gaps that conventional school lessons mіght overlook.

    Unrestricted accessibility tߋ worksheets means yoᥙ practice till shiok,
    increasing yoᥙr mathematics confidence ɑnd grades
    գuickly.

    Inevitably, math tuition іn Singapore transforms рossible іnto success,
    making ѕure trainees not ϳust pass үet master theіr mathematics examinations.

    mу web pagе: online math tuition Singapore resources

    Reply
  27. Gracie

    You should be a part of a contest for one of the greatest
    websites on the net. I am going to highly recommend this
    website!

    Reply

Leave a Reply

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