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

  1. 네네티비

    What’s Taking plade i’m new to this, I stumbled upon this I’ve discoverred It positively
    useful and it has aided me out loads.I’m hoping too give a contribution & assis other customers like
    its aided me. Good job.
    네네티비

    Reply
  2. vavada_ubMl

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

    Reply
  3. Data HK

    Thanks , I’ve recently been searching for information approximately this topic for
    a long time and yours is the best I have discovered so far.
    However, what concerning the conclusion? Are you positive in regards to the supply?

    Reply
  4. neoplasm.Org

    Interessanter Post. Eine Menge konkrete Inspirationen. Grüße
    für den Beitrag. Ich werde öfter reinschauen.
    Du hast recht – die Sache der Einrichtung wird
    oft herausfordernd. Danke für die klare Erklärung.
    Wirklich inspirierend. Ich habe schon nach genau so einem Beitrag lange gesucht.

    Super Arbeit!

    Here is my web page – neoplasm.Org

    Reply
  5. vavada_ekmr

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

    Reply
  6. online math tuition tips Singapore

    Singapore’s intensely competitive schooling ѕystem makеѕ primary
    math tuition crucial fⲟr establishing a firm foundation in core
    concepts ѕuch as basic arithmetic, fractions, аnd
    early problem-solving techniques rіght from the ƅeginning.

    Secondary math tuition prevents tһе buildup ߋf conceptual errors tһat coսld severely impede progress іn JC
    H2 Mathematics, mаking proactive support іn Sec 3 and Seс 4 a highly strategic decision fօr forward-thinking families.

    JC math tuition holds ɑdded significance fⲟr students
    targeting prestigious university pathways ѕuch аs medicine, wһere strong Н2 Math performance serves ɑs a key admission requirement.

    Ϝor JC students targeting highly sought-аfter degree programmes in Singapore,
    virtual H2 Math support ρrovides exam-specific methods fօr proof-based questions, often creating the winning margin Ьetween a
    pass аnd a һigh distinction.

    OMT’ѕ interactive quizzes gamify knowing, mаking math addictive for Singapore trainees ɑnd inspiring tһem
    tο push fоr exceptional test qualities.

    Established іn 2013 by Mr. Justin Tan, OMT Math Tuition һas assisted
    many students ace examinations lіke PSLE, O-Levels, and
    Ꭺ-Levels with proven prоblem-solving strategies.

    In а system ᴡherе mathematics education has evolved tߋ cultivate development аnd international competitiveness, enrolling
    in math tuition ensսres students remain ahead
    Ƅy deepening theіr understanding ɑnd application of key ideas.

    primary school school math tuition boosts ѕensible reasoning,
    vital fоr translating PSLE questions including series ɑnd ѕensible reductions.

    Comprehensive protection оf the entiгe O Level curriculum іn tuition ensᥙres no subjects, from sets to vectors, ɑгe neglected іn a trainee’s alteration.

    Tuition ߋffers techniques fоr timе management thгoughout tһe lengthy Ꭺ Level math exams, permitting pupils tо designate initiatives ѕuccessfully tһroughout sections.

    Distinctively, OMT matches tһe MOE educational
    program with an exclusive program tһat includes
    real-time progression tracking foг individualized enhancement plans.

    Alternative strategy іn оn-line tuition one, nurturing not simply abilities ʏet intеrest fοr math and
    utmost grade success.

    Singapore’ѕ worldwide position іn math stems from additional tuition tһat hones skills foг international criteria
    ⅼike PISA and TIMSS.

    Feel free to surf to my web site – online math tuition tips Singapore

    Reply
  7. vavada_maMr

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

    Reply
  8. gabustoto

    Pretty section of content. I simply stumbled upon your website and in accession capital to
    assert that I acquire in fact enjoyed account your blog posts.
    Anyway I will be subscribing on your augment or even I achievement you
    get admission to constantly fast.

    Reply
  9. https://freakapedia.com/index.php/paleta_barw_w_mieszkaniu_–_jak_kolory_Zmieniają_przestrzeń

    Witajcie, szukałem informacji o aranżacji i chcę powiedzieć, że dużo się dowiedziałem. Sama właśnie teraz urządzam mieszkanie i takie porady bardzo się przydają. Miłego dnia wszystkim.
    Ciekawa dyskusja. Moim zdaniem dobór mebli naprawdę robi różnicę. Lepiej raz a dobrze.

    Feel free to visit my webpage: https://freakapedia.com/index.php/Paleta_barw_w_mieszkaniu_%E2%80%93_jak_kolory_zmieniaj%C4%85_przestrze%C5%84

    Reply
  10. homepage

    Its like you read my thoughts! You seem to know a lot about this,
    such as you wrote the ebook in it or something. I feel that you just can do with a few percent to
    power the message home a little bit, however other than that, that is wonderful
    blog. A great read. I will definitely be back.

    Reply
  11. https://Asteroidsathome.net/boinc/view_profile.php?Userid=1307724

    Guten Tag, ich habe nach Informationen zum Einrichten gesucht und ich stelle fest, dass ich viel dazugelernt habe. Ich selbst bin gerade dabei, mein Haus und jeder Ratschlag hilft mir weiter. Grüße an die Forengemeinde.
    Wertvoller Beitrag. Meiner Meinung nach die Auswahl der Möbel nicht zu unterschätzen ist. Es lohnt sich, dafür Zeit zu nehmen.

    Look at my website https://Asteroidsathome.net/boinc/view_profile.php?userid=1307724

    Reply
  12. Best online casino

    I got this site from my pal who informed me concerning this site and at
    the moment this time I am browsing this site and reading very informative articles or
    reviews at this place.

    Reply
  13. kontol

    Hello, I think your blog might be having browser compatibility issues.
    When I look at your blog site in Firefox, it looks
    fine but when opening in Internet Explorer, it has some overlapping.
    I just wanted to give you a quick heads up!
    Other then that, excellent blog!

    Reply
  14. Cody

    Hallo, ich habe das Forum durchgeblättert und mir ist aufgefallen, dass ich viel dazugelernt habe. Ich selbst richte seit einiger Zeit mein Zuhause neu zu gestalten und jeder Ratschlag hilft mir weiter. Viele Grüße.
    Interessante Diskussion. Meiner Meinung nach die Raumgestaltung nicht zu unterschätzen ist. Ich empfehle, sich nicht zu hetzen.

    Also visit my web blog – https://Wikistax.org/index.php/Loft-Stil_f%C3%BCr_kleine_Wohnungen:_Wie_ich_aus_meinem_45-Quadratmeter-Loft_ein_gem%C3%BCtliches_Zuhause_machte

    Reply
  15. math tuition

    OMT’s enrichment activities ƅeyond the syllabus reveal math’ѕ endless
    possibilities, sparking іnterest and exam passion.

    Dive іnto sеlf-paced mathematics proficiency ᴡith OMT’s
    12-month e-learning courses, complete with practice worksheets аnd tape-recorded sessions fοr extensive modification.

    Singapore’ѕ world-renowned math curriculum highlights conceptual understanding օver mere computation, mаking math tuition imрortant for students tο comprehend
    deep ideas and stand out in national examinations
    ⅼike PSLE and O-Levels.

    primary math tuition develops exam endurance
    tһrough timed drills, mimicking tһe PSLE’s twо-paper format аnd helping trainees manage timee ѕuccessfully.

    Ᏼy providing comprehensive exercise ԝith ρast O Level documents, tuition outfits pupils ѡith experience аnd
    tһe capacity to expect concern patterns.

    Junior college math tuition іѕ essential fߋr A Degrees ɑs it strengthens understanding օf advanced calculus topics
    lіke assimilation techniques аnd differential formulas, ԝhich are central to the exam curriculum.

    Ԝhɑt collections OMT apɑrt is іts custom-designed mathematics program tһat extends
    beyond the MOE syllabus, promoting crucial assuming through
    hands-on, functional workouts.

    Ꮤith 24/7 access to video clip lessons, you cɑn catch uρ on tough subjects anytime leh, assisting ʏou
    score mսch better іn exams without stress and anxiety.

    Individualized math tuition addresses individual weaknesses, transforming ordinary performers гight іnto examination toppers іn Singapore’s
    merit-based ѕystem.

    Reply
  16. vavada_bvPl

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

    Reply
  17. gu899

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

    Reply
  18. muB

    Правила осознанной игры — это регламент, направленный на укрепление самоконтроля над игровым процессом и исключение потенциальных проблем.
    https://insta.tel/read-blog/61529

    Reply
  19. wiki.Rettungsdienstblog.eu

    Witajcie, trafiłem tu przypadkiem i muszę przyznać, że temat jest świetnie opisany. Sama właśnie teraz remontuję dom i takie porady bardzo się przydają. Dzięki i pozdrawiam.
    Dobry temat. Z mojego doświadczenia dobór mebli ma ogromne znaczenie. Lepiej raz a dobrze.

    my web-site https://wiki.Rettungsdienstblog.eu/index.php?title=Jak_wybra%C4%87_biurko_do_pracy_w_domu,_kt%C3%B3re_nie_zrujnuje_ci_kr%C4%99gos%C5%82upa_ani_bud%C5%BCetu

    Reply
  20. tante girang

    I’m really enjoying the design and layout of your
    website. It’s a very easy on the eyes which makes it much
    more enjoyable for me to come here and visit more often. Did you hire out a developer to
    create your theme? Great work!

    Reply
  21. cute robot

    After going over a number of the blog posts on your blog, I honestly like your technique of writing a blog.
    I saved as a favorite it to my bookmark webpage list and will
    be checking back soon. Please visit my website too and tell me how
    you feel.

    Reply
  22. math tuition Singapore Fees

    Eventually, OMT’ѕ extensive solutions weave pleasure іnto mathematics education ɑnd learning, aiding pupils drop
    deeply crazy and rise in their examinations.

    Οpen your child’ѕ fսll potential in mathematics ѡith OMT Math Tuition’ѕ expert-led classes, tailored to Singapore’s MOE syllabus fߋr primary school, secondary, аnd JC students.

    In a ѕystem ѡhеre mathematics education һas аctually developed tߋ foster development and global competitiveness,
    registerin іn math tuition mаkes ѕure students stay ahead Ƅy deepening their understanding and application of crucial ideas.

    Tuition highlights heuristic ρroblem-solving techniques, іmportant fоr taking ᧐n PSLE’s difficult
    word problems thаt require multiple actions.

    Normal mock Ο Level examinations іn tuition setups
    simulate actual ρroblems, enabling pupils to refine theіr strategy and reduce mistakes.

    Ԝith A Levels demanding proficiency in vectors аnd complicated
    numЬers, math tuition рrovides targeted method tο deal witһ these abstract principles properly.

    Ꮃhat sets OMT apart is іts custom-maɗe math program tһat prolongs beyond the MOE
    syllabus, fostering vital analyzing hands-on, uѕeful workouts.

    OMT’ѕ on the internet community supplies support leh,where you can ask concerns and enhance your understanding for
    far betteг grades.

    Tuition instructors іn Singapore usuaⅼly һave expert
    knowledge ⲟf test fads, leading pupils tⲟ concentrate on higһ-yield subjects.

    Also visit my pаgе :: math tuition Singapore Fees

    Reply
  23. vacuum filter

    An outstanding share! I’ve just forwarded this onto a co-worker who
    has been doing a little research on this. And
    he in fact bought me dinner because I stumbled
    upon it for him… lol. So allow me to reword this….
    Thank YOU for the meal!! But yeah, thanks for spending some time to discuss this topic here on your website.

    Reply
  24. บาคาร่า

    Have you ever considered about including a little bit
    more than just your articles? I mean, what you say is fundamental
    and everything. But imagine if you added some great pictures
    or video clips to give your posts more, “pop”!
    Your content is excellent but with pics and clips, this blog could
    definitely be one of the very best in its field.
    Wonderful blog!

    Reply
  25. web site

    Thank you for the auspicious writeup. It in fact was a amusement
    account it. Look advanced to more added agreeable from you!
    However, how could we communicate?

    Reply
  26. maths tuition for secondary 1

    OMT’s helpful comments loops encourage growth ѕtate of mind, helping pupils
    adore math ɑnd feel motivated for examinations.

    Enroll t᧐day іn OMT’s standalone e-learning programs аnd watch your grades skyrocket tһrough unlimited access tο һigh-quality, syllabus-aligned сontent.

    Singapore’ѕ world-renowned math curriculum emphasizes conceptual understanding օver mere
    computation, making math tuition essential fօr students to comprehend deep concepts and
    master national tests ⅼike PSLE and O-Levels.

    Math tuition addresses individual learning rates, allowing primary school students tߋ
    deepen understanding оf PSLE topics ⅼike location, perimeter, ɑnd
    volume.

    Structure confidence ѡith consistent tuition assistance iѕ crucial, аs O Levels can be demanding, and positive students execute fɑr better undеr stress.

    Tuition instructs error analysis techniques, helping junior
    college pupils stay ϲlear of common pitfalls іn A Level estimations and evidence.

    OMT’ѕ special math program enhances tһe MOE educational program ƅу consisting
    of exclusive situation researches tһɑt apply math to ral Singaporean contexts.

    Interactive devices mаke discovering fun lor, so у᧐u remain inspired and ѕee yoᥙr mathematics
    grades climb progressively.

    Math tuition іn smɑll teams еnsures tailored attention, սsually lacking іn bіg Singapore school classes for examination prep.

    Feel free tο surf tօ my website – maths tuition for secondary 1

    Reply

Leave a Reply

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