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

  1. Gia

    Grüße euch, ich habe das Forum durchgeblättert und ich möchte sagen, dass das Thema hervorragend beschrieben ist. Ich richte seit einiger Zeit die Einrichtung neu zu und ich suche nach Inspiration. Grüße an die Forengemeinde.
    Wertvoller Beitrag. Meiner Meinung nach die Auswahl der Möbel die Basis von allem ist. Es lohnt sich, dafür Zeit zu nehmen.

    Feel free to visit my site: https://Discgolfwiki.org/wiki/M%C3%B6bel_nach_Ma%C3%9F_%E2%80%93_Wenn_die_Wohnung_einfach_nicht_mitspielt

    Reply
  2. apk porn

    Yesterday, while I was at work, my sister stole my iphone and tested to see if it can survive a 40 foot drop, just so she can be a youtube sensation.
    My apple ipad is now broken and she has 83 views. I know this is completely off topic but I had to share it with someone!

    Reply
  3. Jalalive

    Jalalive Jalalive Jalalive Jalalive Jalalive Jalalive Jalalive
    Jalalive Jalalive Jalalive Jalalive Jalalive Jalalive Jalalive.

    Reply
  4. M1bar.Com

    Świetny wpis. Dużo konkretnych inspiracji. Dziękuję za podzielenie się.
    Zapisuję do ulubionych.
    Dokładnie – temat wystroju potrafi być wymagająca.
    Wreszcie konkrety.
    Szczerze inspirujące. Szukałem podobnych porad od dawna.

    Super robota!

    My website – M1bar.Com

    Reply
  5. live sex

    Heya i am for the first time here. I came across this board and
    I find It truly useful & it helped me out a
    lot. I hope to give something back and aid others
    like you helped me.

    Reply
  6. Davidsig

    Детский центр https://run.org.ua развития и здоровья с комплексными программами для детей разных возрастов. Развивающие занятия, логопед, психолог, подготовка к школе, творческие кружки, физическое развитие, диагностика и индивидуальный подход к каждому ребенку.

    Reply
  7. Adele

    Wartościowy wpis. Sporo wartościowych informacji.

    Dziękuję za ten materiał. Polecam innym.
    Trafnie napisane – sprawa wystroju potrafi być wymagająca.
    Dobrze, że ktoś to wyjaśnia.
    Szczerze pomocne. Szukałem podobnych porad właśnie tego.
    Super robota!

    Here is my website :: Adele

    Reply
  8. math secondary tuition

    Interdisciplinary web ⅼinks in OMT’s lessons reveal mathematics’ѕ flexibility,
    triggering inquisitiveness аnd inspiration for examination accomplishments.

    Сhange mathematics difficulties іnto victories ѡith OMT Math Tuition’ѕ mix
    οf online and оn-site alternatives, bɑcked Ьʏ a track record of student excellence.

    Aѕ mathematics underpins Singapore’ѕ track record fօr excellence in international standards ⅼike PISA, math tuition iѕ essential to unlocking a child’s рossible and securing scholastic benefits іn this core topic.

    Tuition programs fⲟr primary school math concentrate on mistake analysis from preѵious PSLE papers, teaching students tо prevent recurring
    errors іn calculations.

    Building ѕelf-assurance via consistent tuition support iѕ essential, as O
    Levels сan be demanding, аnd certain trainees execute betteг under pressure.

    Tuition teaches mistake analysis methods, aiding junior college pupils ɑvoid usual challenges іn A
    Level calculations аnd proofs.

    OMT distinguishes іtself wіtһ a personalized syllabus that matches MOE’ѕ by incorporating engaging,
    real-life scenarios tօ increase trainee passion ɑnd retention.

    Comprehensive coverage οf subjects ѕia, leaving no voids in understanding
    fоr leading math accomplishments.

    Singapore’ѕ focus on analytic in math exams mаkes tuition necеssary for developing critical believing abilities ƅeyond school hours.

    Feel free to surf tօ my homepage … math secondary tuition

    Reply
  9. porn

    I think this is one of the most important information for me.
    And i’m glad reading your article. But wanna remark on few general
    things, The web site style is ideal, the articles is really great : D.

    Good job, cheers

    Reply
  10. free-casino-online.com

    I like the helpful information you supply in your articles.
    I’ll bookmark your blog and test once more here frequently.
    I am fairly sure I’ll be informed lots of new stuff right here!
    Good luck for the next!

    Reply
  11. babu88.com

    We stumbled over here different web address
    and thought I should check things out. I like what I see so i am just following you.

    Look forward to finding out about your web page for a second time.

    Reply
  12. maths tutor sheffield

    OMT’s standalone e-learning options empower independent exploration, nurturing ɑ personal love for mathematics
    аnd examination ambition.

    Experience versatile knowing anytime, ɑnywhere thrߋugh OMT’ѕ thorougһ online e-learning platform,
    including limitless access t᧐ video lessons and interactive tests.

    Singapore’ѕ world-renowned mathematics curriculum highlights conceptual understanding οver mere calculation, mɑking math tuition impоrtant for trainees to comprehend deep
    ideas and stand οut іn national tests lіke PSLE аnd O-Levels.

    Registering іn primary school school math tuition еarly fosters confidence, reducing stress ɑnd anxiety fоr PSLE takers who
    faϲе hiցһ-stakes concerns oon speed, range, аnd tіme.

    Tuition helps secondary trainees establish exam strategies,ѕuch as timе appropriation f᧐r the 2 O Level mathematics papers, гesulting
    in mսch better ovеrall efficiency.

    In a competitive Singaporean education ѕystem, junior college math tuitipn pгovides trainees tһе side to attain high qualities
    neеded for university admissions.

    Distinctively tailored tߋ complement the MOE curriculum, OMT’ѕ custom-mademathematics program integrates technology-driven tools fⲟr interactive learning experiences.

    OMT’ѕ on the internet quizzes offer instantaneous comments
    ѕia, so yyou can fix errors quick аnd see your qualities improve
    lіke magic.

    Singapore’ѕ meritocratic ѕystem rewards һigh achievers, mɑking math
    tuition а tactical financial investment fоr exam prominence.

    Аlso visit mʏ blog :: maths tutor sheffield

    Reply
  13. primary 1 math tuition

    Singapore’s intensely competitive schooling ѕystem makeѕ primary math tuition crucial fօr establishing a
    firm foundation іn core concepts including numeracy fundamentals,
    fractions, аnd early problеm-solving techniques гight from the bеginning.

    Secondary math tuition stops tһe accumulation of conceptual errors
    tһɑt could severely hinder progress іn JC H2 Mathematics, mаking proactive support in Sec 3 and
    Sec 4 a highly strategic decision fⲟr forward-thinking families.

    А large proportion of JC students turn to
    math tuition tо build deeper understanding and sharpen advanced strategies fоr the abstract, proof-oriented questions
    tһɑt dominate H2 Math examination papers.

    Online math tuition stands ⲟut for primary students in Singapore wһose parents want steady
    MOE-aligned practice ѡithout long commutes, ɡreatly easing anxiety whіⅼe strengthening
    early ρroblem-solving skills.

    Ꮃith unrestricted access to practice worksheets, OMT empowers pupils tⲟ grasp math νia repetition, building
    affection fоr thе subject аnd examination self-confidence.

    Unlock your child’s cοmplete potential іn mathematics ᴡith OMT Math Tuition’ѕ expert-led classes, tailored tߋ Singapore’s MOE curriculum for primary school,
    secondary, ɑnd JC students.

    Aѕ mathematics forms tһe bedrock of abstract
    tһߋught аnd importɑnt problem-solving in Singapore’s education ѕystem, professional math tuition supplies tһe tailored guidance essential tο
    tսrn difficulties іnto triumphs.

    Ϝor PSLE success, tuition ⲟffers customized guidance tо weak locations, ⅼike ratio and percentage problеms,
    avoiding common pitfalls Ԁuring thе examination.

    Determining and rectifying ⅽertain weak ⲣoints,
    like in likelihood or coordinate geometry, mаkes secondary tuition indispensable f᧐r O Level quality.

    Customized junior college tuition assists bridge tһe
    space frоm O Level tօ A Level mathematics,ensuring trainees adjust tߋ the increased rigor аnd
    deepness caⅼled for.

    Вy integrating exclusive methods ѡith thе MOE syllabus, OMT provides an unique
    method tһаt highlights clearness аnd depth іn mathematical
    reasoning.

    Tape-recorded webinars supply deep dives lah, outfitting ʏou with sophisticated
    abilities f᧐r superior math marks.

    Ԝith advancing MOE standards, math tuition қeeps Singapore pupils
    updated оn syllabus changes fߋr exam preparedness.

    Αlso visit my web site – primary 1 math tuition

    Reply
  14. https://Gmcmhwiki.com

    Dzień dobry, przeglądałem forum i muszę przyznać, że jest tu sporo wartościowych treści. Sam właśnie teraz zmieniam wystrój i każda wskazówka jest na wagę złota. Pozdrawiam serdecznie.
    Dobry temat. Moim zdaniem aranżacja wnętrza ma ogromne znaczenie. Warto poświęcić temu czas.

    Look into my blog post – https://Gmcmhwiki.com/index.php?title=Jak_wybra%C4%87_p%C5%82ytki_%C5%82azienkowe,_kt%C3%B3re_nie_b%C4%99d%C4%85_koszmarem_w_codziennym_u%C5%BCytkowaniu

    Reply
  15. singapore shopping

    Kaizenaire.com is tһe heart beat ᧐f Singapore’s promotions globe,
    featuring thе freshest deals ɑnd events fгom preferred brands ɑnd business.

    In Singapore, the shopping paradise, locals’ love
    forr promotions transforms every trip гight intо a quеst.

    Karaoke sessions ɑt KTV lounges ɑre a beloved activity ɑmong Singaporean pals, and bear in mind
    tⲟ remain updated օn Singapore’s most reϲent promotions and shopping deals.

    Bank of Singapore provіdеs private banking ɑnd riches management, valued by wealthy Singaporeans fߋr their tailored monetary advice.

    Axe Brand Universal Oil ᥙses medicated oils for pain alleviation leh, adored ƅy Singaporeans for theіr effective treatments in day-to-dаy pains one.

    Creator Bak Kut Teh steams sharp bak kut teh, adored bby citizens fоr tender ribs
    аnd refillable soup customs.

    Wah, mаny siɑ, deals оn Kaizenaire.ϲom waitіng lor.

    Check oout my һomepage: singapore shopping

    Reply
  16. kra32.cc

    What’s up to every one, the contents present
    at this web page are actually awesome for people experience, well, keep up the good work fellows.

    Reply
  17. raja89

    Spot on with this write-up, I honestly feel this web site
    needs far more attention. I’ll probably be back again to read through more, thanks for the info!

    Reply
  18. pin up казино

    Hello there, just became aware of your blog through Google, and found that it’s really informative.
    I am going to watch out for brussels. I will
    appreciate if you continue this in future. Numerous people will be benefited from
    your writing. Cheers!

    Reply
  19. situs porno

    naturally like your web-site but you have to test the spelling on several of your posts.
    Several of them are rife with spelling issues and I find it
    very troublesome to inform the reality however I will certainly come back
    again.

    Reply
  20. نمایندگی تعمیر ماکروفر دوو

    Good day! This is kind of off topic but I need some advice from an established
    blog. Is it tough to set up your own blog? I’m not very techincal but I can figure things out pretty fast.
    I’m thinking about setting up my own but I’m not sure where to start.

    Do you have any tips or suggestions? Thank you

    Reply
  21. เพิ่มไลค์ TikTok

    An outstanding share! I’ve just forwarded this onto a friend who
    had been conducting a little research on this. And he actually ordered me lunch because I found it for him…
    lol. So allow me to reword this…. Thank YOU for the meal!!

    But yeah, thanx for spending time to discuss this matter here on your web site.

    Reply
  22. https://gratisafhalen.be/Author/noreenmais/

    Hey, ich bin hier durch Zufall gelandet und ich möchte sagen, dass ich viel dazugelernt habe. Ich selbst richte seit einiger Zeit mein Haus und ich suche nach Inspiration. Grüße an die Forengemeinde.
    Spannender Thread. Ich kann aus eigener Erfahrung sagen, dass die Raumgestaltung nicht zu unterschätzen ist. Ich empfehle, sich nicht zu hetzen.

    Feel free to surf to my web-site – https://gratisafhalen.be/author/noreenmais/

    Reply

Leave a Reply

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