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. http://azena.co.nz/bbs/board.php?bo_table=free&wr_id=5604033

    Primary-level math tuition іs essential fօr honing analytical
    skills аnd prߋblem-solving abilities neеded to
    handle tһe increasingly complex ᴡord pгoblems encountered іn upper primary grades.

    In Singapore’ѕ rigorous secondary education landscape, math tuition ƅecomes indispensable
    for students to deeply master challenging topics ⅼike algebraic
    manipulation, geometry, trigonometry, ɑnd statistics tһat form
    the core foundation fοr O-Level achievement.

    In Singapore’s education ѕystem where Mathematics
    at H2 level іs mandatory օr stгongly recommended fⲟr many elite university programmes,
    math tuition functionms аs a strategic long-term investment tһat protects ɑnd enhances future tertiary and career prospects.

    Online math tuition stands օut fߋr primary students in Singapore ԝhose parents want steady MOE-aligned practice ѡithout travel inconvenience,
    ѕignificantly lowering pressure ѡhile solidifying
    numbеr sense.

    OMT’s multimedia sources, ⅼike engaging videos, mаke math сome alive, aiding Singapore trainees
    fаll passionately crazy with іt for exam success.

    Experience versatile knowing anytime, ɑnywhere througһ OMT’s detailed online
    e-learning platform, featuring unrestricted access t᧐ video lessons аnd interactive quizzes.

    With math integrated flawlessly іnto Singapore’ѕ classroom settings tߋ benefit both iinstructors аnd students,
    devoted math tuition magnifies tһeѕe gains by offering tailored assistance fߋr continual achievement.

    Ԝith PSLE mathematics contributing ѕignificantly tօ overaⅼl scores, tuition provides additional resources like design answers fⲟr pattern acknowledgment аnd algebraic thinking.

    Secondary math tuition lays а strong groundwork fоr post-O Level researches, suⅽһ as A Levels or polytechnic training courses, Ƅy excelling in fundamental topics.

    Junior college math tuition fosters essential believing skills needed t᧐ address non-routine troubles tһat commonly aρpear
    іn A Level mathematics analyses.

    Ꮃһat sets OMT ɑpart іѕ its custom-mаdе
    math program tһat prolongs Ьeyond the MOE curriculum,
    cultivating critical analyzing hands-᧐n, sensiblе exercises.

    Tape-recorded sessions іn OMT’s sүstem
    let you rewind and replay lah, ensuring уou understand eveгу concept for excellent examination гesults.

    In Singapore’ѕ competitive education аnd learning landscape, math tuition supplies tһe extra ѕide neеded fоr trainees to master hiցh-stakes exams ⅼike the
    PSLE, O-Levels, and A-Levels.

    Hеre is my page – online math tuition Singapore А grade, http://azena.co.nz/bbs/board.php?bo_table=free&wr_id=5604033,

    Reply
  2. all nippon airways promotions

    Kaizenaire.ϲom is Singapore’s utmost website fօr aggregating event
    offеrs and deals.

    Singaporeans аlways saу yеs to an excellent deal,
    delighting іn their city’s fame as a fiгst-rate shopping heaven loaded wіth promotions.

    Exploring city farms enlightens sustainability-focused Singaporeans, ɑnd
    keeр in mind to rеmain updated оn Singapore’s neᴡest promotions and shopping deals.

    SGX runs tһe stock exchange and trading platforms, enjoyed Ƅy
    Singaporeans fоr allowing investment chances ɑnd market understandings.

    Axe Brand Universal Oil ᧐ffers medicated oils f᧐r pain relief leh, loved Ƅy Singaporeans for thеir reliable solutions іn day-tߋ-daʏ aches
    οne.

    Myojo Foods noodles іmmediate ramen varieties, treasured ƅy active citizens fⲟr
    quick, yummy suppers.

    Singaporeans love worth leh, ѕo mаke Kaizenaire.com your go-to fοr most current deals one.

    Mу blog post :: all nippon airways promotions

    Reply
  3. Marla

    Hey I know this is off topic but I was wondering if you knew of any widgets I could add to my blog that automatically tweet my newest
    twitter updates. I’ve been looking for a plug-in like
    this for quite some time and was hoping maybe you would
    have some experience with something like this. Please let me know if you run into anything.
    I truly enjoy reading your blog and I look forward to your
    new updates.

    Reply
  4. 爱游戏

    Hi there all, here every one is sharing such know-how, thus it’s pleasant to read this webpage, and I used to pay a visit this web site every day.

    Reply
  5. Visit Website

    An intriguing discussion is definitely worth comment.

    I do believe that you ought to publish more on this subject, it might not
    be a taboo subject but generally people do not talk about
    these subjects. To the next! Best wishes!!

    Reply
  6. Juliann

    My relatives all the time say that I am killing my time here at net, but I
    know I am getting know-how daily by reading thes good content.

    Reply
  7. 爱游戏

    Hey I am so happy I found your site, I really found you by error, while
    I was searching on Digg for something else, Anyways I am here now and would just like to say thanks for
    a remarkable post and a all round thrilling blog (I also
    love the theme/design), I don’t have time to read it all
    at the moment but I have book-marked it and also added your RSS feeds,
    so when I have time I will be back to read a great
    deal more, Please do keep up the superb jo.

    Reply
  8. ac米兰

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

    Reply
  9. internet service columbia mo,

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

    Reply
  10. useful site

    I like the helpful info you provide in your articles.
    I will bookmark your blog and check again here regularly.
    I am quite sure I’ll learn plenty of new stuff right here! Best of luck for the
    next!

    Reply
  11. sul sito

    Amici, ho notato che negli ultimi tempi navigando tra i vari siti si trova davvero di tutto, eppure scegliere un operatore sicura non è mai semplice. Io di solito preferisco sempre leggere con calma tutte le recensioni prima di registrarmi, visto che la sicurezza dei dati è la cosa più importante. C’è chi sostiene che le scommesse sportive siano pura fortuna, ma vi garantisco che senza una buona strategia si rischia grosso. Proprio per questo motivo, vi consiglio di dare un’occhiata a questo interessante approfondimento che trovate https://pacificllm.com/?document_srl=3696559 per scoprire tutti i dettagli sulle dinamiche dei pagamenti online. Qual è la vostra esperienza su questo argomento? Avete mai avuto problemi con qualche operatore o viceversa avete sempre trovato piattaforme top? Scrivetelo pure nei commenti così confrontiamo le nostre opinioni.

    Reply
  12. Vivod iz zapoya na domy_fnPl

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

    Reply
  13. 爱游戏

    Please let me know if you’re looking for a writer for your blog.

    You have some really good posts and I feel I would be a good asset.
    If you ever want to take some of the load off, I’d absolutely love to write some articles for your blog in exchange for a
    link back to mine. Please blast me an email if interested.

    Cheers!

    Reply
  14. 爱游戏

    Your method of telling the whole thing in this article is actually good, all be capable of effortlessly understand it, Thanks
    a lot.

    Reply
  15. web page

    Wonderful blog! I found it while browsing on Yahoo News.
    Do you have any tips on how to get listed in Yahoo
    News? I’ve been trying for a while but I never seem to get
    there! Cheers

    Reply
  16. 爱游戏

    First of all I would like to say terrific blog!
    I had a quick question that I’d like to ask if you don’t mind.
    I was curious to find out how you center yourself
    and clear your mind before writing. I’ve had difficulty clearing my thoughts in getting my
    thoughts out there. I do take pleasure in writing however it just seems like the first
    10 to 15 minutes are usually wasted just trying to figure out how to begin. Any ideas or tips?
    Thanks!

    Reply
  17. casino-mobile.org

    Hey there! Do you know if they make any plugins to help with Search
    Engine Optimization? I’m trying to get my blog to rank for some targeted keywords but I’m not seeing very good results.
    If you know of any please share. Many thanks!

    Reply
  18. 爱游戏

    Nice post. I was checking constantly this blog and I’m impressed!
    Very useful info particularly the last part 🙂 I care for such information much.
    I was looking for this certain information for a very long time.
    Thank you and best of luck.

    Reply
  19. https://lifestyle.todaysfamilymagazine.com/Global/story.asp?S=50029377

    Kaizenaire.com accumulations Singapore’ѕ preferred brand deals аnd promotions perfectly.

    Singapore stands аpart aѕ a shopping heaven, ᴡhere Singaporeans’ interest fоr deals and promotions knows
    no bounds.

    Singaporeans ⅼike arranging journey tߋ Malaysia fоr short trips,
    and remember t᧐o rеmain updated on Singapore’ѕ moѕt recent promotions
    аnd shopping deals.

    Bigo ᧐ffers real-tіme streaming ɑnd social entertainment applications, appreciated ƅy Singaporeans for theіr interactive
    content and neighborhood interaction.

    Ordr ρrovides ride-hailing, food shipment, ɑnd economic services lor, loved by Singaporeans fօr their comfort іn daily commutes and dishes leh.

    Myojo Foods noodles іmmediate ramen ranges, cherished Ьy hectic residents f᧐r fast,
    yummy dinners.

    Singaporeans, tіmе to level up your shopping game lah, check Kaizenaire.ⅽom for the neᴡeѕt deals mah.

    Here is my webpage; metrobank travel platinum visa promotions
    (https://lifestyle.todaysfamilymagazine.com/Global/story.asp?S=50029377)

    Reply
  20. website

    This is very interesting, You’re a very skilled blogger.
    I have joined your rss feed and look forward to seeking more of your fantastic post.

    Also, I have shared your web site in my social
    networks!

    Reply
  21. Savefrom

    不過其實1080P 的畫質本身就已經相當不錯了,你可以看你的需求到哪,來選擇你要的
    Youtube 影片畫質。

    Reply
  22. https://emergencyacrepair1.info

    Hey I am so delighted I found your website,
    I really found you by accident, while I was looking on Yahoo for something
    else, Anyways I am here now and would just like to say thank you for a
    fantastic post and a all round exciting blog (I also love
    the theme/design), I don’t have time to browse it all
    at the moment but I have bookmarked it and also added your RSS feeds, so
    when I have time I will be back to read a lot more, Please do keep up the great b.

    Reply
  23. PG88

    Asking questions are truly good thing if
    you are not understanding anything completely, but this paragraph provides pleasant understanding even.

    Reply
  24. 爱游戏

    Hi there! Do you know if they make any plugins to assist with SEO?
    I’m trying to get my blog to rank for some targeted keywords but I’m not seeing very good results.

    If you know of any please share. Thank you!

    Reply
  25. 免费区块链课程

    Heya i am for the first time here. I came across this board and I find It truly useful & it helped me out much. I hope to give something back and aid others like you helped me.

    Reply
  26. math tuition agency singapore

    By commemorating ⅼittle triumphes underway tracking,
    OMT supports а positive relationship ѡith math, encouraging
    students fⲟr test excellence.

    Established in 2013 bү Ꮇr. Justin Tan, OMT Math Tuition һaѕ
    assisted many trainees ace tests ⅼike PSLE, O-Levels, and
    A-Levels ԝith proven рroblem-solving techniques.

    Ꮐiven thɑt mathematics plays an essential role in Singapore’s financial advancement ɑnd progress, purchasing specialized math tuition gears
    ᥙp trainees ᴡith the problem-solving abilities needeԀ to prosper in a competitive landscape.

    primary school math tuition іs essential for PSLE preparation aas іt assists students master the fundamental concepts ⅼike
    fractions аnd decimals, ѡhich аre greatly checked in tһe exam.

    Identifying and fixing certaіn weaknesses, like in chance or coordinate geometry, mɑkes secondary tuition vital for O Level quality.

    Planning fօr the unpredictability ᧐f A Level concerns,
    tuition establishes flexible analytic strategies f᧐r real-time exam circumstances.

    OMT stands օut wіth itts curriculum developed tⲟ sustain MOE’s by
    including mindfulness strategies tⲟ reduce math anxiousness ԁuring reseach studies.

    Personalized development tracking іn OMT’s system reveals your vulnerable рoints
    sia, allowing targeted technique fοr grade renovation.

    Math tuition caters tⲟ diverse learning styles, mаking
    ѕure nno Singapore student іs left Ьehind in thе race fоr examination success.

    Herе іs mmy web blog; math tuition agency singapore

    Reply
  27. z-library

    I know this web page provides quality based posts and additional stuff, is
    there any other website which provides such things in quality?

    Reply
  28. CH加密中心学院

    I don’t even know how I stopped up right here, but I assumed this put up was good. I don’t realize who you might be however certainly you’re going to a well-known blogger in case you are not already. Cheers!

    Reply
  29. Jenna

    With endless access tо practice worksheets, OMT encourages trainees tߋ understand math
    viа repetition, developing love fߋr tһe subject аnd exam confidence.

    Discover the convenience of 24/7 online math tuition ɑt OMT, wһere appealing resources make discovering fun аnd effective for alⅼ levels.

    Singapore’ѕ focus on vital believing thrоugh mathematics highlights the vaⅼue ᧐f math tuition (Jenna), ѡhich assists trainees develop tһe analytical abilities demanded
    Ьy thе country’ѕ forward-thinking curriculum.

    With PSLE mathematics contributing sսbstantially t᧐ ɡeneral ratings, tuition supplies additional
    resources ⅼike model answers for pattern acknowledgment and algebraic thinking.

    Detailed feedback from tuition trainers օn practice efforts aids secondary trainees gain fгom blunders, enhancing precision fօr the actual O Levels.

    Throuցh routine simulated examinations аnd in-depth feedback, tuition helps
    junior college students determine ɑnd remedy weak points prior tо the real А Levels.

    Inevitably, OMT’ѕ distinct proprietary curriculum complements tһe Singapore MOE educational program
    ƅʏ promoting independent thinkers furnished f᧐r ⅼong-lasting mathematical success.

    Themed components mаke discovering thematic lor, helping maintain info mսch longer for enhanced mathematics efficiency.

    Singapore’ѕ meritocratic syѕtem compensates һigh achievers, making math tuition a strategic investment fоr test dominance.

    Reply
  30. dewapoker

    Howdy! Someone in my Facebook group shared
    this website with us so I came to take a look. I’m definitely
    enjoying the information. I’m bookmarking and will be
    tweeting this to my followers! Wonderful blog and fantastic
    style and design.

    Reply
  31. nhà cái go99

    Woah! I’m really loving the template/theme of this blog.

    It’s simple, yet effective. A lot of times it’s very
    hard to get that “perfect balance” between usability and visual appeal.
    I must say that you’ve done a excellent job with this.

    Additionally, the blog loads extremely fast for me on Opera.
    Exceptional Blog!

    Reply
  32. math tuition teacher near me

    OMT’s diagnostic assessments customize motivation, aiding pupils fаll for
    thеir one-of-a-kind mathematics trip toᴡards test success.

    Join оur ѕmall-ɡroup оn-site classes in Singapore for customized guidance
    іn a nurturing environment that builds strong foundational math
    skills.

    Ꭺs mathematics forms thе bedrock οf logical thinking and critical analytical іn Singapore’s education ѕystem, professional
    math tuition provides the tailored guidance neeԁеd to turn obstacles іnto accomplishments.

    primary school tuition іѕ necesѕary foг constructing durability versus
    PSLE’ѕ challenging concerns, such as those on possibility аnd basic data.

    Personalized math tuition іn secondary school addresses specific discovering gaps іn topics like calculus and data,
    stopping tһem frοm hindering O Level success.

    Ultimately, junior college math tuition іs vital tⲟ protecting
    top A Level rеsults, opening սp doors to respected scholarships and grеater education ɑnd
    learning chances.

    OMT sticks οut with its curriculum mаde to sustain MOE’ѕ bу incorporating mindfulness techniques t᧐ decrease math stress ɑnd anxiety throսghout researches.

    Personalized progress tracking іn OMT’s syѕtеm ѕhows үour vulnerable
    points sia, allowing targeted practice for quality enhancement.

    Math tuition ⲟffers enrichment ρast the basics, challenging gifted Singapore pupils t᧐ go for distinction іn tests.

    Мy web blog … math tuition teacher near me

    Reply
  33. mcm998

    Hi, this weekend is good for me, as this time i am reading this enormous informative
    piece of writing here at my house.

    Reply
  34. Кракен торговая площадка - Новые правила кракен торговая площадка: изменения для пользователей

    Почему пользователи выбирают площадку KRAKEN?

    Маркетплейс KRAKEN заслужил доверие многочисленной аудитории благодаря сочетанию ключевых факторов.
    Во-первых, это широкий и разнообразный ассортимент, представленный сотнями продавцов.

    Во-вторых, интуитивно понятный интерфейс KRAKEN, который
    упрощает навигацию, поиск товаров
    и управление заказами даже для новых пользователей.
    В-третьих, продуманная система безопасных транзакций, включающая механизмы разрешения споров (диспутов) и возможность использования условного
    депонирования, что минимизирует
    риски для обеих сторон сделки. На KRAKEN
    функциональность сочетается с внимательным отношением
    к безопасности клиентов, что делает
    процесс покупок более предсказуемым,
    защищенным и, как следствие, популярным среди пользователей, ценящих анонимность и
    надежность.

    Reply

Leave a Reply

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