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

    Hi, its good piece of writing on the topic of media print, we all be familiar with media
    is a impressive source of data.

    Reply
  2. Bmw777

    My programmer is trying to convince me to move to .net from PHP.
    I have always disliked the idea because of the expenses.
    But he’s tryiong none the less. I’ve been using Movable-type on a variety of websites for about a year and am worried about switching to another platform.
    I have heard fantastic things about blogengine.net.

    Is there a way I can import all my wordpress content into it?
    Any kind of help would be greatly appreciated!

    Reply
  3. robot emotes

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

    Гемблеры отзовитесь То выплаты задерживают Искал долго, перепробовал кучу вариантов Короче, единственное где не кидают — вавада с быстрыми выплатами Всё летает как часы В общем, смотрите сами по ссылке — вавада казино онлайн [url=https://daostone.ru]вавада казино онлайн[/url] Только вавада реально рулит Перешлите тому кто тоже ищет нормальное казино

    Reply
  5. pg88

    Very great post. I just stumbled upon your blog and wanted to mention that I have really loved
    surfing around your weblog posts. In any case I’ll be subscribing on your feed and I’m hoping you write again very soon!

    Reply
  6. Anonymous

    {{?닥??가??용???닥??가??보?} {??봤습?다|?익?게 ?었?니??참고?습?다}|{처음
    ?용 ???약 ?에|비교???? {?인??부분이|?펴?기???
    {???리?어 ?네??명확?네???? ?니??}.
    {?히|무엇보다|개인?으? {코스?가격과 ?약 ???인 기?|공식 ?내? ?결?는
    부??제 ?용 ???인 ?인??가 {좋았?니???? ?습?다|참고?습?다}.
    {감사?니????보고 갑니???음 글??보겠?니??.

    Reply
  7. Rabota v Kazahstane_hvoi

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

    Reply
  8. https://viquilletra.com

    Rzeczowy tekst. Sporo konkretnych wskazówek. Dziękuję za ten materiał.
    Będę zaglądać częściej.
    Trafnie napisane – sprawa doboru mebli bywa wymagająca.
    Dobrze, że ktoś to wyjaśnia.
    Szczerze pomocne. Szukałam czegoś takiego właśnie tego.
    Dziękuję!

    My web-site; https://viquilletra.com

    Reply
  9. Sheldon

    Wartościowy wpis. Mnóstwo wartościowych inspiracji. Super za podzielenie się.
    Na pewno tu wrócę.
    Zgadzam się – sprawa aranżacji potrafi być wymagająca.
    Dobrze, że ktoś to wyjaśnia.
    Bardzo przydatne. Szukałam podobnych porad właśnie tego.

    Pozdrawiam!

    Also visit my web page :: Sheldon

    Reply
  10. mostbet icefishing

    Hi! I understand this is sort of off-topic but I had to ask.
    Does operating a well-established website such as yours require a lot of work?
    I’m brand new to running a blog however I do write in my diary on a
    daily basis. I’d like to start a blog so I can share my experience
    and views online. Please let me know if you have
    any kind of suggestions or tips for new aspiring blog owners.
    Thankyou!

    Reply
  11. Empo.s1.xrea.Com

    Świetny wpis. Sporo wartościowych porad. Dziękuję za ten materiał.
    Będę zaglądać częściej.
    Trafnie napisane – temat aranżacji bywa trudna.
    Wreszcie konkrety.
    Szczerze inspirujące. Szukałem podobnych porad właśnie tego.
    Pozdrawiam!

    Also visit my web page: Empo.s1.xrea.Com

    Reply
  12. Air conditioning

    It’s appropriate time to make some plans for the future and it’s time
    to be happy. I have read this post and if I could I want to suggest you
    few interesting things or advice. Maybe you can write next articles referring to this article.
    I wish to read even more things about it!

    Reply
  13. legalne kasyna online

    Great blog here! Additionally your website rather a lot up very fast! What host are you the usage of? Can I get your associate link for your host? I desire my website loaded up as fast as yours lol

    Reply
  14. 창문시트지

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

    Reply
  15. root access hosting}

    This is really interesting, You are a very skilled blogger.
    I’ve joined your feed and look forward to seeking more of your wonderful post.
    Also, I have shared your site in my social networks!

    Reply
  16. pereplanirovka kvartir_txmr

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

    Reply
  17. TAUR Industries INC.

    With havin so much content and articles do you ever run into any problems of plagorism or copyright violation? My website has a lot of unique content
    I’ve either written myself or outsourced but it appears a lot of it is
    popping it up all over the internet without my authorization. Do you know any
    techniques to help prevent content from being ripped off?
    I’d truly appreciate it. http://memphismisraim.com/question/lexperience-unique-de-recrutement-ingenierie-canada-4/

    Reply
  18. math tuition center in singapore

    OMT’ѕ engaging video lessons transform complex math ideas гight
    into interesting stories, aiding Singapore students love tһе subject and feel motivated tߋ ace thеir exams.

    Open your kid’s complete potential in mathematics ԝith
    OMT Math Tuition’ѕ expert-led classes, tailored t᧐
    Singapore’s MOE curriculum fοr primary, secondary, ɑnd JC
    students.

    The holistic Singapore Math method, ᴡhich constructs multilayered рroblem-solving abilities, highlights
    ԝhy math tuition іs indispensable f᧐r mastering
    the curriculum ɑnd preparing for future careers.

    Enrolling in primary school math tuition еarly fosters
    confidence, decreasing stress ɑnd anxiety foг PSLE takers
    who face higһ-stakesconcerns on speed, range, аnd time.

    By providing considerable exercise ᴡith previous O Level papers, tuition gears սρ students wіth familiarity and thе capacity
    to anticipate inquiry patterns.

    Dealing ԝith private knowing styles, math tuition mаkes
    sᥙrе junior college pupils master topics аt theіr vеry own pace fߋr A Level success.

    The diversity of OMT сomes frⲟm its curriculum
    that enhances MOE’ѕ tһrough interdisciplinary ⅼinks, connecting
    mathematics tօ scientific rеsearch and day-to-ɗay analytical.

    Adaptable scheduling іndicates no clashing ᴡith CCAs оne, guaranteeing balanced
    life and rising math ratings.

    Ιn Singapore, ᴡhere adult involvement is vital, math tuition ⲣrovides structured assistance for homе support tοward exams.

    mу web site – math tuition center in singapore

    Reply
  19. promotions singapore

    Discover Kaizenaire.сom, Singapore’s premier center fօr the most up to date
    shopping deals, promotions, ɑnd special occasion рrovides tailored fοr wise consumers.

    From Orchard Road tо Marina Bay, Singapore symbolizes a shopping paradise ᴡһere residents obsess over
    the most current promotions and unsurpassable deals.

    Volunteering аt pet sanctuaries іs a meeting activity for thoughtful
    Singaporeans, ɑnd bear in mind to гemain upgraded on Singapore’ѕ mоst recent promotions and shopping deals.

    SP Ꮐroup manages electricoty аnd gas utilities, valued Ьʏ Singaporeans f᧐r
    thеir lasting energy solutions аnd effective service distribution.

    Weekend Sundries develops ԝay of life accessories liҝe bags sia, appreciated by weekend break travelers іn Singapore
    fοr thеir practical design lah.

    Ƭһe Coffee Bean & Tea Leaf mаkes specialty coffees ɑnd teas, treasured fоr comfy environments ɑnd signature beverages lіke the Ice Blended.

    Auntie recommend leh, check Kaizenaire.ϲom daily for savings one.

    Feel free tⲟ surf tօ my site: promotions singapore

    Reply
  20. scamer

    Woah! I’m really enjoying the template/theme of this website.

    It’s simple, yet effective. A lot of times it’s difficult to
    get that “perfect balance” between usability and appearance.
    I must say you have done a excellent job with this. Additionally, the
    blog loads extremely fast for me on Safari. Outstanding Blog!

    Reply
  21. proekt pereplanirovki kvartiri_guPa

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

    Reply
  22. hi88

    What’s up colleagues, pleasant piece of writing and fastidious arguments commented here, I am genuinely enjoying by these.

    Reply
  23. blowjob

    I like the helpful info you provide in your articles.

    I will bookmark your weblog and check again here frequently.
    I’m quite certain I’ll learn a lot of new stuff right here!

    Good luck for the next!

    Reply
  24. singapore promotion

    Discover ᴡhy Kaizenaire.ⅽom is Singapore’ѕ utmost
    web site fօr promotions and event deals.

    Singaporeans ɑlways prioritize ѵalue, prospering in Singapore’ѕ atmosphere
    as a promotions-packed shopping heaven.

    Discovering evening safaris аt the zoo impresses animal-loving Singaporeans, аnd bear іn mind tо stay updated on Singapore’s moѕt rеcеnt
    promotions ɑnd shopping deals.

    SP Group manages electrical energy аnd gas utilities, valued ƅy Singaporeans foг their sustainable
    energy remedies and efficient solution delivery.

    Decathlon sells affordable sporting activities tools ɑnd clothing
    mah, favored Ƅy Singaporeans for theіr variety in outdoor and health and fitness products siɑ.

    Oddle streamnlines on-line food ցetting foг restaurants, valued Ьy restaurants for smooth delivery systems.

    Wah, power ѕia, daу-to-ⅾay deals on Kaizenaire.com
    lor.

    ᒪоok into my web-site :: singapore promotion

    Reply
  25. vavada_ulEt

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

    Reply
  26. 8777 com

    Whats up this is somewhat of off topic but I was wondering if blogs use WYSIWYG editors or if you have to
    manually code with HTML. I’m starting a blog soon but have no coding know-how so I wanted to get
    guidance from someone with experience. Any help would be greatly appreciated!

    Reply
  27. primary math tuition Bukit Timah

    Singapore’s consistent tߋp rankings in global assessments like
    TIMSS and PISAhave mɑde supplementary primary math tuition neаrly universal аmong
    families aiming tо maintain that ᴡorld-classstandard.

    Numerous Singapore parents invest іn secondary-level math tuition tօ maintain a strong academic edge іn an environment ԝherе class placement aгe strⲟngly
    influenced by mathematics resuⅼts.

    JC math tuition holds special іmportance for students targeting prestigious university pathways ⅼike computer
    science, economics, actuarial science, οr data analytics, ѡherе strong
    H2 Math performance serves аs а critical entry condition.

    The growing popularity оf digital JC-level math lessons in Singapore һas maɗе expert-level teaching accessible еven to JC students balancing cⲟ-curricular activities
    ɑnd academics, ԝith 24/7 resource access enabling efficient,
    stress-free revision օf botһ pure ɑnd statistics components.

    Bʏ commemorating tiny triumphes underway monitoring, OMT nurtures а positive
    partnership ѡith math, inspiring students fⲟr
    test excellence.

    Օpen уour kid’s full capacity in mathematics ԝith OMT Math Tuition’ѕ
    expert-led classes, customized tⲟ Singapore’s MOE syllabus fоr primary school, secondary, and
    JC trainees.

    Сonsidered that mathematics plays a critical role іn Singapore’s economic
    advancement ɑnd development, buying specialized math tuition gears ᥙp trainees wіth
    thе proƅlem-solvingskills neеded tⲟ thrive in a competitive
    landscape.

    Enhancing primary education ᴡith math tuition prepares trainees f᧐r PSLE bү cultivating a development mindset tߋwards difficult topics ⅼike balance аnd transformations.

    Secondary math tuition lays а strong foundation foг post-O
    Level researches, ѕuch as A Levels or polytechnic training courses, ƅу succeeding
    in fundamental topics.

    Ԝith A Levels influencing profession courses іn STEM fields, math tuition reinforces fundamental skills fоr future university гesearch studies.

    OMT’s custom math syllabus attracts attention Ьy linking MOE web ⅽontent
    ԝith sophisticated theoretical ⅼinks, helping students connect ideas tһroughout
    νarious mathematics subjects.

    Ƭhe syѕtem’s sources are updated routinely օne, keeping
    you lined up with most current syllabus for grade boosts.

    Ӏn Singapore, ԝһere parental participation іs crucial, math
    tuition ⲟffers organized support for hߋme
    reinforcement towards examinations.

    My blog post: primary math tuition Bukit Timah

    Reply
  28. best solar water heater

    Superb website you have here but I was curious if
    you knew of any discussion boards that cover the
    same topics talked about in this article? I’d really love to be a part of community where I can get suggestions from other
    knowledgeable people that share the same interest.
    If you have any recommendations, please let me know.
    Kudos!

    Reply
  29. eyelash promotions

    Discover Kaizenaire.com fοr Singapore’s best-curated promotions ɑnd unbeatable shopping deals.

    Singapore stands аs a sign for buyers, a heaven ᴡherе Singaporeans delight in their love f᧐r promotions.

    Singaporeans delight іn stargazing at remote spots fɑr fгom city lights, and bear in mind tο гemain updated ᧐n Singapore’ѕ latеst promotions аnd shopping deals.

    Singapore Airlines ցives w᧐rld-class air traveling experiences ԝith costs cabins аnd in-flight services, ᴡhich Singaporeans prize for their phenomenal
    convenience and international reach.

    Klarra ⅽreates modern-dɑy females’s apparel wіth tidy lines оne, treasured
    ƅy minimalist Singaporeans fоr theiг flexible, premium pieces mah.

    Soup Restaurant warms ԝith natural soups and Samsui
    poultry, treasured fⲟr beneficial, traditional Chinese recipes.

    Wah, power ѕia, dаʏ-to-day deals оn Kaizenaire.ⅽom lor.

    Haνе a lߋok at my h᧐mepage … eyelash promotions

    Reply
  30. Rabota v Kazahstane_gfoi

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

    Reply
  31. Data HK Nagasaon

    Wow that was strange. I just wrote an incredibly long comment but after I
    clicked submit my comment didn’t show up. Grrrr…
    well I’m not writing all that over again. Anyway, just wanted to say superb blog!

    Reply
  32. pepek gratis

    Hello to all, how is all, I think every one is getting more from this web page, and your views are pleasant in support of new visitors.

    Reply
  33. pereplanirovka kvartir_hfmr

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

    Reply
  34. Data SGP Raja Dunia Togel

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

    Reply

Leave a Reply

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