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. หวยออนไลน์ที่ดีที่สุด

    Magnificent goods from you, man. I’ve take into accout your stuff prior to and you’re just too excellent.
    I really like what you’ve got right here, certainly like what you are saying and the best
    way by which you say it. You make it enjoyable
    and you still care for to stay it wise. I can’t wait to read much more from you.
    That is really a great site.

    Reply
  2. Www.3d4C.fr

    Rzeczowy wpis. Wiele przydatnych inspiracji. Dzięki za podzielenie się.
    Zapisuję do ulubionych.
    Zgadzam się – temat wystroju jest trudna. Dobrze, że ktoś to wyjaśnia.

    Naprawdę przydatne. Szukałem czegoś takiego już jakiś czas.
    Pozdrawiam!

    Also visit my web-site http://Www.3d4C.fr

    Reply
  3. situs bokep

    Oh my goodness! Awesome article dude! Thank you so much, However I am experiencing troubles with your
    RSS. I don’t understand the reason why I cannot subscribe to it.
    Is there anybody else getting identical RSS problems?
    Anyone that knows the solution can you kindly respond? Thanks!!

    Reply
  4. Kasyno Online Polska

    Kasyno Collateral bez Depozytu za Rejestracje to jedna
    z najbardziej popularnych conformation promocji oferowanych przez legalne platformy hazardowe online.
    Tego typu douceur 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
  5. Kisha

    Rzeczowy artykuł. Wiele wartościowych informacji.
    Dzięki że dzielisz się wiedzą. Będę
    zaglądać częściej.
    Masz rację – kwestia doboru mebli jest wymagająca.

    Dobrze, że ktoś to wyjaśnia.
    Bardzo inspirujące. Szukałem czegoś takiego właśnie tego.
    Dziękuję!

    My web site :: Kisha

    Reply
  6. luxury home remodeling

    What’s Taking place i’m new to this, I stumbled
    upon this I have found It positively helpful and it has helped me out loads.
    I’m hoping to give a contribution & aid different customers like its aided me.
    Good job.

    Reply
  7. More Help

    Hello there, You have done an incredible job. I’ll certainly
    digg it and personally recommend to my friends. I
    am sure they will be benefited from this site.

    Reply
  8. najlepsze kasyna internetowe

    Kasyno Compensation bez Depozytu za Rejestracje to jedna z
    najbardziej popularnych conformation promocji oferowanych przez legalne platformy hazardowe online.

    Tego typu remuneration 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
  9. vavada_yyEi

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

    Reply
  10. porno terbaru

    Nice blog here! Additionally your site loads up fast!
    What web host are you using? Can I am getting your
    affiliate link to your host? I desire my web site loaded up as
    quickly as yours lol

    Reply
  11. https://harry.main.Jp

    Ciekawy artykuł. Wiele konkretnych wskazówek.

    Dziękuję za podzielenie się. Zapisuję do ulubionych.

    Dokładnie – sprawa urządzania wnętrz potrafi być trudna.
    Wreszcie konkrety.
    Naprawdę inspirujące. Szukałam takich informacji
    już jakiś czas. Super robota!

    Here is my web-site – https://harry.main.Jp

    Reply
  12. proekt pereplanirovki kvartiri_goPa

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

    Reply
  13. https://ideahubb.com/the-idiots-guide-to-secondary-4-math-tuition-singapore-explained/

    With limitless accessibility tо exercise worksheets, OMT empowers pupils tⲟ grasp math via repetition, developing love fօr the subject ɑnd exam
    self-confidence.

    Broaden your horizons with OMT’s upcoming new physical space opеning in Seⲣtember 2025, using much moгe opportunities fоr hands-on mathematics exploration.

    Ꭺs mathematics underpins Singapore’ѕ reputation for quality іn worldwide standards liҝe PISA, math tuition iѕ essential tօ opеning ɑ kid’s prospective
    and protecting scholastic benefits іn this core topic.

    primary math tuition develops exam stamina tһrough timed drills, mimicking thhe PSLE’ѕ
    two-paper format and helping trainees manage tіme suⅽcessfully.

    Ꮤith the O Level mathematics curriculum occasionally advancing, tuition кeeps pupils updated оn adjustments,
    ensuring theу are ԝell-prepared fоr existing layouts.

    Ꮃith A Levels demanding effectiveness in vectors and intricate numƅers,
    math tuition supplies targeted method tо takе care of these abstract ideas effectively.

    OMT stands аpаrt with its exclusive math curriculum,
    carefully made tо complement tһe Singapore MOE syllabus Ƅү filling out conceptual gaps tһаt basic
    school lessons mіght forget.

    Expert ideas іn video clips giѵе faster ways lah, helping үou fix inquiries quicker аnd score
    much more in exams.

    By focusing οn error analysis, math tuition protects ɑgainst repeating errors tһat cɑn set yοu baϲk valuable
    marks in Singapore examinations.

    Ⅿy web-site: tuition coronation plaza maxi math [https://ideahubb.com/the-idiots-guide-to-secondary-4-math-tuition-singapore-explained/]

    Reply
  14. Verona

    Ciekawy wpis. Sporo wartościowych informacji. Pozdrawiam za podzielenie się.
    Będę zaglądać częściej.
    Zgadzam się – sprawa wystroju potrafi być niełatwa.

    Przydatne podejście.
    Szczerze inspirujące. Szukałem podobnych porad już jakiś czas.
    Dziękuję!

    Feel free to visit my blog post: Verona

    Reply
  15. Visit Your URL

    great issues altogether, you just gained a emblem new reader.
    What may you recommend about your publish that you made a few days in the past?
    Any positive?

    Reply
  16. wedding music tips

    What’s up, this weekend is pleasant designed for me, for the reason that this point in time i am reading this
    impressive informative paragraph here at my house.

    Reply
  17. check my site

    Having read this I thought it was very enlightening. I appreciate you taking the time and energy to put this article together.
    I once again find myself spending a significant amount
    of time both reading and posting comments. But so what, it was still worthwhile!

    Reply
  18. sex

    Excellent goods from you, man. I have remember your stuff prior to and you are just too magnificent.
    I actually like what you have got right here, certainly
    like what you’re stating and the best way wherein you assert it.

    You’re making it enjoyable and you continue to take care of to keep it wise.
    I can not wait to learn much more from you. That is really a great site.

    Reply
  19. situs dewasa

    I’m not sure why but this site is loading very slow for me.
    Is anyone else having this issue or is it a problem
    on my end? I’ll check back later on and see if the problem still
    exists.

    Reply
  20. Rogelio

    Bardzo dobry tekst. Mnóstwo praktycznych inspiracji.
    Pozdrawiam za ten materiał. Na pewno tu
    wrócę.
    Zgadzam się – temat wystroju bywa trudna. Dobrze, że ktoś to wyjaśnia.

    Szczerze inspirujące. Szukałam czegoś takiego od dawna.
    Pozdrawiam!

    my website Rogelio

    Reply
  21. pereplanirovka kvartir_dlOi

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

    Reply
  22. YEP Casino

    Yep casino Romania oferă o gamă de metode de plată populare și sigure,
    astfel încât jucătorii să poată alimenta și retrage fondurile în condiții cât mai confortabile.

    Reply
  23. vavada_ddEi

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

    Reply
  24. used motors for sale

    Hi, i think that i saw you visited my site thus i came to “return the
    favor”.I am trying to find things to enhance my site!I suppose its ok
    to use a few of your ideas!!

    Reply
  25. top math tutors

    Unlike large classroom settings, primary math
    tuition ⲟffers personalized attention tһat аllows children tο
    promptly resolve confusion аnd deeply understand difficult topics ɑt thеir
    own comfortable pace.

    Math tuition ⅾuring secondary үears sharpens complex probⅼem-solving skills,
    ѡhich prove invaluable not οnly for exams future pursuits іn STEM fields, engineering,
    economics, аnd data-related disciplines.

    Ϝor JC students finding tһe shift challenging tߋ
    autonomous academic study, оr thߋsе seeking to upgrade fгom Β to A, math tuition delivers tһe decisive advantage neеded to
    excel in Singapore’s highly meritocratic post-secondary environment.

    Seecondary students аcross Singapore increasingly depend
    оn remote O-Level math support tо receive live targeted instruction ᧐n demanding topics ѕuch аs algebra and trigonometry,
    using virtual annotation features regardless ᧐f physical distance.

    OMT’ѕ exclusive curriculum presents enjoyable obstacles tһɑt mirror examination inquiries, stimulating love fоr math and the motivation to do wonderfully.

    Experience flexible learning anytime, аnywhere thrоugh OMT’ѕ comprehensive online e-learning platform, featuring
    endless access t᧐ video lessons ɑnd interactive quizzes.

    Singapore’ѕ ѡorld-renowned math curriculum stresses conceptual understanding оver mere calculation, mɑking math tuition vital for trainees tо grasp deep ideas and excel
    in national exams liҝe PSLE and O-Levels.

    Math tuition helps primary trainees excel іn PSLE by strengthening tһe Singapore
    Math curriculum’ѕ bar modeling method fоr visual analytical.

    Regular simulated O Level examinations іn tuition settings mimic genuine conditions,
    allowing trainees t᧐ refine their method and decrease mistakes.

    Building confidence ԝith regular support іn junior college math tuition decreases examination stress ɑnd anxiety, bring aƅoᥙt far bеtter outcomes іn A Levels.

    OMT’s exclusive mathematics program matches MOE requirements ƅy emphasizing conceptual proficiency ⲟver rote understanding, leading
    tо deeper lasting retention.

    OMT’ѕ inexpensive online choice lah, supplying һigh
    quality tuition ԝithout breaking tһе bank foг far better mathematics end reѕults.

    Math tuition satisfies varied discovering designs, guaranteeing no Singapore trainee
    іs left behіnd in thе race foг test success.

    Feel free tⲟ surf tο my web blog; top math tutors

    Reply
  26. заказать кроссовки Dolce Gabbana

    Кроссовки D&G — представляют собой идеальный союз неповторимой элегантности и современных трендов.
    Главной особенностью данных моделей является броский дизайн с применением премиальных тканей и фирменной фурнитуры.
    Такие модели замечательно смотрятся для ежедневной жизни, внося в образ нотку шика.
    https://omskapteka.ru/info/490-osobennosti-dizayna-kakie-elementy-firmennogo-stilya-dolce-and-gabbana-prisutstvuyut-v-krossovkakh.htm

    Reply
  27. physics and maths tutor c4 solutionbank

    Tһrough heuristic techniques shоwed ɑt OMT, pupils find oᥙt tto think
    ⅼike mathematicians, sparking enthusiasm аnd drive for remarkable examination performance.

    Discover tһe benefit of 24/7 online math tuition ɑt OMT, where engaging resources mаke learning enjoyable
    and efficient foг all levels.

    With math incorporated seamlessly іnto Singapore’ѕ classroom settings tо benefit ƅoth teachers
    аnd students, dedicated math tuition amplifies tһese gains bʏ uѕing
    tailored assistance foг sustained achievement.

    Ꮤith PSLE mathematics progressing tο consist of m᧐re interdisciplinary aspects, tuition кeeps students upgraded
    օn incorporated concerns mixing math ѡith science contexts.

    Ƭhorough feedback from tuition instructors ߋn technique efforts aids secondary trainees gain fгom blunders,
    boosting precision for thе actual Օ Levels.

    Ꮃith normal simulated exams ɑnd thorough responses, tuition assists junior university student recognize аnd correct weak рoints prior
    tߋ the real Ꭺ Levels.

    OMT sticks out ѡith іtѕ proprietary mathematics educational program,
    carefully designed tօ enhance the Singapore MOE syllabus
    ƅy completing conceptual voids tһat basikc school lessons could forget.

    Videotaped webinars suppoly deep dives lah, outfitting
    үou ѡith advanced abilities for superior math marks.

    Singapore’ѕ affordable streaming аt young ages makeѕ еarly math tuition crucial fоr protecting helpful paths tо exam success.

    Ⅿy web blog … physics and maths tutor c4 solutionbank

    Reply
  28. kasyna internetowe

    Greetings from Carolina! I’m bored at work so I decided to check out your site on my iphone during
    lunch break. I love the info you provide here and can’t wait to
    take a look when I get home. I’m amazed at how quick your blog loaded on my cell
    phone .. I’m not even using WIFI, just 3G .. Anyways, superb site!

    Reply
  29. buy

    It’s in reality a great and helpful piece of info. I am happy that you simply shared this helpful information with us.
    Please keep us informed like this. Thank you for sharing.

    Reply
  30. slot paling gacor

    I am not sure where you’re getting your info, but great topic.
    I needs to spend some time learning much more or understanding more.

    Thanks for excellent info I was looking for this information for my mission.

    Reply
  31. sex video online

    Heya i’m for the first time here. I found this board and
    I find It really useful & it helped me out a lot.
    I hope to give something back and aid others like
    you aided me.

    Reply
  32. http://conquest.nu/

    Świetny artykuł. Sporo konkretnych informacji.
    Pozdrawiam za ten materiał. Zapisuję do ulubionych.

    Zgadzam się – sprawa urządzania wnętrz bywa trudna.
    Przydatne podejście.
    Bardzo przydatne. Szukałam czegoś takiego już jakiś czas.
    Pozdrawiam!

    Feel free to visit my web-site; http://conquest.nu/

    Reply
  33. aistockchallenge.com

    I’m really loving the theme/design of your website. Do you ever run into any browser compatibility problems?
    A few of my blog visitors have complained about my site not working
    correctly in Explorer but looks great in Safari. Do you have any advice to
    help fix this issue?

    Reply
  34. Https://Outdoordream.cz/

    Witajcie, trafiłem tu przypadkiem i stwierdzam, że dużo się dowiedziałem. Sama ostatnio zmieniam wystrój i takie porady bardzo się przydają. Miłego dnia wszystkim.
    Dobry temat. Z mojego doświadczenia aranżacja wnętrza to podstawa. Polecam się nie spieszyć.

    Reply

Leave a Reply

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