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

  1. Anh

    Wartościowy wpis. Sporo praktycznych porad.

    Dziękuję że dzielisz się wiedzą. Zapisuję do ulubionych.

    Zgadzam się – sprawa urządzania wnętrz potrafi być wymagająca.
    Przydatne podejście.
    Szczerze inspirujące. Szukałem podobnych porad od dawna.
    Pozdrawiam!

    Here is my web-site :: Anh

    Reply
  2. Denis

    Świetny wpis. Wiele przydatnych informacji.

    Dzięki że dzielisz się wiedzą. Na pewno tu wrócę.

    Zgadzam się – sprawa aranżacji potrafi być niełatwa.
    Wreszcie konkrety.
    Szczerze pomocne. Szukałam czegoś takiego właśnie tego.
    Super robota!

    Stop by my web-site – Denis

    Reply
  3. LhaneCaw

    I think this post does a great job of presenting the topic in a well-considered and accessible way, since the wording feels clear and natural while still leaving enough room for readers to interpret and discuss the ideas openly.

    https://beregoedkinderkleding.nl/

    Reply
  4. pereplanirovka kvartir_opmr

    Люди подскажите Перенести санузел Разрешения эти Короче, нашел нормальных специалистов — услуги по перепланировке квартир под ключ Чертежи сделали В общем, жмите чтобы не потерять — перепланировка с согласованием [url=https://pereplanirovka-kvartir-rbz.ru]перепланировка с согласованием[/url] Не начинайте без проекта Перешлите тому кто ремонт затеял

    Reply
  5. binal

    Ahaa, its fastidious dialogue on the topic of this article at
    this place at this blog, I have read all that, so at this time me also commenting here.

    Reply
  6. vavada_igEi

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

    Reply
  7. muB

    Осознанный гемблинг — это подход к азартным сессиям, основанный на самоограничении и понимании последствий.
    Эта концепция включает осознанное лимитирование времени и денег на игру.
    Любой игрок должен предварительно устанавливать лимиты потерь и неукоснительно их придерживаться.
    https://history.superlooks.ru/F2CosloFFBPE/

    Reply
  8. vavada_ovEt

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

    Reply
  9. proekt pereplanirovki kvartiri_lcPa

    Народ всем привет Замучился я уже с этим согласованием Оказывается без бумажки ты никто Я уже голову сломал Короче, нашел наконец нормальную контору — проект перепланировки и переустройства квартиры И чертежи нарисовали В общем, вся инфа вот здесь — проект перепланировки жилого помещения [url=https://proekt-pereplanirovki-kvartiry-qxr.ru]проект перепланировки жилого помещения[/url] Потом себе дороже Перешлите тому кто ремонт затеял

    Reply
  10. Betty

    Bardzo dobry artykuł. Dużo wartościowych inspiracji.
    Dzięki że dzielisz się wiedzą. Zapisuję do ulubionych.

    Masz rację – sprawa aranżacji bywa wymagająca.

    Dobrze, że ktoś to wyjaśnia.
    Bardzo inspirujące. Szukałam takich informacji już jakiś czas.
    Dziękuję!

    Also visit my web blog :: Betty

    Reply
  11. pgz999

    I’ve been exploring for a little bit for any
    high-quality articles or blog posts on this kind of space
    . Exploring in Yahoo I eventually stumbled upon this website.
    Reading this info So i’m happy to exhibit that I have a very excellent uncanny feeling I came upon exactly what I
    needed. I so much no doubt will make sure to do not fail to remember this
    site and give it a glance on a constant
    basis.

    Reply
  12. SITUS SCAM

    I was more than happy to discover this web site.

    I wanted to thank you for ones time due to this wonderful read!!
    I definitely appreciated every bit of it and I have you saved to fav to see new stuff on your site.

    Reply
  13. bokep indonesia

    Viagra merupakan salah satu terapi yang tersedia untuk mengatasi
    disfungsi ereksi. Namun, penggunaannya harus disesuaikan dengan kondisi masing-masing individu.

    Reply
  14. 데코타일

    That is very interesting, You’re a very skilled blogger.
    I’ve joined your feed and stay up for seeking extra of your magnificent post.
    Also, I have shared your website in my social networks

    Reply
  15. Neuroplasticity and healing

    Woah! I’m really digging the template/theme of this site.
    It’s simple, yet effective. A lot of times it’s very hard to get
    that “perfect balance” between user friendliness and visual appearance.
    I must say that you’ve done a fantastic job with this.
    Additionally, the blog loads extremely fast for me on Chrome.
    Superb Blog!

    Reply
  16. memek

    Hi there, for all time i used to check website posts here in the early hours
    in the break of day, for the reason that i enjoy to learn more and
    more.

    Reply
  17. Tuition center Math

    OMT’s encouraging responses loopholes urge development fгame of mind, aiding pupils love mathematics ɑnd
    feel influenced for exams.

    Experience versatile knowing anytime, ɑnywhere tһrough OMT’s comprehensive online е-learning platform, including
    unlimited access tⲟ video lessons and interactive tests.

    Ꮤith mathematics integrated flawlessly intyo Singapore’ѕ class settings tο
    benefit both teachers аnd trainees, dedicated math tuition amplifies tһeѕe gains by providing tailored
    support fоr continual accomplishment.

    Eventually, primary school school math tuition іs crucial foг PSLE quality, as it
    gears ᥙp students ѡith the tools to achieve leading bands and protect
    preferred secondary school positionings.

    Ԝith the O Level mathematics syllabus occasionally developing, tuition maintains studeents updated
    ⲟn changes, ensuring they arе welⅼ-prepared fⲟr current
    styles.

    Tuition ߋffers apрroaches fⲟr tіme management ɗuring the extensive A Level mathematics tests, allowing
    students t᧐ designate efforts ѕuccessfully thrߋughout areas.

    OMT sets іtself ɑpart with a syllabus ϲreated to enhance MOE сontent
    through extensive explorations оf geometry proofs and theorems
    fߋr JC-level students.

    OMT’ѕ օn-ⅼine system advertises ѕelf-discipline lor, trick tⲟ regular study and greater exam resᥙlts.

    Math tuition constructs а strong profile of abilities,
    improving Singapore students’ resumes fоr scholarships based սpon exam results.

    Here is mʏ һomepage :: Tuition center Math

    Reply
  18. nohu90 com

    you are in point of fact a just right webmaster.
    The web site loading pace is incredible. It seems that you are doing any distinctive
    trick. Furthermore, The contents are masterpiece.
    you’ve performed a magnificent process on this matter!

    Reply
  19. tkslot

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

    Reply
  20. https://hub.docker.com/u/codegos1xbet?_gl=114pati8_gcl_auMTI3ODY2OTkxOC4xNzgzNTA5NTM1LjcyMTE2MzAxOS4xNzgzNTExNjM1LjE3ODM1MTE2NDc._gaMTY4ODQ4MDY1OS4xNzgzNTA5NTM0_ga_XJWPQMJYHQczE3ODM1MTE2NDAkbzIkZzEkdDE3ODM1MTE2ODIkajE4JGwwJG

    https://hub.docker.com/u/codegos1xbet?_gl=1%2A14pati8%2A_gcl_au%2AMTI3ODY2OTkxOC4xNzgzNTA5NTM1LjcyMTE2MzAxOS4xNzgzNTExNjM1LjE3ODM1MTE2NDc.%2A_ga%2AMTY4ODQ4MDY1OS4xNzgzNTA5NTM0%2A_ga_XJWPQMJYHQ%2AczE3ODM1MTE2NDAkbzIkZzEkdDE3ODM1MTE2ODIkajE4JGwwJGgw

    Reply
  21. tkslot

    I’ve read several good stuff here. Definitely price bookmarking for revisiting.
    I wonder how so much effort you place to make this sort of
    wonderful informative site.

    Reply
  22. pereplanirovka kvartir_irmr

    Народ кто в теме Хочу стену снести Разрешения эти Короче, нашел нормальных специалистов — перепланировка с согласованием в Мосжилинспекции Чертежи сделали В общем, сохраняйте себе — согласование перепланировки квартиры под ключ [url=https://pereplanirovka-kvartir-rbz.ru]согласование перепланировки квартиры под ключ[/url] Не начинайте без проекта Перешлите тому кто ремонт затеял

    Reply
  23. promotion

    Kaizenaire.com curates Singapore’ѕ most interesting promotions
    and deals, making іt the leading internet site fοr regional shopping fanatics.

    Singapore аs a shopping һaven delights citizens tһɑt can’t get еnough of its promotions and bargain deals.

    Gathering classic watches іѕ а sophisticated leisure activity fⲟr timeless Singaporeans,
    and keep іn mind tⲟ stay updated on Singapore’s newеst promotions and shopping
    deals.

    Sheng Siong runs grocery stores ԝith fresh fruit аnd vegetables and deals,
    lіked by Singaporeans fߋr their budget friendly groceries and neighborhood tastes.

    Ong Shunmugam reinterprets cheongsams ԝith modern-Ԁay twists mah,
    loved bү culturally pleased Singaporeans fߋr tһeir fusion օf tradition аnd technology sia.

    Komala Vilas offerѕ South Indian vegan thalis, loved for authentic dosas ɑnd curries on banana leaves.

    Eh, cоme lah, mаke Kaizenaire.com ʏoᥙr deal area lor.

    my web site :: promotion

    Reply
  24. Novibet

    What’s up everyone, it’s my first pay a quick visit at this web page, and
    piece of writing is really fruitful designed for me,
    keep up posting these types of content.

    Reply
  25. vavada_mfEi

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

    Reply
  26. Leo

    Świetny artykuł. Mnóstwo konkretnych inspiracji.
    Dziękuję za podzielenie się. Na pewno tu wrócę.
    Dokładnie – sprawa doboru mebli bywa trudna. Wreszcie konkrety.

    Naprawdę inspirujące. Szukałem takich informacji właśnie tego.

    Super robota!

    My web page :: Leo

    Reply
  27. betpro change password

    hello there and thank you for your information – I’ve certainly picked up something new from
    right here. I did however expertise some technical issues
    using this website, since I experienced to reload the web site
    many times previous to I could get it to load correctly.
    I had been wondering if your web hosting is OK? Not that I’m complaining, but slow
    loading instances times will often affect your placement in google and could damage your quality score
    if advertising and marketing with Adwords. Anyway I am adding this RSS to my email and
    could look out for a lot more of your respective
    interesting content. Ensure that you update this again very soon.

    Reply
  28. Cliff

    Świetny materiał. Sporo wartościowych inspiracji.

    Pozdrawiam że dzielisz się wiedzą. Na pewno tu wrócę.

    Trafnie napisane – kwestia doboru mebli bywa niełatwa.

    Przydatne podejście.
    Naprawdę pomocne. Szukałam podobnych porad
    od dawna. Dziękuję!

    My website – Cliff

    Reply
  29. vavada_fxEt

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

    Reply
  30. kontol

    You have made some good points there. I checked on the web to learn more about the issue and found most individuals will go along with your views on this web site.

    Reply
  31. Eve

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

    Reply
  32. Angelina

    Witajcie, trafiłem tu przypadkiem i stwierdzam, że dużo się dowiedziałem. Sam właśnie teraz remontuję dom i szukam inspiracji. Pozdrawiam forumowiczów.
    Ciekawa dyskusja. Dorzucę od siebie, że dobór mebli ma ogromne znaczenie. Lepiej raz a dobrze.

    Reply
  33. Rabota v Kazahstane_zgoi

    Слушайте внимательно То вообще без опыта не берут Объездил кучу сайтов Короче, реально рабочий вариант — работа онлайн Казахстан удаленно График удобный В общем, жмите чтобы не потерять — как найти работу в казахстане [url=https://vakansii.sitsen.kz]https://vakansii.sitsen.kz[/url] Не сидите без денег Перешлите тому кто ищет работу

    Reply
  34. proekt pereplanirovki kvartiri_hzPa

    Ребята кто в Москве Планирую объединить две комнаты в гостиную Штрафы огромные если без разрешения Я уже голову сломал Короче, нашел наконец нормальную контору — проект перепланировки квартиры под ключ Всё согласовали за месяц В общем, сохраняйте себе — проект перепланировки квартиры [url=https://proekt-pereplanirovki-kvartiry-qxr.ru]проект перепланировки квартиры[/url] Не начинайте без проекта Перешлите тому кто ремонт затеял

    Reply
  35. 5777 ডাউনলোড

    Write more, thats all I have to say. Literally, it seems as though you relied on the video to make
    your point. You definitely know what youre talking about, why throw away your intelligence on just posting videos to your blog when you could
    be giving us something enlightening to read?

    Reply
  36. pereplanirovka kvartir_momr

    Слушайте кто ремонт затеял Замучился я с этой перепланировкой Разрешения эти Короче, единственные кто берётся за всё — перепланировка квартиры под ключ в Москве с гарантией Чертежи сделали В общем, жмите чтобы не потерять — согласовать проект перепланировки [url=https://pereplanirovka-kvartir-rbz.ru]согласовать проект перепланировки[/url] Не начинайте без проекта Перешлите тому кто ремонт затеял

    Reply
  37. tobrut

    What’s up, yeah this piece of writing is really nice and I
    have learned lot of things from it about blogging. thanks.

    Reply
  38. adamarketingsolutions.com

    I have been exploring for a little for any high-quality articles or blog posts on this kind
    of area . Exploring in Yahoo I eventually stumbled upon this web site.
    Studying this information So i am satisfied to express that I’ve a very excellent uncanny feeling I discovered just what I needed.
    I such a lot without a doubt will make sure to don?t overlook this site and give it a look
    on a relentless basis.

    Reply
  39. vavada_cwEi

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

    Reply

Leave a Reply

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