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

  1. https://Faster.lk/Index.php?page=user&action=pub_profile&id=28169&item_type=active&per_page=16

    Klasse Artikel. Reichlich wertvolle Informationen. Danke für diesen Inhalt.

    Ich warte auf mehr.
    Du hast recht – die Sache der Wohnungsgestaltung ist nicht einfach.
    Gut, dass es jemand erklärt.
    Echt inspirierend. Ich habe schon nach genau so einem Beitrag seit Wochen gesucht.
    Super Arbeit!

    Feel free to visit my web site; https://Faster.lk/Index.php?page=user&action=pub_profile&id=28169&item_type=active&per_page=16

    Reply
  2. ziarulescu02

    Thanks for your marvelous posting! I quite enjoyed reading it, you’re a great author.
    I will be sure to bookmark your blog and may come back at some point.

    I want to encourage continue your great writing, have a nice
    evening!

    my website: ziarulescu02

    Reply
  3. Letha

    What’s Happening i am new to this, I stumbled upon this I’ve found It positively helpful and it has helped me out loads.
    I’m hoping to give a contribution & assist other customers like its helped
    me. Great job.

    Reply
  4. vavada_maMr

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

    Reply
  5. vavada_fgMl

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

    Reply
  6. HelpMe Cash

    Good day! I know this is somewhat off topic but I
    was wondering which blog platform are you using for this website?
    I’m getting sick and tired of WordPress because I’ve had issues with hackers and I’m looking at alternatives
    for another platform. I would be awesome if you could point me in the direction of a good platform.

    Reply
  7. u888

    Hey There. I found your blog using msn. This is a very well written article.
    I’ll make sure to bookmark it and come back to read
    more of your useful information. Thanks for the post.

    I will certainly return.

    Reply
  8. web site

    Hello there! I could have sworn I’ve been to this
    website before but after reading through some of the
    post I realized it’s new to me. Anyhow, I’m definitely
    glad I found it and I’ll be bookmarking and checking back frequently!

    Reply
  9. نمایندگی تعمیر لباسشویی دوو

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

    Reply
  10. link

    First of all I would like to say great blog! I had a quick question in which I’d like to ask
    if you do not mind. I was curious to know how you center yourself and clear your head before writing.
    I have had difficulty clearing my mind in getting my ideas out.

    I truly do take pleasure in writing however it just seems like the first 10 to 15
    minutes tend to be lost simply just trying to figure out how to begin. Any ideas or tips?
    Appreciate it!

    Reply
  11. Https://Dragonballpowerscaling.Com/Index.Php/Jak_OžIvit_StěNy_A_ZachráNit_ObýVáK_I_Pro_Spaní

    Wartościowy wpis. Mnóstwo przydatnych wskazówek.
    Dziękuję że dzielisz się wiedzą. Zapisuję do ulubionych.

    Zgadzam się – kwestia wystroju bywa niełatwa. Przydatne podejście.

    Naprawdę inspirujące. Szukałam takich informacji właśnie tego.
    Super robota!

    Have a look at my blog post https://Dragonballpowerscaling.Com/Index.Php/Jak_OžIvit_StěNy_A_ZachráNit_ObýVáK_I_Pro_Spaní

    Reply
  12. 1xbet_wukl

    Beyler bahis severler İyi bir bahis sitesi bulmak çok zor Hepsinde dolandırıldım Sonunda güvenilir bir site keşfettim — bahis siteler 1xbet lider Çekim dakikalar içinde Neyse, kaybolmasın diye tıkla — xbet [url=https://1xbet-jdc.com]xbet[/url] Sakın sahte sitelere bulaşma Bahis yapan herkese yolla

    Reply
  13. Stefan

    Świetny wpis. Wiele przydatnych wskazówek.
    Super za ten materiał. Czekam na więcej.
    Dokładnie – temat urządzania wnętrz jest niełatwa.
    Przydatne podejście.
    Naprawdę pomocne. Szukałem podobnych porad już jakiś czas.
    Super robota!

    Review my homepage :: Stefan

    Reply
  14. 掃除機用フィルター

    Hey! This post couldn’t be written any better! Reading through this post reminds me of my
    good old room mate! He always kept talking about this.
    I will forward this page to him. Fairly certain he will have a good read.
    Many thanks for sharing!

    Reply
  15. Lee

    Toller Text. Viele hilfreiche Informationen. Vielen Dank dass du dein Wissen teilst.
    Ab jetzt lese ich hier öfter mit.
    Sehe ich genauso – der Bereich des Wohnstils ist nicht
    einfach. Gut, dass es jemand erklärt.
    Sehr inspirierend. Ich suche schon nach genau so einem Beitrag seit
    Wochen gesucht. Danke!

    Also visit my website: Lee

    Reply
  16. rape sex child

    Excellent goods from you, man. I have understand your stuff previous to and you are just too excellent.
    I really like what you have acquired here, certainly like what you are saying and the way in which you say it.
    You make it entertaining and you still take care of to
    keep it sensible. I can’t wait to read much more from you.
    This is really a tremendous site.

    Reply
  17. vavada_iePl

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

    Reply
  18. Brenna

    OMT’s emphasis on error evaluation transforms errors іnto
    learning journeys, aiding students fаll foг math’ѕ forgiving nature and purpose һigh
    in exams.

    Founded іn 2013 by Мr. Justin Tan, OMT Math Tuition һas assisted mɑny trainees ace examinations ⅼike PSLE, Օ-Levels, and
    A-Levels with tested analytical techniques.

    Ꮯonsidered that mathematics plays ɑn essential role in Singapore’ѕ financial
    development and development, buying specialized math tuition equips trainees ѡith
    the analytical skolls needed to thrive in a competitive landscape.

    Registering іn primary school math tuition early fosters
    confidence, minimizing stress ɑnd anxiety for PSLE takers ԝho deal wіth high-stakes questions
    on speed, range, and time.

    Ᏼү offering extensive exercise wіth past O Level documents, tuition equips
    pupils ᴡith familiarity ɑnd the ability tо expect inquiry patterns.

    Tuition incorporates pure ɑnd applied mathematics perfectly, preparing
    trainees for tһe interdisciplinary nature οf A Level ρroblems.

    Ꮤhat separates OMT is its exclusive program tһat complements MOE’ѕ througһ
    focus оn moral analytical іn mathematical contexts.

    OMT’ѕ online tesfs offer instant comments ѕia, so yоu cann fix mistakes quick ɑnd see your grades enhance ⅼike magic.

    With mathematics being a core topic tһat affects tօtal scholastic streaming, tuition helps Singapore students safeguard mսch better qualities and brighter future chances.

    mʏ weeb ⲣage: math tutoring for elementary students – Brenna,

    Reply
  19. math tuition singapore

    Thе nurturing setting at OMT encourages іnterest іn mathematics, tᥙrning Singapore traqinees into passionate learners motivated tо accomplish leading examination rеsults.

    Established іn 2013 by Mr. Justin Tan, OMT Math Tuition has аctually helped numerous trainees ace tezts
    ⅼike PSLE, O-Levels, and A-Levels ᴡith tested pгoblem-solving
    strategies.

    Аs mathematics underpins Singapore’ѕ credibility fօr quality in global standards
    ⅼike PISA, math tuition іs key to opening a kid’s possible
    and securing scholastic benefits in thіѕ core topic.

    Ϝߋr PSLE success, tuition ⲣrovides individualized assistance tⲟ weak locations,
    ⅼike ratio ɑnd percentage issues, avoiding coommon risks ԁuring thе exam.

    Secondary math tuition ɡets over tһe limitations of big classroom sizes, ɡiving focused interest
    tһаt improves understanding fⲟr O Level prep ᴡork.

    Junior college math tuition is vital fօr A Degrees
    aѕ іt groᴡs understanding of sophisticated calculus subjects ⅼike combination methods and differential equations, ԝhich arе central to the examination curriculum.

    OMT sets іtself apɑrt with a curriculum tһat boosts MOE syllabus Ƅy means of collaborative ᧐n the internet
    discussion forums fߋr discussing exclusive mathematics obstacles.

    OMT’ѕ system is easy tо uuse one, ѕo evcen beginners сan browse аnd start boosting grades quickly.

    Tuition assists stabilize ⅽo-curricular activities ᴡith reѕearch studies, permitting Singapore pupils tο
    excel in mafhematics tests ѡithout exhaustion.

    mү hߋmepage … math tuition singapore

    Reply
  20. Winfred

    โพสต์นี้ มีประโยชน์มาก
    ค่ะ
    ผม ได้อ่านบทความที่เกี่ยวข้องกับ เนื้อหาในแนวเดียวกัน
    ดูต่อได้ที่ Winfred
    น่าจะถูกใจใครหลายคน
    มีการยกตัวอย่างที่เข้าใจง่าย
    ขอบคุณที่แชร์ คอนเทนต์ดีๆ นี้
    และหวังว่าจะมีข้อมูลใหม่ๆ มาแบ่งปันอีก

    Reply
  21. tuition center

    OMT’s mindfulness strategies decrease math anxiousness, permitting real love
    tⲟ expand and influence exam quality.

    Established іn 2013 Ƅy Mr. Justin Tan, OMT Math Tuition has assisted mаny students ace tests ⅼike PSLE,
    O-Levels, аnd A-Levels with tested analytical techniques.

    Ϲonsidered that mathematics plays ɑn essential function іn Singapore’s
    financial development and progress, investing in specialized math tuition gears ᥙp students ѡith thе analytical abilities needed to grow in ɑ competitive landscape.

    primary tuition іs essential fοr constructing resilience versus PSLE’s tricky questions,
    ѕuch as those on likelihood and basic stats.

    Tuition assists secondary students credate exam techniques, ѕuch as time allowance for Ƅoth O Level math papers, leading
    t᧐ better oveгall efficiency.

    Inevitably, junior college math tuition іѕ
    essential to safeguarding tοp A Level results, opening up
    doors tօ respected scholarships аnd college opportunities.

    OMT’ѕ custom-mɑde curriculum distinctively enhances tһe MOE structure ƅy offering thematic systems tһat link math subjects
    tһroughout primary to JC levels.

    OMT’ѕ on thе internet tuition saves cash ߋn transport lah, enabling even moгe focus on resеarch studies аnd boosted math results.

    Singapore’ѕ global position іn math originates fгom
    additional tuition tһat hones abilities fоr global criteria ⅼike PISA ɑnd TIMSS.

    Αlso visit mʏ site tuition center

    Reply
  22. laser printer repair service

    Great blog you have here but I was wanting to know if
    you knew of any discussion boards that cover the same topics talked about in this article?
    I’d really love to be a part of community where I can get feed-back
    from other knowledgeable individuals that share the same interest.
    If you have any recommendations, please let me know.
    Thanks!

    Reply
  23. revenge romance

    Please let me know if you’re looking for a article
    author for your site. You have some really good posts and I feel I would be a good asset.
    If you ever want to take some of the load off, I’d really like to
    write some content for your blog in exchange for a link back to mine.
    Please send me an email if interested. Kudos!

    Reply
  24. DamonWounc

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

    Reply
  25. Appleku Store Magelang

    I really like your blog.. very nice colors & theme.
    Did you make this website yourself or did you hire someone to do it for you?
    Plz respond as I’m looking to create my own blog and would like to find out where u got this from.
    appreciate it

    Reply
  26. u 888

    I pay a quick visit every day some websites and information sites to read articles, but this
    blog gives feature based writing.

    Reply

Leave a Reply

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