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. pereplanirovka kvartir_gxKa

    Народ всем привет Затеял ремонт в хрущёвке Без проекта даже думать нечего Я уже намучился Короче, нормальные ребята которые делают всё под ключ — перепланировка квартиры с авторским надзором И согласуют без проблем В общем, смотрите сами по ссылке — помощь в согласовании перепланировки квартиры [url=https://pereplanirovka-kvartir-xqm.ru]помощь в согласовании перепланировки квартиры[/url] Потом штраф и суды Перешлите тому кто затеял ремонт

    Reply
  2. najlepsze kasyna online

    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
  3. 888starz_pwKn

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

    Reply
  4. LLM financial reasoning rubric

    Thanks for ones marvelous posting! I quite enjoyed reading it, you may be a great
    author. I will be sure to bookmark your blog and may come back someday.
    I want to encourage you continue your great work, have a nice holiday weekend!

    Reply
  5. shkola onlain_avEi

    Мамы и папы всем привет А домашние задания на 5 часов в день Никакого интереса к учёбе Короче, реально удобный формат — онлайн образование с лицензией и зачислением Никаких звонков и перемен В общем, жмите чтобы не потерять — школы дистанционного обучения [url=https://shkola-onlajn-nvc.ru]школы дистанционного обучения[/url] Хватит мучить себя и ребёнка Перешлите другим родителям

    Reply
  6. 888starz_dlKn

    يعتمد الموقع على ترخيص كوراساو الممنوح لشركة Bittech B.V. لضمان عدالة اللعب.
    888stars [url=https://888starzs14.com/]888stars[/url]
    تحتوي منصة الكازينو على ما يزيد عن 4000 لعبة سلوت من مطورين عالميين.
    يشمل الموقع أكثر من 35 فئة رياضية تتابع كبرى الأحداث في العالم.
    تصل باقة الترحيب في الكازينو إلى 1500 يورو إضافة إلى 150 فري سبين.
    يعمل فريق المساعدة طوال اليوم مع تطبيق محمول لأجهزة أندرويد وآبل.

    Reply
  7. sec 2 math paper

    Primary-level math tuition іs indispensable fօr developing critical thinking аnd proƅlem-solving abilities neеded to handle thе increasingly complex ᴡorⅾ problems encountered іn upper primary grades.

    Math tuition ԁuring secondary years hones һigher-᧐rder reasoning,
    whіch prove essential beyօnd tets future pursuits in STEMfields,
    engineering, economics, ɑnd data-related disciplines.

    As Α-Level resultѕ decisively impact admission tο leading Singapore аnd
    international universities, targeted math tuition tһroughout JC1 ɑnd JC2 gгeatly increases tһe likelihood of achieving distinctions.

    Junior college students preparing fоr Ꭺ-Levels find remote H2 Mathematics coaching invaluable іn Singapore Ьecause іt delivers specialised individual mentoring
    оn advanced H2 topics likе sequences, series аnd integration, helping tһеm secure distinction grades tһɑt unlock admission to
    prestigious university programmes.

    Exploratory components аt OMT urge innovative analytic, aiding trainees uncover mathematics’ѕ
    creativity аnd feel motjvated fⲟr examination success.

    Dive into self-paced math proficiency ԝith OMT’s 12-month e-learning courses, ϲomplete
    with practice worksheets ɑnd taped sessions for comprehensive modification.

    Ꮃith students іn Singapore starting formal mathematics education fгom the first ⅾay and dealing ѡith hiɡh-stakes assessments, math tuition рrovides thе additional edge neеded tߋ achieve tоp performance іn thiѕ vital topic.

    primary school school math tuition enhances rational thinking, vital fⲟr analyzing PSLE concerns including series аnd sensibⅼe deductions.

    Secondary math tuition lays а solid groundwork for post-O Level studies,
    ѕuch aѕ Ꭺ Levels оr polytechnic courses, by mastering foundational subjects.

    Tuition instructs error analysis strategies, helpinng junior college students stay ⅽlear ᧐f common pitfalls
    in А Level calculations аnd proofs.

    OMT stands οut wіth іts curriculum made to support MOE’ѕ by incorporating mindfulness
    strategies tо lower math stress ɑnd anxiety Ԁuring researches.

    Specialist pointers іn videos give faster ѡays
    lah, helping you address inquiries quicker ɑnd rack up muϲh
    morе in tests.

    Singapore’s emphasis on analytic іn mathematics examinatkons
    maқeѕ tuition іmportant for establishing critical believing skills ρast school һours.

    Feel free t᧐ visit mү page … sec 2 math paper

    Reply
  8. Jade

    Wartościowy wpis. Mnóstwo przydatnych inspiracji.
    Dzięki za ten materiał. Czekam na więcej.
    Masz rację – sprawa aranżacji bywa niełatwa.
    Dobrze, że ktoś to wyjaśnia.
    Bardzo przydatne. Szukałem czegoś takiego od dawna.
    Pozdrawiam!

    Check out my web site: Jade

    Reply
  9. Https://Twsing.com/

    Rzeczowy tekst. Mnóstwo przydatnych informacji. Super za ten materiał.
    Będę zaglądać częściej.
    Masz rację – kwestia urządzania wnętrz potrafi być wymagająca.

    Wreszcie konkrety.
    Szczerze inspirujące. Szukałem podobnych porad już jakiś czas.
    Pozdrawiam!

    Visit my web site: https://Twsing.com/

    Reply
  10. pgz999

    fantastic points altogether, you simply received a
    new reader. What may you suggest in regards to your publish that you
    made some days ago? Any positive?

    Reply
  11. 888starz_waot

    يتيح 888starz للاعبين في مصر منصة رسمية تجمع الكازينو والرهانات الرياضية في موقع واحد.
    يوفر الكازينو الحي أكثر من 250 طاولة بموزعين حقيقيين تعمل بلا توقف.
    888starz [url=https://888starzs12.com/]888starz[/url]
    يمكن الرهان على أحداث من دوري الأبطال إلى مباريات مصر.
    ويقدم قسم الرياضة مكافأة 100% تصل إلى 100 يورو.
    يعمل فريق المساعدة طوال اليوم مع تطبيق محمول لأندرويد وآبل.

    Reply
  12. raja89

    naturally like your web site but you have to check the spelling on several of
    your posts. Many of them are rife with spelling issues
    and I to find it very bothersome to inform the truth however I’ll definitely come back again.

    Reply
  13. 888starz_otot

    صُممت المنصة بلغة عربية بسيطة وتنقل سلس بين أقسامها.
    يجد اللاعب في 888Games عناوين لا تتوفر خارج منصة 888starz.
    starz 888 [url=https://888starzs12.com/]starz 888[/url]
    يوفر الموقع رهانًا فوريًا وإحصاءات مباشرة للأحداث الجارية.
    يطرح 888starz مكافآت منتظمة تشمل الاسترداد النقدي والترقيات.
    يبقى الدعم متاحًا 24/7 عبر الدردشة والبريد مع تطبيق لأندرويد و iOS.

    Reply
  14. 888starz_yrot

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

    Reply
  15. shkola onlain_yqmn

    Слушайте кто ищет выход Задолбали эти школьные будни А эти поборы на подарки учителям Короче, реально удобный формат учёбы — школа дистанционно с настоящими учителями Никаких школьных драм В общем, там программа и отзывы — ломоносов школа онлайн [url=https://shkola-onlajn-wqe.ru]https://shkola-onlajn-wqe.ru[/url] Хватит мучить себя и ребёнка Перешлите другим родителям

    Reply
  16. Https://Bigbrain.Center/

    Naprawdę dobry materiał. Dużo wartościowych wskazówek.
    Dziękuję że dzielisz się wiedzą. Polecam innym.

    Dokładnie – temat wystroju jest niełatwa. Dobrze, że ktoś
    to wyjaśnia.
    Bardzo pomocne. Szukałam podobnych porad już jakiś czas.
    Super robota!

    My blog post :: https://Bigbrain.Center/

    Reply
  17. ngentot

    Hi mates, how is all, and what you want to say on the topic of this paragraph, in my view
    its truly remarkable for me.

    Reply
  18. pereplanirovka kvartir_ieKa

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

    Reply
  19. casino

    Hi, yup this piece of writing is genuinely fastidious and I have learned lot of things from it about blogging.

    thanks.

    Reply
  20. shkola onlain_acKn

    Народ у кого дети Учителя со своими закидонами Ребёнок к вечеру как выжатый лимон Короче, единственная школа где кайфово учиться — школа дистанционно с индивидуальным подходом Ребёнок учится и не перегружается В общем, вся инфа вот здесь — Не мучайте себя и детей Перешлите другим родителям

    Reply
  21. cowgirl boobs

    I have been surfing online greater than 3 hours as of late, yet I never
    found any fascinating article like yours. It’s pretty price enough for me.
    Personally, if all site owners and bloggers made just
    right content as you did, the net will likely be much more helpful than ever before.

    Reply
  22. pereplanirovka kvartir_qfOi

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

    Reply
  23. shkola onlain_qoon

    Народ помогите Ребёнок уставший, не высыпается А эти бесконечные поборы Короче, реально удобный формат — школа онлайн с аттестатом Никаких звонков в 8 утра В общем, сохраняйте себе — школа дистанционно [url=https://shkola-onlajn-dyk.ru]https://shkola-onlajn-dyk.ru[/url] Не мучайте детей Перешлите другим родителям

    Reply
  24. about

    I like the valuable information you provide in your articles.
    I’ll bookmark your weblog and check again here frequently.
    I am quite sure I will learn plenty of new stuff right here!
    Best of luck for the next!

    Reply
  25. pereplanirovka kvartir_fsKa

    Москвичи отзовитесь Решил снести стену между комнатами Без проекта даже думать нечего Я уже намучился Короче, нормальные ребята которые делают всё под ключ — услуги по перепланировке квартир под ключ И в инспекцию подадут В общем, вся инфа вот здесь — согласование проекта перепланировки квартиры москва [url=https://pereplanirovka-kvartir-xqm.ru]https://pereplanirovka-kvartir-xqm.ru[/url] Не тяните Перешлите тому кто затеял ремонт

    Reply
  26. muB

    Разумное отношение к азарту — это принцип к азартным сессиям, основанный на самоограничении и понимании последствий.
    Эта концепция предполагает добровольное ограничение продолжительности и расходов на игру.
    Каждый участник обязан предварительно определять лимиты потерь и неукоснительно их придерживаться.
    https://bookmarks.balmain1.ru/zBYncijdPchq/

    Reply
  27. vn22vip.com

    This is a very informative post about online casinos and betting platforms.
    I especially liked how it explains the importance of choosing a secure site before signing up.

    Many players often ask where they can find reliable gaming platforms with fair
    odds and smooth payouts. From what I’ve seen, checking
    platforms like vn22vip helps users compare
    features, bonuses, and overall experience.

    Thanks for sharing these insights — they’re helpful for both beginners and experienced bettors.

    Reply
  28. kasyno online

    Good post. I study something more difficult on different blogs everyday. It’s going to always be stimulating to learn content material from other writers and observe a little bit one thing from their store. I’d prefer to use some with the content material on my blog whether you don’t mind. Natually I’ll give you a link in your web blog. Thanks for sharing.

    Reply
  29. shkola onlain_emmn

    Народ у кого школьники Учителя которые только и знают что орать Ребёнок раздражённый Короче, нашли идеальное решение — онлайн класс с 1 по 11 класс Никаких школьных драм В общем, там программа и отзывы — ломоносовская онлайн школа [url=https://shkola-onlajn-wqe.ru]https://shkola-onlajn-wqe.ru[/url] Хватит мучить себя и ребёнка Перешлите другим родителям

    Reply
  30. pereplanirovka kvartir_tcKa

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

    Reply
  31. casino

    I love 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 design my own blog
    and would like to know where u got this from.
    thanks a lot

    Reply
  32. 강릉출장안마

    이 포스팅 진짜 유용하게 잘 봤어요.
    저처럼 며칠 전에 강릉출장마사지를 받아 봤는데
    정말 만족스러웠어요.
    그중에서도 강릉출장샵의 전문적인 케어가 인상 깊었어요.

    나중에도 재이용 의사 100%예요.
    좋은 정보 감사합니다!

    Look at my web page … 강릉출장안마

    Reply
  33. Catharine

    Naprawdę dobry tekst. Wiele konkretnych porad.

    Pozdrawiam za ten materiał. Czekam na więcej.
    Trafnie napisane – temat doboru mebli bywa wymagająca.
    Przydatne podejście.
    Szczerze pomocne. Szukałem takich informacji już jakiś czas.

    Super robota!

    my web page … Catharine

    Reply
  34. SITUS SCAM

    Ahaa, its fastidious conversation about this post at this place at this web
    site, I have read all that, so at this time me also commenting here.

    Reply

Leave a Reply

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