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

  1. Coopspace.Online

    Bardzo dobry materiał. Sporo konkretnych porad.
    Super że dzielisz się wiedzą. Na pewno tu
    wrócę.
    Zgadzam się – sprawa wystroju bywa niełatwa.
    Dobrze, że ktoś to wyjaśnia.
    Naprawdę pomocne. Szukałam podobnych porad już jakiś czas.
    Pozdrawiam!

    my web-site: Coopspace.Online

    Reply
  2. Kuniunet.com

    Simply desire to say your article is as astonishing.

    The clarity for your put up is just excellent and i could think you are a professional on this
    subject. Well with your permission let me to seize
    your feed to stay updated with impending post. Thanks a million and please continue
    the gratifying work.

    Reply
  3. toket

    whoah this blog is wonderful i really like studying your posts.
    Stay up the great work! You recognize, a lot of people are searching round for this information, you could help
    them greatly.

    Reply
  4. https://msimarketingagency.com/---/

    Ідеальна спідниця — це баланс красивої посадки, комфорту та вашого стилю.
    Міні додає образу сміливості, міді легко адаптується до різних подій, а максі створює елегантний силует.
    Висока посадка візуально подовжує ноги, вертикальні деталі додають стрункості, а
    правильно підібраний фасон допомагає гармонізувати пропорції.
    Обирайте модель, яка не обмежує рухів і легко поєднується з улюбленими речами.

    Reply
  5. Recommended Article

    What’s up every one, here every one is sharing these kinds of knowledge, so it’s nice
    to read this blog, and I used to pay a quick visit this
    blog all the time.

    Reply
  6. h2 math tuition

    Consistent primary math tuition helps ʏoung learners overcome
    common challenges ⅼike the model method and rapid calculation skills, ѡhich arе heavily tested in school examinations.

    Secondary math tuition stops tһe accumulation ߋf conceptual errors that cօuld severely hinder
    progress in JC Η2 Mathematics, mɑking earlү targeted intervention in Ꮪec 3 and Sеϲ 4 a
    very wise decision for forward-thinking families.

    Math tuition ɑt junior college level supplies personalised
    feedback аnd precision-focused techniques tһat ⅼarge lecture-style
    JC classes гarely offer іn sufficient depth.

    Ϝor JC students targeting competitive university courses іn Singapore,
    virtual H2 Math support pгovides specialised techniques fߋr
    application-heavy probⅼems, often creating thе winning margin Ƅetween a pass and
    а hіgh distinction.

    Flexible pacing іn OMT’ѕ e-learning ⅼets students aрpreciate math triumphes, developing deep love аnd inspiration foг test performance.

    Prepare for success іn upcoming examinations ᴡith OMT Math Tuition’ѕ exclusive curriculum, ⅽreated tօ
    promote imρortant thinking ɑnd confidence in evеry trainee.

    With students іn Singapore starting official math education fгom day one
    and dealing with high-stakes assessments, math tuition ᥙses tһe
    additional edge needеd tο attain tоp performance in this essential subject.

    Wіth PSLE mathematics evolving tο consist оf mmore interdisciplinary
    aspects, tuition ҝeeps trainees upgraded ߋn integrated concerns blending math witһ science contexts.

    Ꮐiven the high risks оf O Levels for hіgh school progression іn Singapore, math
    tuition mɑkes Ьeѕt use off possibilities for tⲟp grades and desired placements.

    Tuition ѕhows mistake evaluation methods, aiding junior college students аvoid common mistakes
    іn A Level calculations ɑnd proofs.

    OMT’ѕ customized syllabus distinctly straightens ѡith MOE framework Ьy offering connecting components fօr smooth transitions
    Ьetween primary, secondary, аnd JC mathematics.

    Videotaped webinars supply deep dives lah, equipping ʏou with advanced abilities
    fօr exceptional mathematics marks.

    Ultimately,math tuition in Singapore changes potential rіght into accomplishment, guaranteeing trainees not just pass Ьut succeed іn theіr math
    examinations.

    my web ρage h2 math tuition

    Reply
  7. Update Link

    This is a really good tip especially to those fresh
    to the blogosphere. Simple but very accurate info… Many thanks for sharing this one.
    A must read post!

    Reply
  8. Click to Read More

    Whoa! This blog looks just like my old one! It’s on a entirely different topic but
    it has pretty much the same page layout and design. Great choice of colors!

    Reply
  9. Java Burn

    Thanks for this helpful article! I’ve been looking for natural
    ways to support balanced daily wellness and my overall wellness and this gave me some useful ideas to think about.
    Appreciate you sharing it.

    Reply
  10. Click Guide Site

    I have been exploring for a little for any high quality articles
    or weblog posts on this sort of space . Exploring in Yahoo I ultimately stumbled upon this
    site. Studying this info So i’m happy to convey that I’ve an incredibly
    excellent uncanny feeling I discovered just what I needed.
    I such a lot definitely will make certain to don?t forget
    this web site and give it a glance on a continuing basis.

    Reply
  11. 79招生网

    My spouse and I stumbled over here by a different web page and thought I should check things out.
    I like what I see so now i’m following you.
    Look forward to looking over your web page again.

    Reply
  12. tr88

    I’m gone to inform my little brother, that he should also pay a
    quick visit this weblog on regular basis to take
    updated from most recent information.

    Reply
  13. Click for Strategy

    Hi, i believe that i saw you visited my blog so i came to
    go back the prefer?.I am trying to in finding things to enhance my web site!I assume its good enough to make use of some of your ideas!!

    Reply
  14. 100zl bez depozytu za rejestracje

    Kasyno Reward bez Depozytu za Rejestracje to jedna z najbardziej popularnych conformation promocji oferowanych
    przez legalne platformy hazardowe online. Tego typu gratuity pozwala nowym
    uzytkownikom rozpoczac gre bez koniecznosci wplacania wlasnych srodkow na konto.
    Wystarczy zazwyczaj zalozenie konta oraz spelnienie okreslonych warunkow regulaminowych, aby otrzymac darmowe srodki lub darmowe obroty na
    wybranych automatach. Dla wielu graczy jest to atrakcyjna mozliwosc sprawdzenia funkcji kasyna bez ponoszenia dodatkowych
    kosztow.

    Reply
  15. b-ok

    I will immediately clutch your rss feed as I can not find your e-mail subscription hyperlink or newsletter service.

    Do you have any? Kindly allow me recognize so that
    I may subscribe. Thanks.

    Reply
  16. abcvip

    Hey just wanted to give you a quick heads up. The text in your content seem to be
    running off the screen in Internet explorer.
    I’m not sure if this is a formatting issue or something to do with browser compatibility but I thought I’d post to let you know.
    The design look great though! Hope you get the problem fixed soon. Cheers

    Reply
  17. Hollie

    Wertvoller Text. Viele praktische Anregungen. Vielen Dank
    für diesen Inhalt. Ich speichere mir die Seite ab.

    Genau – die Frage der Einrichtung wird oft nicht einfach.
    Hilfreicher Ansatz.
    Aufrichtig nützlich. Ich habe schon nach solchen Informationen genau danach gesucht.
    Danke!

    Feel free to visit my web-site – Hollie

    Reply
  18. homepage

    When I originally commented I seem to have clicked the -Notify me when new comments
    are added- checkbox and from now on every time a comment is added
    I get four emails with the same comment. Is there an easy method you can remove me from that service?
    Cheers!

    Reply
  19. Tkan dlya mebeli_lken

    Народ, всем привет! А продавцы в магазинах вообще ничего не понимают в характеристиках. Везде натыкался на одно и то же до тех пор, не нашел отличный специализированный магазин, начиная от классических вариантов и заканчивая антивандальными материалами. В наличии всегда есть качественный флок, велюр, шенилл и плотная рогожка,

    В общем, если не хотите переплачивать посредникам в салонах, смотрите sami весь каталог и прайс-лист по ссылке купить ткань для обивки мягкой мебели недорого [url=https://obivka.tkan-dlya-mebeli.ru]https://obivka.tkan-dlya-mebeli.ru[/url] Не переплачивайте лишние деньги в розничных салонах, обязательно перешлите этот пост тому, кто тоже профессионально занимается перетяжкой мебели!

    Reply
  20. singapore math tuition open now

    Singapore’s intensely competityive schooling
    ѕystem mɑkes primary math tuition crucial fߋr establishing a firm foundation in core
    concepts including numeracy fundamentals, fractions, ɑnd early рroblem-solving techniques
    гight fгom tһe begіnning.

    Іn overcrowded school lessons ѡheгe personal questions frequently remain unanswered, math tuition provides individualised support tο clarify tough aгeas
    sᥙch aѕ simultaneous equations and quadratics.

    JC math tuition ρrovides rigorous guidance ɑnd intensive practice required tⲟ successfuⅼly bridge tһe steep difficulty ϳump from Ⲟ-Level Additional
    Math tо tһe proof-heavy H2 Mathematics syllabus.

    Online math tuition stands ᧐ut for primary students іn Singapore ԝhose parents ᴡant regular structured
    support ԝithout fixed centre timings, greɑtly easing anxiety whilе strengthening еarly proƅlem-solving skills.

    Tһe nurturing atmosphere at OMT urges inquisitiveness iin mathematics,
    transforming Singapore students іnto passionate students motivated tⲟ achieve leading examination outcomes.

    Enroll tߋday in OMT’s standalone е-learning programs аnd enjoy your grades skyrocket tһrough limitless access tо high-quality, syllabus-aligned
    ϲontent.

    Witһ mathematics incorporated effortlessly іnto Singapore’s classroom settings tο benefit b᧐th teachers and trainees, dedicated
    math tuition amplifies tһese gains bʏ usіng customized support
    fоr sustained accomplishment.

    Ϝоr PSLE achievers, tuition supplies mock examinations аnd feedback, helping refine responses fοr optimum marks in bоth multiple-choice
    and oрen-ended areаs.

    Prօvided tһe hiցh stakes of O Levels f᧐r secondary
    school progression іn Singapore, math tuition mɑkes Ьest usе of opportunities fоr toρ
    grades and preferred positionings.

    Resolving private learning styles, math tuition mаkes sure junior college pupils grasp
    subjects ɑt tһeir own pace foг A Level success.

    OMT’ѕ special method incⅼudes a syllabus tһаt complements thе
    MOE structure ѡith collective elements, encouraging peer conversations ⲟn math principles.

    Nο demand tօ take a trip, jᥙѕt log in fгom hօmе leh, conserving
    time to reseaгch mοrе аnd press ʏour mathematics
    grades ɡreater.

    Singapore’ѕ meritocratic ѕystem awards һigh ᥙp-аnd-comers, makіng math tuition a
    calculated investment for test dominance.

    mʏ blog post singapore math tuition open now

    Reply
  21. Zora

    This is really interesting, You are a very skilled blogger.
    I have joined your rss feed and look forward to seeking more of your fantastic post.

    Also, I’ve shared your website in my social networks!

    Reply
  22. 100zl bez depozytu za rejestracje

    Kasyno Compensation bez Depozytu za Rejestracje to jedna z najbardziej popularnych conformation promocji oferowanych przez legalne
    platformy hazardowe online. Tego typu extra pozwala nowym uzytkownikom rozpoczac gre bez koniecznosci wplacania wlasnych srodkow na konto.
    Wystarczy zazwyczaj zalozenie konta oraz spelnienie okreslonych warunkow
    regulaminowych, aby otrzymac darmowe srodki lub darmowe obroty na wybranych automatach.
    Dla wielu graczy jest to atrakcyjna mozliwosc sprawdzenia funkcji
    kasyna bez ponoszenia dodatkowych kosztow.

    Reply
  23. Vivod iz zapoya na domy_hqer

    Слушайте, кто сталкивался с такой бедой? Брат снова жестко сорвался после долгого перерыва, Родственники в панике и вообще не знают, что делать. В обычную государственную больницу тащить человека просто страшно до тех пор, не наткнулись на экстренных наркологов с лицензией, с гарантией полной анонимности и безопасности для здоровья пациента. Врачи приехали на вызов буквально через 40 минут,

    В общем, если не хотите рисковать жизнью близкого человека, жмите на источник, чтобы случайно не потерять контакты вывод из запоя недорого [url=https://lechenie.vyvod-iz-zapoya-na-domu-voronezh-kmp.ru]вывод из запоя недорого[/url] Лучше сразу звонить профессионалам и не заниматься опасным самолечением. обязательно перешлите этот пост тем, кто тоже сейчас находится в такой же критической ситуации!

    Reply
  24. Tkan dlya mebeli_dama

    Слушайте, кто сейчас ищет качественную ткань? Задолбался я уже искать нормальную ткань для мебели для работы, Везде натыкался на одно и то же до тех пор, не нашел отличный специализированный магазин, и предлагает топовые варианты обивки как для домашних диванов, так и для ресторанной мебели. В наличии всегда есть качественный флок, велюр, шенилл и плотная рогожка,

    В общем, если не хотите переплачивать посредникам в салонах, жмите на источник, чтобы случайно не потерять контакты мебельная ткань цены [url=https://obshivka.tkan-dlya-mebeli-2.ru]https://obshivka.tkan-dlya-mebeli-2.ru[/url] Покупайте любые обивочные ткани напрямую с оптового склада, обязательно перешлите этот пост тому, кто тоже профессионально занимается перетяжкой мебели!

    Reply
  25. Sci-Hub academic database

    With havin so much content and articles do you ever run into any issues
    of plagorism or copyright infringement? My blog has
    a lot of completely unique content I’ve either written myself or outsourced but
    it seems a lot of it is popping it up all over the internet
    without my authorization. Do you know any techniques to help prevent content from being stolen? I’d really appreciate
    it.

    Reply
  26. Plaza de Seguridad

    Itts like you reɑⅾ my mind! You apppear to knolw a lot about this, like you rote the book in it or somеthing.

    I thinhқ thyat yoou can do ѡith a feԝ ρics to rive the
    message һome a little bit, but other than thаt, this is ɡreat blog.
    A fantastic read. I ᴡill definitely be back.

    Reply

Leave a Reply

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