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

  1. 움짤

    Excellent way of telling, and nice paragraph to take information concerning myy presentation subject, which i amm going to convey
    in school.
    움짤

    Reply
  2. poker88

    I am really impressed with your writing skills as well as with the layout on your blog.
    Is this a paid theme or did you modify it yourself?
    Either way keep up the excellent quality writing, it is rare to see a nice blog like this one nowadays.

    Reply
  3. iptv installeren

    My programmer is trying to convince me to move to .net from
    PHP. I have always disliked the idea because of the costs.
    But he’s tryiong none the less. I’ve been using WordPress
    on numerous websites for about a year and am nervous about switching to another platform.
    I have heard great things about blogengine.net. Is there a way
    I can transfer all my wordpress posts into it? Any help would
    be greatly appreciated!

    Reply
  4. child hardcore sex

    Excellent weblog right here! Additionally your site lots
    up very fast! What web host are you the usage of?
    Can I get your affiliate hyperlink to your host? I wish my site loaded up as quickly as
    yours lol

    Reply
  5. Wendell

    Toller Inhalt. Zahlreiche praktische Hinweise. Großes Lob fürs
    Teilen. Ich werde öfter reinschauen.
    Genau – die Frage der Wohnungsgestaltung wird
    oft nicht einfach. Hilfreicher Ansatz.
    Wirklich nützlich. Ich war schon nach solchen Informationen seit einiger Zeit gesucht.

    Klasse gemacht!

    Also visit my website … Wendell

    Reply
  6. Kaizenaire Loans Singapore

    Kaizenaire.com curates deals from Singapore’ѕ favorite business
    for ultimate financial savings.

    Singaporeans illuminate ᴡith promotions, personifying tһe spirit of Singapore аs the areɑ’ѕ premier shopping paradise.

    Singaporeans apрreciate laying out metropolitan landscapes іn notе
    pads, and bear in mind to remain updated on Singapore’ѕ most гecent promotions and shopping deals.

    Strip аnd Browhaus offer charm therapies ⅼike waxng
    and eyebrow pet grooming, valued by grooming lovers іn Singapore foг thеir professional
    services.

    Rawbought deals glamorous sleepwear аnd underwear lah,valued ƅy Singaporeans fоr their
    comfy fabrics ɑnd elegant styles lor.

    Meiji milks ѡith yogurts and treats, valued by households foг Japanese-quality dairy products deals ѡith.

    Ꭰо not be suakiu mah, visit Kaizenaire.ⅽom daily fⲟr curated shopping promotions
    lah.

    my web site – Kaizenaire Loans Singapore

    Reply
  7. aktualne bonusy bez depozytu

    Kasyno Strikingly bez Depozytu za Rejestracje to jedna z najbardziej popularnych conformation promocji oferowanych przez legalne platformy hazardowe online.
    Tego typu gratuity 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
  8. Manual.emk-Schweiz.Ch

    Rzeczowy tekst. Wiele praktycznych porad. Dzięki za ten materiał.
    Czekam na więcej.
    Trafnie napisane – kwestia aranżacji bywa niełatwa.
    Przydatne podejście.
    Bardzo przydatne. Szukałem podobnych porad już jakiś
    czas. Super robota!

    Also visit my homepage … Manual.emk-Schweiz.Ch

    Reply
  9. forum backlinks posting

    Simply want to say your article is as astonishing.

    The clearness in your post is simply great and i can assume
    you’re an expert on this subject. Fine with your permission allow me to grab your RSS feed
    to keep up to date with forthcoming post. Thanks a
    million and please continue the rewarding work.

    Reply
  10. 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 licensed 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
  11. slot machine strategy

    Hmm is anyone else encountering problems with the pictures on this blog loading?
    I’m trying to determine if its a problem on my end or if it’s the blog.
    Any feedback would be greatly appreciated.

    Reply
  12. netlinking

    I’m more than happy to find this page. I need to to thank you for your time just for
    this wonderful read!! I definitely really liked every bit of it and I have
    you saved as a favorite to check out new information in your
    blog.

    Reply
  13. YouTube

    Pretty nice post. I just stumbled upon your blog and wished to
    say that I’ve truly enjoyed browsing your blog posts.

    In any case I’ll be subscribing to your feed and I hope
    you write again soon!

    Reply
  14. ChatGPT

    I was recommended this web site by my cousin. I’m
    not sure whether this post is written by him as nobody else know such detailed
    about my trouble. You’re incredible! Thanks!

    Reply
  15. MALWARE

    Hi, I think your blog might be having browser compatibility
    issues. When I look at your website in Ie, 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, great blog!

    Reply
  16. google

    I was curious if you ever considered changing the layout
    of your blog? Its very well written; I love what youve got to say.
    But maybe you could a little more in the way of content so people could connect with it better.
    Youve got an awful lot of text for only having one or two images.
    Maybe you could space it out better?

    Reply
  17. Vito

    Świetny materiał. Sporo wartościowych informacji.
    Dziękuję za podzielenie się. Czekam na więcej.
    Masz rację – kwestia urządzania wnętrz potrafi być wymagająca.
    Przydatne podejście.
    Naprawdę przydatne. Szukałam takich informacji już jakiś czas.
    Dziękuję!

    Feel free to surf to my web-site :: Vito

    Reply
  18. lanciao

    xnxx
    I need to to thank you for this excellent read!! I absolutely enjoyed every bit
    of it. I have got you book marked to look at
    new things you post…

    Reply
  19. dog

    Quality articles is the important to attract the users to pay a quick visit the web page,
    that’s what this web page is providing.

    Reply
  20. press release

    Hi everyone! Just read this post, and I just had to drop
    a comment. As a sixteen-year-old teenager stuck at home with a disability,
    I have a lot of screen time.

    My parents were struggling with massive bank fees for their overseas transfers.
    I decided to step up, so I dug into financial platforms and introduced them to
    Paybis.

    The financials are incredible. First off, Paybis offers 0% commission on the first credit card purchase.

    After that, the markup is a very clear low percentage, plus the blockchain network
    fee. Compared to Western Union, the cost difference is massive.

    I helped them pass KYC in under 5 minutes, and now they buy stablecoins directly with their local
    fiat. Paybis supports over 40 fiat currencies! Plus, the funds go straight
    to their external wallet, meaning no funds locked on an exchange.

    Brilliant post, it perfectly matches how this platform fixed
    our financial headaches!

    Reply
  21. bitpro cricket

    Hi would you mind letting me know which webhost you’re using?
    I’ve loaded your blog in 3 different web browsers and I must say this blog loads a lot quicker then most.
    Can you recommend a good hosting provider at a fair price?
    Many thanks, I appreciate it!

    Reply
  22. live sex

    Does your website have a contact page? I’m having trouble locating it but, I’d
    like to shoot you an e-mail. I’ve got some recommendations
    for your blog you might be interested in hearing. Either way, great site and I look forward to
    seeing it improve over time.

    Reply
  23. Vivod iz zapoya v stacionare_buel

    Здорова, народ Кошмар в семье Соседи уже вызвали участкового Скорая не приедет на такой вызов Короче, спасла только госпитализация — вывод из запоя стационар с круглосуточным наблюдением Выписали через неделю здоровым В общем, вся инфа по ссылке — быстрый вывод из запоя в стационаре [url=https://kodirovanie.vyvod-iz-zapoya-v-staczionare-nizhnij-novgorod-xft.ru]быстрый вывод из запоя в стационаре[/url] Звоните прямо сейчас Перешлите тем кто в беде

    Reply
  24. bokep 18+

    Right here is the right blog for anyone who really wants to understand this topic.

    You understand a whole lot its almost tough to argue with you (not that I
    really will need to…HaHa). You certainly put a brand new
    spin on a topic that’s been written about for many years. Wonderful stuff,
    just great!

    Reply
  25. dewagg

    Thank you, I have just been searching for info about this subject for
    a while and yours is the greatest I’ve came upon so far.
    However, what about the conclusion? Are you positive in regards to the source?

    Reply
  26. rectum

    Hi, i feel that i noticed you visited my website thus i got here to return the choose?.I’m attempting
    to find things to improve my site!I assume its ok
    to use some of your concepts!!

    Reply
  27. Nichol

    Guten Tag, ich bin beim Stöbern hier gelandet und ich möchte sagen, dass das Thema hervorragend beschrieben ist. Ich bin gerade dabei, mein Zuhause neu zu gestalten und solche Tipps sind echt hilfreich. Danke und viele Grüße.
    Interessante Diskussion. Ich kann aus eigener Erfahrung sagen, dass die Farbwahl eine enorme Rolle spielt. Lieber einmal richtig als zweimal.

    Reply
  28. 전주출장안마

    며칠 전부터 피로가 많이 쌓여서
    힐링을 찾고 있었어요.
    지인 소개로 이 글을 발견하고 전주출장안마를 이용해 봤어요.

    테라피스트의 케어가 정말 전문적이었어요.

    전주힐링마사지를 경험하고 나니 피로가 확
    풀렸어요.

    Reply
  29. Vivod iz zapoya v stacionare_nyol

    Люди подскажите Ситуация критическая Соседи уже вызвали участкового В диспансер тащить — последнее дело Короче, спасла только госпитализация — быстрый вывод из запоя в стационаре за 3 дня Врачи и медсёстры 24/7 В общем, телефон и цены тут — выведение из запоя стационар [url=https://klinika.vyvod-iz-zapoya-v-staczionare-nizhnij-novgorod-srv.ru]https://klinika.vyvod-iz-zapoya-v-staczionare-nizhnij-novgorod-srv.ru[/url] Стационар — это единственный выход Перешлите тем кто в беде

    Reply
  30. Louise

    Ƭһe upcoming new physical space аt OMT guarantees immersive math experiences,
    sparking lifelong love fоr the subject ɑnd motivation foг exam success.

    Unlock your child’s fjll potential іn mathematics with OMT Math Tuition’s expert-led classes, customized tо Singapore’s MOE syllabus fߋr primary school, secondary, ɑnd
    JC students.

    Ꭺs mathematics underpins Singapore’s track record
    f᧐r quality іn worldwide benchmarks ⅼike PISA, math tuition іs key to օpening ɑ
    child’s potential аnd securinbg academic advantages іn tһis core topic.

    For PSLE success, tuition ⲣrovides personalized assistance tо weak locations, ⅼike
    ratio аnd portion issues, preventing common risks Ԁuring tһе test.

    With O Levels stressing geometry proofs ɑnd theories, math tuition supplies specialized drills
    tօ make sure students ϲаn take on these with accuracy аnd confidence.

    Tuition offers techniques foг tіme management throughout tһe
    lengthy A Level mathematics tests, enabling pupils tο assign initiatives ѕuccessfully аcross arеas.

    OMT’s exclusive educational program enhances MOE requirements ѡith an alternative
    strategy tһat supports botһ academic skills аnd a passion foг
    mathematics.

    With 24/7 accessibility tⲟ video lessons, you can capture
    up on challenging subjects anytime leh, assisting you score much bettеr іn tests ԝithout anxiety.

    Ϝor Singapore trainees dealing ԝith extreme competitors,
    math tuition еnsures tһey remain ahead by reinforcing
    fundamental abilities еarly.

    mу website – math tuition singapore – Louise

    Reply
  31. mathematics

    Ꮩia OMT’s customized curriculum tһat matches the MOE educational program, pupils reveal tһe appeal
    оf logical patterns, fostering ɑ deep love for math аnd inspiration for high
    examination scores.

    Experience versatile knowing anytime, ɑnywhere tһrough OMT’ѕ thorough online e-learning platform, featuring unrestricted access tⲟ video lessons аnd
    interactive quizzes.

    Singapore’ѕ wߋrld-renowned math curriculum stresses conceptual understanding ᧐ver simple
    calculation, making math tuition essential fοr trainees to comprehend
    deep ideas аnd excel іn national tests ⅼike PSLE аnd O-Levels.

    primary school tuition іs necessary for PSLE аs
    it ρrovides remedial support foor subjects ⅼike entirе numbers and measurements, guaranteeing no foundational
    weak рoints persist.

    Comprehensive insurance coverage οf tһе еntire O Level curriculum іn tuition makes cеrtain no topics, fгom sets
    to vectors, агe overlooked in a student’ѕ modification.

    Tuition educates error evaluation strategies, assisting junior college trainees prevent typical challenges іn A Level estimations ɑnd proofs.

    Ꮤһat mɑkes OMT attract attention iѕ itѕ customized
    syllabus that aligns with MOE wһile integrating AI-driven flexible understanding tߋ match specific demands.

    Taped webinars offer deep dives lah, equipping уou with sophisticated skills
    f᧐r exceptional math marks.

    Ιn Singapore, ѡhere math effectiveness օpens
    up doors to STEM occupations, tuition іs essential for solid exam structures.

    myweb-site: mathematics

    Reply
  32. Vivod iz zapoya na domy_ibSl

    Слушайте кто знает Отец не выходит из штопора Родственники не знают что делать Нужна срочная помощь на дому Короче, только это реально спасло — запой спб лечение на дому Через пару часов человек пришёл в себя В общем, телефон и цены тут — запой спб [url=https://alkogolizm.vyvod-iz-zapoya-na-domu-sankt-peterburg.ru]запой спб[/url] Вывод из запоя на дому — это реальный выход Перешлите тем кто в такой же ситуации

    Reply
  33. ラブドール と は

    理想のドールはクリック一つで手に入れられますし、comはその夢を実現するお手伝いをします.セックス ドール今すぐウェブサイトを訪れて、その違いを体験してみてください—あなたの素晴らしいドールを手に入れる旅が今、始まります!熟練のコレクターでも、新たにリアルドールの世界に足を踏み入れた方でも、comはあなたに長年にわたる喜びと満足感をもたらす完璧なコンパニオンを見つける場所です.

    Reply

Leave a Reply

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