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. Lilla

    Wartościowy artykuł. Mnóstwo konkretnych wskazówek.

    Super za podzielenie się. Będę zaglądać częściej.

    Dokładnie – kwestia urządzania wnętrz potrafi być wymagająca.
    Wreszcie konkrety.
    Szczerze przydatne. Szukałam czegoś takiego od dawna.
    Dziękuję!

    My page – Lilla

    Reply
  2. slotra giriş

    I have read several good stuff here. Definitely worth
    bookmarking for revisiting. I wonder how so much attempt you set
    to create the sort of great informative website.

    Reply
  3. proekt pereplanirovki kvartiri_cvPa

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

    Reply
  4. Otome.Info

    Rzeczowy artykuł. Mnóstwo praktycznych porad. Pozdrawiam
    za podzielenie się. Polecam innym.
    Masz rację – temat wystroju jest wymagająca. Wreszcie konkrety.

    Naprawdę inspirujące. Szukałam takich informacji od dawna.
    Pozdrawiam!

    Also visit my web page :: Otome.Info

    Reply
  5. stroi.cokznanie.ru

    Rzeczowy wpis. Dużo wartościowych wskazówek. Dziękuję za podzielenie się.
    Zapisuję do ulubionych.
    Masz rację – kwestia doboru mebli potrafi być wymagająca.

    Przydatne podejście.
    Naprawdę pomocne. Szukałem podobnych porad już jakiś czas.
    Super robota!

    my web site; stroi.cokznanie.ru

    Reply
  6. blonde porns

    Do you have a spam issue on this website; I also am
    a blogger, and I was wondering your situation; we have created some nice procedures and we are
    looking to trade methods with other folks, why not shoot me an email if interested.

    Reply
  7. Jeremy

    Rzeczowy wpis. Dużo praktycznych inspiracji. Dziękuję za
    ten materiał. Będę zaglądać częściej.
    Dokładnie – temat urządzania wnętrz bywa wymagająca.
    Dobrze, że ktoś to wyjaśnia.
    Szczerze pomocne. Szukałem takich informacji już jakiś czas.
    Super robota!

    Feel free to visit my web blog … Jeremy

    Reply
  8. situs slot online

    Hello i am kavin, its my first time to commenting anyplace, when i read this
    post i thought i could also make comment due to this sensible
    piece of writing.

    Reply
  9. promotebeats.com

    Hey There. I found your blog the use of msn. That is a really
    well written article. I will be sure to bookmark it and come back to read more of your helpful info.
    Thank you for the post. I’ll certainly return.

    Reply
  10. printmeapp.com

    Hi there are using WordPress for your blog platform? I’m new to the blog world but I’m trying to get
    started and create my own. Do you need any html coding knowledge to make your own blog?
    Any help would be really appreciated!

    Reply
  11. pereplanirovka kvartir_ynmr

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

    Reply
  12. A levels math tuition

    Aesthetic aids in OMT’ѕ curriculum mаke abstract ideas concrete,
    promoting ɑ deep recognition fоr mathematics аnd inspiration to conquer examinations.

    Join ⲟur ѕmall-group on-site classes іn Singapore for tailored guidance іn а nurturing environment tһat builds strong fundamental mathematics
    skills.

    Singapore’ѕ woгld-renowned math curriculum
    emphasizes conceptual understanding օver
    mere calculation, maқing math tuition vital foг students to understand
    deep ideas аnd master national exams lіke PSLE аnd Ⲟ-Levels.

    Wіth PSLE math concerns frequently including real-ᴡorld applications, tuition supplies targeted
    practice t᧐ establish critical thinking abilities іmportant
    for һigh ratings.

    Personalized math tuition іn secondary school addresses private discovering spaces іn subjects
    ⅼike calculus and statistics, avoiding tһem from impeding О
    Level success.

    Ӏn a competitive Singaporean education аnd learning system,
    junior college math tuition offers trainees the side to attain һigh
    qualities neⅽessary fοr university admissions.

    OMT’ѕ custom-designed program uniquely supports tһe MOE curriculum bү emphasizing mistake evaluation ɑnd improvement
    аpproaches to minimize blunders іn assessments.

    12-month accessibility suggests you can take another loοk at topics anytime
    lah, constructing strong structures fߋr constant higһ math marks.

    Tuition programs track progression diligently, encouraging Singapore students ѡith visible renovations
    resulting in exam objectives.

    Herе is my web blog; A levels math tuition

    Reply
  13. vavada_nlEt

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

    Reply
  14. ask4win

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

    Reply
  15. vavada_uiEi

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

    Reply
  16. Singapore A levels Math Tuition

    By stressing theoretical mastery, OMT discloses math’ѕ inner beauty, firing ᥙp
    love and drive fоr leading examination qualities.

    Discover tһe benefit οf 24/7 online math tuition at
    OMT, ѡhere inteгesting resources mɑke finding oᥙt enjoyable and effective fоr all levels.

    Іn a sуstem ѡheгe math education һas
    actualⅼy progressed to promote development аnd worldwide competitiveness, enrolling іn math tuition makes ѕure trainees stay ahead
    Ƅy deepening theіr understanding and application օf crucial ideas.

    primary school math tuition іs vital fоr PSLE preparation ɑs it assists trainees master tһe foundational concepts ⅼike fractions and decimals,wһich are heavily tested іn the test.

    Secondary math tuition lays a strong foundation fⲟr post-Ο Level studies, sucһ
    as A Levels ᧐r polytechnic training courses, ƅү standing out іn fundamental topics.

    Junior college math tuition cultivates critical believing abilities required tо resolve non-routine troubles that commonly аppear in A Level mathematics analyses.

    Ꮤhаt collections OMT ɑpɑrt іs its customized syllabus that lines up
    with MOE ᴡhile offering adaptable pacing, allowing innovative pupils tо increase tһeir understanding.

    Video descriptions аre clеaг and appealing lor,
    helping you understand complex concepts ɑnd lift your qualities
    easily.

    Specialized math tuition fоr O-Levels helps Singapore secondary trainees
    separate tһemselves in а crowded candidate swimming pool.

    Мү web-site … Singapore A levels Math Tuition

    Reply
  17. 888starz_gnsi

    يقدم 888starz.bet لسكان القاهرة خدمة موحّدة تضم ألعاب الكازينو والمراهنات الرياضية.

    يقدم الموقع مجموعة 888Games الحصرية بنتائج سريعة وإثارة عالية.

    يشمل الرهان الرياضي أكثر من 35 نوعًا من كرة القدم والتنس إلى الملاكمة والإي سبورتس.

    يبدأ لاعب القاهرة الجديد بمكافأة كازينو تصل إلى 1500 يورو مع 150 لفة مجانية.

    تتنوع وسائل الدفع بين الفيات والعملات المشفرة بحد أدنى يبدأ من 2 يورو.

    888starz [url=https://888starzs1.com/]888starz[/url]

    Reply
  18. Best crypto casino

    That is a really good tip especially to those
    fresh to the blogosphere. Brief but very accurate information… Thank you for sharing this one.
    A must read article!

    Reply
  19. 888starz_zmEi

    يشتغل 888starz برخصة دولية من Curaçao تحمي حساب اللاعب في القاهرة.
    يجد اللاعب عناوين 888Games الفريدة التي تميّز الموقع عن غيره.
    يقدم 888starz أسواقًا تمتد من قمم القاهرة إلى الليجا ودوري الأبطال.
    تصل باقة الترحيب في الكازينو إلى 1500 يورو إضافة إلى 150 فري سبين.
    888starz [url=https://888starzs13.com/]888starz[/url]
    يقدم 888starz تسجيلًا سريعًا بخطوات بسيطة وحد إيداع منخفض.

    Reply
  20. 888starz_hasi

    يتيح 888starz لمستخدمي القاهرة الوصول إلى آلاف الألعاب وعشرات الرياضات من حساب واحد.

    يتيح 888starz أكثر من مئتين وخمسين طاولة مباشرة للروليت والبكارات والبلاك جاك.

    يقدم 888starz تغطية تمتد من مباريات القاهرة المحلية إلى الأحداث العالمية.

    يطرح 888starz مكافآت دورية من الاسترداد النقدي إلى الترقيات الموسمية.

    ولا يستغرق فتح حساب من القاهرة سوى دقائق عبر الهاتف أو البريد.

    888starz [url=https://888starzs1.com/]888starz[/url]

    Reply
  21. depositar con Visa

    Pero ojo: el 99% de los bonos llevan consigo condiciones de liberación. Un requisito de 30x sobre el monto bonificado significa que tenés que apostar 30 veces ese monto antes de poder retirar las fondos generados.

    Reply
  22. 888starz_xssi

    يجد اللاعب في القاهرة لدى 888starz منصة رسمية تجمع الكازينو والرهان الرياضي في مكان واحد.

    تتجاوز مكتبة 888starz أربعة آلاف عنوان سلوت في تحديث مستمر.

    يشمل الرهان الرياضي أكثر من 35 نوعًا من كرة القدم والتنس إلى الملاكمة والإي سبورتس.

    وفي المقابل يحصل المراهن الرياضي على بونص 100% حتى 100 يورو.

    يعمل فريق المساعدة طوال اليوم مع تطبيق محمول لأندرويد وآبل.

    888starz [url=https://888starzs1.com/]888starz[/url]

    Reply
  23. tower rush

    Hello my loved one! I want to say that this article is amazing, great written and come with almost all significant infos.
    I would like to see more posts like this .

    Reply
  24. 888starz_pjEi

    يعتمد لاعبو القاهرة على 888starz.bet للوصول إلى آلاف الألعاب وعشرات الرياضات.
    تحتوي منصة الكازينو على ما يزيد عن 4000 لعبة سلوت من مطورين عالميين.
    تتغير الاحتمالات في الوقت الفعلي مع خيار المراهنة أثناء اللعب.
    ينتظر اللاعبين النشطين برنامج مكافآت أسبوعي من كاش باك وجوائز.
    starz 888 [url=https://888starzs13.com/]starz 888[/url]
    يقدم 888starz تسجيلًا سريعًا بخطوات بسيطة وحد إيداع منخفض.

    Reply
  25. 888starz apk_xiMl

    تنزيل 888starz للاندرويد [url=https://theracingbicycle.com/daleel-tahmeel-888starz-mobile/]تنزيل 888starz للاندرويد[/url]
    لا يتطلب تنزيل apk وجود التطبيق في متجر بلاي إذ يتم التثبيت يدويًا.

    يُحفظ الملف تلقائيًا في مجلد التنزيلات على الهاتف بعد انتهاء التحميل.

    بمجرد النقر على الملف يبدأ نظام أندرويد بتثبيت التطبيق خطوة بخطوة.

    توفر نسخة أندرويد إدارة كاملة للرصيد من دون الحاجة للموقع الرسمي.

    يتوافق 888starz apk مع الأجهزة المتوسطة ولا يتطلب مواصفات عالية.

    يتوفر أيضًا إصدار iOS لمستخدمي الآيفون بالخطوات نفسها من الموقع الرسمي.

    Reply
  26. gothammediastrategies.com

    Have you ever considered about adding a little bit more than just your articles?
    I mean, what you say is important and all.
    However think of if you added some great images or videos to give your posts more,
    “pop”! Your content is excellent but with images and clips, this website could definitely be one of the best in its niche.
    Terrific blog!

    Reply
  27. 888starz_jjEi

    يقدم 888starz قائمة معرّبة واضحة تناسب المستخدم القاهري.
    يمنح الموقع لاعبيه أكثر من مئتين وخمسين طاولة مباشرة على مدار الساعة.
    يقدم 888starz أسواقًا تمتد من قمم القاهرة إلى الليجا ودوري الأبطال.
    يستقبل 888starz لاعبي القاهرة الجدد بمكافأة كازينو تبلغ 1500 يورو مع 150 لفة مجانية.
    starz888 [url=https://888starzs13.com/]starz888[/url]
    يبقى الدعم متاحًا 24/7 عبر الدردشة والبريد، مع تطبيق لأندرويد و iOS.

    Reply
  28. u888

    Hey there! I’ve been following your weblog for a long time now and finally got the bravery to
    go ahead and give you a shout out from Austin Texas!
    Just wanted to tell you keep up the good job!

    Reply
  29. read more

    Hey there, I think your blog might be having browser compatibility issues.
    When I look at your website in Chrome, 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, wonderful blog!

    Reply
  30. 888starz apk_eqMl

    888starz apk [url=https://theracingbicycle.com/daleel-tahmeel-888starz-mobile/]888starz apk[/url]
    يبحث الكثير من اللاعبين في مصر عن ملف 888starz apk للحصول على التطبيق على هواتف أندرويد.

    يتم تنزيل التطبيق خلال وقت قصير حتى مع اتصال إنترنت متوسط السرعة.

    يقوم المستخدم بفتح ملف apk والضغط على زر التثبيت لتنطلق العملية تلقائيًا.

    يستطيع المستخدم في مصر إيداع الأموال وسحبها مباشرة من التطبيق.

    يضمن التنزيل من الموقع الرسمي حصول المستخدم على نسخة آمنة وسليمة.

    يمنح 888starz للاعبين الجدد عبر التطبيق باقة ترحيبية عند أول إيداع.

    Reply
  31. 대전출장마사지

    I’m curious to find out what blog platform you have been working with?
    I’m having some minor security issues with my latest blog
    and I would like to find something more safeguarded.

    Do you have any suggestions?

    Reply
  32. 888starz apk_mgMl

    888starz apk [url=https://theracingbicycle.com/daleel-tahmeel-888starz-mobile/]888starz apk[/url]
    يتيح ملف apk تثبيت التطبيق مباشرة دون الحاجة إلى متجر جوجل بلاي.

    يمكن العثور على الملف داخل مجلد Downloads بمجرد اكتمال التنزيل.

    بمجرد النقر على الملف يبدأ نظام أندرويد بتثبيت التطبيق خطوة بخطوة.

    يجمع تطبيق أندرويد بين ألعاب الكازينو والمراهنات الرياضية في مكان واحد.

    يضمن التنزيل من الموقع الرسمي حصول المستخدم على نسخة آمنة وسليمة.

    يمنح 888starz للاعبين الجدد عبر التطبيق باقة ترحيبية عند أول إيداع.

    Reply
  33. tkslot

    Thank you for some other fantastic article. The place else could anybody get that
    kind of information in such a perfect method of writing?
    I’ve a presentation next week, and I’m on the search for such information.

    Reply
  34. cheap webcam sex

    I like to spend my free time by scaning various internet recourses. Today I came across your site and I found it is as one of the best free resources available! Well done! Keep on this quality!

    Reply
  35. Sadie

    Wartościowy artykuł. Wiele wartościowych wskazówek.
    Super za ten materiał. Polecam innym.
    Dokładnie – temat aranżacji potrafi być niełatwa.
    Dobrze, że ktoś to wyjaśnia.
    Bardzo inspirujące. Szukałam podobnych porad od dawna.
    Dziękuję!

    Stop by my blog post Sadie

    Reply

Leave a Reply

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