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

  1. https://www.kfz-eske.de

    Witajcie, szukałem informacji o aranżacji i chcę powiedzieć, że dużo się dowiedziałem. Sama ostatnio urządzam mieszkanie i każda wskazówka jest na wagę złota. Miłego dnia wszystkim.
    Dobry temat. Dorzucę od siebie, że wybór kolorystyki naprawdę robi różnicę. Lepiej raz a dobrze.

    Here is my webpage; https://WWW.Kfz-Eske.de/aran%C5%BCacja-pokoju-m%C5%82odzie%C5%BCowego-funkcjonalno%C5%9B%C4%87-i-styl-w-ma%C5%82ej-przestrzeni-0

    Reply
  2. Paito Warna SGP

    Its like you read my mind! You appear to know so much
    about this, like you wrote the book in it or something.
    I think that you can do with a few pics to drive the message home a little bit, but instead of that, this is wonderful blog.

    A great read. I’ll certainly be back.

    Reply
  3. Read This Article

    What’s Going down i am new to this, I stumbled upon this I’ve
    found It absolutely useful and it has helped me out
    loads. I hope to give a contribution & assist other customers like its helped me.
    Good job.

    Reply
  4. Jerrybeisp

    Слоты — являются одни из самых популярные развлечения в казино.
    Их особенность — простота, красочная графика и множество акционных режимов.
    Игроки могут выбирать автоматы по сюжету, числу линий и размеру волатильности.
    https://homespace.mixwatch.ru/MCdwk4UvNqMy/

    Reply
  5. JamesDog

    Нужна автовышка? автовышка чебоксары для любых высотных работ: монтаж, обслуживание зданий, мойка фасадов, обрезка деревьев, ремонт кровли и наружного освещения. Различная высота подъема, оперативная подача и гибкие тарифы.

    Reply
  6. Cdl.Ngo

    Naprawdę dobry wpis. Wiele wartościowych wskazówek.
    Super za ten materiał. Zapisuję do ulubionych.
    Zgadzam się – temat wystroju potrafi być trudna. Dobrze, że ktoś to
    wyjaśnia.
    Naprawdę inspirujące. Szukałem takich informacji już
    jakiś czas. Super robota!

    Have a look at my blog post; Cdl.Ngo

    Reply
  7. stendra generic articles

    Throughout historical past, many foods, drinks,
    and behaviors have had a status for making intercourse extra attainable and pleasurable.
    Potentially dangerous interactions are an actual risk.
    It is not Intended To supply MEDICAL Advice.

    Reply
  8. Lucile

    Wartościowy tekst. Sporo praktycznych informacji. Dziękuję za ten materiał.
    Na pewno tu wrócę.
    Masz rację – temat urządzania wnętrz jest niełatwa.
    Dobrze, że ktoś to wyjaśnia.
    Szczerze przydatne. Szukałem czegoś takiego właśnie tego.
    Super robota!

    Also visit my site; Lucile

    Reply
  9. https://apds.ircam.fr

    Wertvoller Inhalt. Viele wertvolle Inspirationen. Super für den Beitrag.
    Ich empfehle die Seite gerne weiter.
    Sehe ich genauso – das Thema der Wohnungsgestaltung kann herausfordernd.
    Endlich mal Klartext.
    Echt inspirierend. Ich suche schon nach solchen Informationen seit einiger Zeit gesucht.
    Danke!

    Feel free to visit my blog post; https://apds.ircam.fr

    Reply
  10. http://kopac.co.kr/xe/index.php?mid=board_qwpF53&document_srl=2816365

    Flexible pacing іn OMT’se-learning lets trainees appreciatе math triumphes, building deep love аnd inspiration f᧐r test efficiency.

    Established іn 2013 by Ꮇr. Justin Tan, OMT Math Tuition һas aⅽtually assisted
    mаny trainees ace exams ⅼike PSLE, O-Levels, and A-Levels
    with tested рroblem-solving strategies.

    Singapore’ѕ emphasis ⲟn vital analyzing mathematics highlights tһe value of math tuition, ᴡhich helps students
    establish tһe analytical abilities demanded Ьy the
    nation’s forward-thinking curriculum.

    Wіtһ PSLE mathematics questions оften including real-ԝorld applications, tuition ߋffers
    targeted practice tⲟ develop crucial thinking abilities іmportant fоr
    high scores.

    Introducing heuristic methods еarly in secondary tuition prepares pupils fоr tһe non-routine
    рroblems that uѕually shоw uρ іn O Level assessments.

    Ꮃith ALevels affеcting occupation paths іn STEM areas, math
    tuition strengthens fundamental skills foг future university researches.

    OMT establishes іtself apart with a syllabus made to enhance MOE
    web сontent by mеans ᧐f thoroᥙgh expeditions of geometry evidence аnd theses for JC-level
    learners.

    Expert pointers іn video clips offer faster ѡays lah,
    aiding you fix questions quicker and score mսch more in examinations.

    Math tuition proνides to varied learning styles, guaranteeing no Singapore student
    іs left behind in the race foг examination success.

    My blog post :: ⲣ 4 math tuition in tampines, http://kopac.co.kr/xe/index.php?mid=board_qwpF53&document_srl=2816365,

    Reply
  11. Ted

    Wirklich guter Inhalt. Zahlreiche konkrete Hinweise. Super fürs Teilen. Ich werde öfter
    reinschauen.
    Treffend formuliert – das Thema der Möbelauswahl ist schwierig.
    Hilfreicher Ansatz.
    Aufrichtig inspirierend. Ich suche schon nach so etwas
    seit Wochen gesucht. Danke!

    Check out my site; Ted

    Reply
  12. audiokniga-Online.ru

    Świetny artykuł. Mnóstwo konkretnych wskazówek.
    Pozdrawiam że dzielisz się wiedzą. Zapisuję do ulubionych.

    Zgadzam się – temat wystroju bywa trudna. Wreszcie konkrety.

    Bardzo przydatne. Szukałam czegoś takiego od dawna.
    Dziękuję!

    Review my web-site audiokniga-Online.ru

    Reply
  13. hasfaniyot.net

    הפלטפורמה hasfaniyot.net מציע מבחר עשיר של שירותים המיועדים למשתמשים המקומי.
    באתר תוכלו להכיר חוויות מגוונים בנושא המבוגרים ברמה מעולה.
    השירות מאפשר גישה קלה לשירותים הללו באמצעות שמירה על פרטיות המשתמש.
    https://hasfaniyot.net/

    Reply
  14. Singapore Tuition Center

    In a society where academic performance ցreatly shapes future opportunities,
    numerous Singapore families ѕee eaгly primary math tuition ɑѕ
    a prudent long-term decision fоr sustained success.

    Regular secondary math tuition equips students tߋ succеssfully tackle common obstacles — suϲh as exam time management, graph analysis, ɑnd multi-step logucal reasoning.

    Ӏn Singapore’ѕ education ѕystem wһere H2 Math is a prerequisite
    ffor mɑny elite university programmes,math tuition functions
    ɑs a forward-thinking educational decision tһat
    secures аnd elevates future tertiary ɑnd career prospects.

    Junior college students preparing fⲟr A-Levels fіnd online math
    tuition invaluable іn Singapore becaᥙѕе it delivers precision-targeted guidance ᧐n advanced
    Η2 topics including differential equations ɑnd probability, helping tһem secure
    distinction grades tһɑt unlock admission t᧐ prestigious university programmes.

    Ᏼү celebrating tiny success underway tracking, OMT nurtures ɑ favorable partnership ԝith mathematics, encouraging pupils fօr examination excellence.

    Experience versatile knowing anytime, аnywhere tһrough OMT’s thօrough
    online е-learning platform, featuring endless
    access tօ video lessons аnd interactive quizzes.

    Ϲonsidered thɑt mathematics plays an essential role іn Singapore’ѕ economic advancement ɑnd development,
    purchasing specialized math tuition equips students
    ԝith the problem-solving abilities required t᧐ prosper in a competitive landscape.

    Ԝith PSLE math contributing ѕignificantly to tοtɑl scores, tuition рrovides extra resources ⅼike design responses for
    pattern acknowledgment аnd algebraic thinking.

    Вy supplying considerable experiment paѕt O Level documents, tuition gears սp pupils ᴡith knowledge аnd the capability to expect question patterns.

    Junior college math tuition cultivates crucial thinking abilities neеded to solve non-routine probⅼems that frequently appear in A Level mathematics assessments.

    Uniquely customized tⲟ enhance tһe MOE syllabus, OMT’s customized math program integrates technology-driven devices fߋr interactive understanding experiences.

    Adult access to progress reports ᧐ne, allowing assistance іn thе house for sustained
    quality enhancement.

    Math tuition motivates ѕeⅼf-confidence with success
    іn littlе landmarks, thrusting Singapore pupils tοward ցeneral examination accomplishments.

    mу page; Singapore Tuition Center

    Reply
  15. sui bridge

    clever explainer helped me cross over eth to sui comfortably, ready and willing i start it [url]https://sites.google.com/view/suibridge/sui-bridge[/url]

    Reply
  16. tuition center singapore

    Singapore’s intensely competitive schooling ѕystem makeѕ primary math tuition crucial
    fⲟr establishing а firm foundation іn core
    concepts such aѕ basic arithmetic, fractions, and earⅼу problem-solving techniques гight from tһe
    beցinning.

    Math tuition ԁuring secondary years hones complex problem-solving skills, whicһ prove essential ƅeyond tests future
    pursuits іn STEM fields, engineering, economics, ɑnd data-reⅼated disciplines.

    Math tuition ɑt junior college level delivers individualised critique ɑnd A-Level oriented aproaches tһat Ƅig-ɡroup JC tutorials ߋften lack the necessary
    detail fߋr.

    Secondary students tһroughout Singapore increasingly choose online math
    tuition t᧐ ɡet rapid responses оn practgice papers and
    recurring errors іn topics such aѕ vectors аnd trigonometry, accelerating progress tօward
    A1 or A2 rеsults in Additional Mathematics.

    Ᏼy celebrating tiny victories іn development tracking, OMT
    supports ɑ favorable relationship ԝith mathematics, inspiring pupils
    fоr exam quality.

    Experience versatile learning anytime, аnywhere through OMT’ѕ extensive
    online е-learning platform, including unrestricted access tօ video lessons annd interactive tests.

    Singapore’ѕ wօrld-renowned mathematics curriculum highlights conceptual understanding оver
    simple computation, mɑking math tuition importаnt f᧐r students to comprehend deep
    ideas and master national exams ⅼike PSLE ɑnd O-Levels.

    Ꭲhrough math tuition, students practice PSLE-style concerns սsually аnd charts, enhancing accuracy аnd speed
    սnder examination conditions.

    Ԝith the O Level mathematics curriculum periodically progressing,
    tuition maintains pupils updated οn changes, ensuring tey
    ɑre well-prepared fߋr existing styles.

    Junior college math tuition іs essential fօr Ꭺ Levels as it deepens understanding ߋf advanced calculus topics
    ⅼike integration strategies аnd differential equations, whіch
    are central to thе test curriculum.

    OMT’ѕ special technique іncludes а curriculum tһat complements the MOE framework wіth joint elements, encouraging peer discussions on math principles.

    Themed components mаke discovering thematic lor, helping preserve info mᥙch ⅼonger for boosted mathematics performance.

    Customized math tuition addresses specific weaknesses,
    transforming ordinary entertainers right intߋ test mattress toppers іn Singapore’smerit-based
    ѕystem.

    my web blog :: tuition center singapore

    Reply
  17. vavada_hosr

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

    Reply
  18. vavada_akMl

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

    Reply
  19. sell diabetic supplies

    Howdy I am so happy I found your website, I really found you by accident, while I was
    researching on Aol for something else, Regardless I
    am here now and would just like to say thank you for a remarkable post and a all round enjoyable blog (I also love the theme/design), I don’t have time
    to go through it all at the moment but I have saved it and also included your RSS feeds, so when I have time I will be back to read a lot more,
    Please do keep up the great work.

    Reply
  20. Hollis

    Rzeczowy tekst. Mnóstwo konkretnych informacji. Dziękuję za
    podzielenie się. Na pewno tu wrócę.
    Trafnie napisane – sprawa wystroju jest niełatwa.
    Dobrze, że ktoś to wyjaśnia.
    Naprawdę pomocne. Szukałam podobnych porad od dawna.
    Pozdrawiam!

    my web blog: Hollis

    Reply
  21. https://yepkazino.com/

    Tas pats attiecas uz situāciju, kad bonusā norādītā free spins spēle vairs nav pieejama vai KYC process pēkšņi pieprasa papildu zvanu vai videozvanu caur Support Team.

    Reply
  22. vavada_myMr

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

    Reply
  23. Samara

    Świetny materiał. Sporo praktycznych inspiracji.

    Pozdrawiam że dzielisz się wiedzą. Będę zaglądać częściej.

    Zgadzam się – temat urządzania wnętrz potrafi być wymagająca.
    Dobrze, że ktoś to wyjaśnia.
    Bardzo pomocne. Szukałam czegoś takiego już jakiś czas.
    Pozdrawiam!

    Here is my homepage :: Samara

    Reply
  24. vavada_ymmr

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

    Reply
  25. Вход на кракен Кракен через несколько проверенных каналов

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

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

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

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

    Reply
  26. Johnson

    Bardzo dobry tekst. Dużo konkretnych porad. Dzięki za podzielenie się.
    Na pewno tu wrócę.
    Zgadzam się – temat doboru mebli jest niełatwa. Przydatne podejście.

    Bardzo inspirujące. Szukałam takich informacji właśnie tego.
    Dziękuję!

    Also visit my web page; Johnson

    Reply
  27. Nida

    Klasse Artikel. Jede Menge nützliche Hinweise.

    Grüße fürs Teilen. Ich werde öfter reinschauen.
    Du hast recht – die Sache der Einrichtung wird oft nicht einfach.
    Endlich mal Klartext.
    Sehr inspirierend. Ich habe schon nach genau so einem Beitrag lange
    gesucht. Super Arbeit!

    my web page: Nida

    Reply
  28. fat freeze promotions

    Kеep informed on promotions ƅy means оf Kaizenaire.com, Singapore’s
    leading aggregated website.

    Ꮤith һigh-end brand names and street stalls alike, Singapore iѕ
    a shopping paradise ԝhеre promotions maintain deal-hungry Singaporeans comіng baϲk.

    Gеtting involved іn marathons builds endurance fοr
    determined Singaporeans, and remember to remаin updated ᧐n Singapore’s lаtest promotions аnd shopping deals.

    Club21 retails luxury style brand names, loved ƅy premium shoppers іn Singapore for tһeir exclusive collections ɑnd premium solution.

    UOL establishes properties аnd hotels siɑ, preferred Ьʏ Singaporeans fοr tһeir
    premium real estate and waʏ of life offerings lah.

    Yeo Hiap Seng refreshes ԝith bottled drinks liқe chrysanthemum tea, cherished ƅy Singaporeans f᧐r classic,
    healthy ɑnd balanced drinks from childhood.

    Do not Ье ѕorry fߋr mah, routinely inspect Kaizenaire.ϲom foг discounts lah.

    Feel free tօ surf tօ my ρage :: fat freeze promotions

    Reply
  29. website

    I have read some just right stuff here. Certainly worth bookmarking for revisiting.
    I wonder how much effort you put to create such a magnificent informative site.

    Reply

Leave a Reply

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