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

  1. Krab market - Безопасность использования krab market: защита данных и анонимность

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

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

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

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

    Reply
  2. Vivod iz zapoya v stacionare_ufMn

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

    Reply
  3. pregnancy-massage-nj.njmassage.info

    ALL RIGHT. Now this may well not look to be relevant,
    and yet my very own daily life working experience is valid.
    Now, I am a Prenatal Massage therapist. I see various kinds of individuals
    nearly every afternoon and be of assistance to these
    folks to enjoy a considerably less tense, even more rewarding, and less distressing gestation. Almost every specific
    person goes through many different considerations.
    prenatal massage addresses this process, although being a therapist I
    really need to be more adaptive and keen to pay attention to exactly how
    to most beneficially help. Right now there is basically no
    instance when a simple alternative would most likely aid
    nearly everybody. That is my very own situation, yet my personal
    style of conveying could possibly be ambiguous. Serious pain in the lower back is not all the details
    of which a mother-to-be handles. In a similar fashion, certainly no classification of people at any time experience hardships in the same way, and to aid the group, therapists should certainly be incredibly good audience and listen effectively.

    Reply
  4. sex live

    Thanks for every other fantastic article. Where else may just anybody get that
    kind of info in such an ideal manner of writing?
    I’ve a presentation subsequent week, and I’m on the
    search for such info.

    Reply
  5. bokepterbaru

    Hello There. I found your weblog the usage of msn. This is a really well written article.
    I will be sure to bookmark it and return to learn more of your
    helpful information. Thanks for the post. I’ll definitely return.

    Reply
  6. iptv installeren

    Greetings from Carolina! I’m bored to tears at work so I decided to browse your website on my iphone during lunch break.
    I really like the information you provide here and
    can’t wait to take a look when I get home. I’m surprised at how
    fast your blog loaded on my cell phone .. I’m not even using
    WIFI, just 3G .. Anyhow, awesome site!

    Reply
  7. Vivod iz zapoya v stacionare_rgst

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

    Reply
  8. live sex

    Please let me know if you’re looking for a
    article writer for your site. You have some really great posts and I believe 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. Thank you!

    Reply
  9. m6官网

    Good day! This is my first visit to your blog! We are a team of volunteers and starting a new project in a community in the
    same niche. Your blog provided us valuable information to work on. You have done a extraordinary
    job!

    Reply
  10. Vivod iz zapoya v stacionare_ypKr

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

    Reply
  11. https://www.dentalpro-file.com/post-format-gallery/

    Чистота и прозрачность продукта напрямую зависят от
    качества фильтрации. Фильтр-картон применяется в пищевой, фармацевтической и химической промышленности для эффективного удаления частиц и микроорганизмов.
    Он подходит для очистки вина, пива,
    напитков, сиропов и других жидкостей.

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

    Reply
  12. situs bokep

    I’m not sure where you are getting your info, but good topic.
    I needs to spend some time learning much more or understanding
    more. Thanks for magnificent info I was looking for this info
    for my mission.

    Reply
  13. Baixar WhatsApp para Iphone

    I really like your blog.. very nice colors & theme. Did you create this website yourself or did you hire someone to do it for you?
    Plz reply as I’m looking to design my own blog and would like to find out where u got this from.
    appreciate it

    Reply
  14. 虎扑篮球

    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
  15. chicken road casino demo

    Schon krass zu beobachten, wie sehr die ganze Szene die Online-Casinos in letzter
    Zeit verändert, da alte Spiele oft langweilig wirken, sobald man selbst schon diese spannenden Games gespielt hat.

    Meiner Meinung nach glaube ich, dass die Ruhe bei jedem Schritt oftmals entscheidender wirkt denn bloßes Zufall,
    und hilft dieser kostenlose chicken road game demo durch chicken road casino demo extrem,
    um ein Gespür für diese Multiplikatoren erhält, ehe jemand echtes Guthaben setzt.
    Meiner Meinung nach, dass viele Zocker zu
    schnell vorgehen und dadurch leider Pech haben, obwohl gerade eine Disziplin bei diesen Spielen der echte Faktor zum Sieg bleibt.
    Was meint ihr darüber, zahlen sind diese Mini-Games auf Dauer eher im Vergleich zu bekannten Früchte-Slots, beziehungsweise ist
    alles nur ein neuer Hype? Wie kommt die meisten dabei geschicktesten vor, wenn eine Verlustserie einsetzt?

    Reply
  16. Reggie

    Rzeczowy tekst. Dużo wartościowych inspiracji. Dzięki za
    podzielenie się. Czekam na więcej.
    Masz rację – sprawa doboru mebli bywa wymagająca. Przydatne podejście.

    Szczerze inspirujące. Szukałem czegoś takiego od dawna.
    Dziękuję!

    My website Reggie

    Reply
  17. 비아그라 판매

    I do accept as true with all the ideas you’ve presented for
    your post. They’re very convincing and will definitely work.

    Still, the posts are too short for novices. May
    you please extend them a little from subsequent time?
    Thanks for the post.

    Reply
  18. qianqi.cloud

    It’s truly very difficult in this full of activity life to listen news
    on Television, thus I just use web for that reason, and obtain the
    newest information.

    Reply
  19. https://Google-Pluft.nl/

    Wertvoller Artikel. Eine Menge praktische Anregungen. Danke fürs Teilen. Ich werde öfter reinschauen.
    Treffend formuliert – die Sache der Möbelauswahl kann herausfordernd.
    Gut, dass es jemand erklärt.
    Sehr praxisnah. Ich war schon nach solchen Informationen seit einiger Zeit gesucht.
    Super Arbeit!

    my site – https://Google-Pluft.nl/

    Reply
  20. Read more

    Hey, I think your site might be having browser compatibility issues.
    When I look at your blog in Opera, 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, awesome blog!

    Reply
  21. врач лазеротерапевт Казань

    В нашей клинике вы всегда можете воспользоваться услугами
    капельница для лица ,
    объединяющими высокую экспертизу
    врачей и современные технологии.
    Мы — клиника доктора Доберштейн в Казани: центр эстетической медицины, косметологии, гинекологии, трихологии и комплексного здоровья.

    Инъекционная косметология
    — биоревитализация, мезотерапия, плазмолифтинг, контурная пластика.
    Только сертифицированные препараты и
    естественный результат.
    Лазерная косметология — удаление родинок, папиллом, бородавок,
    кератом, кондилом (лазером и радиоволновым
    методом), лазерная эпиляция, шлифовка лица, лечение
    постакне, розацеа, сосудов.
    Аппаратная косметология — RF-лифтинг, микротоки, фотоомоложение, УЗ-чистка, SMAS-лифтинг,
    LPG-массаж, карбокситерапия.
    Терапевтическая косметология — лечение акне, купероза, демодекоза, возрастных изменений, пилинги, чистки
    лица.
    Выпадение волос — диагностика (трихоскопия), лечение алопеции у мужчин и
    женщин, мезотерапия, PRP-терапия,
    плазмотерапия. Прием трихолога.

    Гинекология — консультация акушера-гинеколога, лечение ЗППП, молочницы, воспалений.

    Эстетическая гинекология: интимное омоложение лазером, контурная
    пластика филлерами, плазмолифтинг, биоревитализация.

    Комплексные программы —
    снижение веса под контролем эндокринолога, программа интимного омоложения, диагностика и лечение ожирения.

    IV-терапия (капельницы) — капельница Майерса, «Золушка»,
    «Антистресс», детокс, для иммунитета, энергии, красоты кожи и волос, похудения.

    Удаление новообразований — родинки, папилломы, бородавки, кондиломы, кератомы,
    фибромы, липомы, атеромы, ксантелазмы, милиумы.
    Радиоволновой и лазерный метод —
    без шрамов.
    Подарочные сертификаты — электронные и бумажные, на любую сумму или процедуру.

    Отличный подарок.
    Консультации врачей — косметолог,
    трихолог, гинеколог, эндокринолог.
    Запись онлайн или по телефону.
    Ждем вас в авторской клинике доктора Доберштейн в Казани — вашем центре красоты и здоровья.

    Reply
  22. casino con Bizum

    El clásico de clásicos es el bono de bienvenida. Habitualmente consiste en un match sobre
    tu primer depósito, por ejemplo 100% hasta $50,000 ARS.

    Esto significa que si depositás $50,000, el casino te regala
    otros $50,000 para jugar.

    Reply
  23. primary mathematics tuition

    Beуond јust improving grades, primary math tuition fosters ɑ positive and enthusiastic attitude tоward mathematics, easing fear
    ᴡhile sparking genuine іnterest in numberѕ and patterns.

    Math tuition ⅾuring secondary years strengthens advanced analytical thinking, ᴡhich prove invaluable not օnly
    f᧐r exams future pursuits in STEM fields, engineering, economics, аnd data-гelated disciplines.

    JC math tuition provides rigorous guidance аnd exam-oriented repetition required tօ smoothly navigate tһe steep difficulty jսmp from O-Level Additional Math t᧐
    the proof-heavy H2 Mathematics syllabus.

    In a city ѡith packed schedules and heavy traffic, internet-based secondary math coaching enables secondary learners
    tߋ access focused exam preparation ɑt any convenient tіme,
    dramatically improving tһeir ability to solve graph-based questions.

    OMT’ѕ bite-sized lessons protect ɑgainst overwhelm,
    allowing progressive love fоr math to grow and motivate regular test preparation.

    Discover tһe benefit of 24/7 online math tuition ɑt OMT, where engaging resources mɑke learning fun аnd reliable for aⅼl levels.

    In ɑ syѕtеm wһere mathematics education hаѕ evolved to cultivgate
    innovation ɑnd global competitiveness, registering in math tuition guarantees students гemain ahead bу deepening thеir understanding and application оf
    essential ideas.

    Improving primary education ᴡith math tuition prepares trainees fοr PSLE byy cultivating а
    development frame оf mind toᴡard tough subjects ⅼike proportion аnd chɑnges.

    Normal simulated O Level examinations in tuition setups mimic actual ⲣroblems, allowing students t᧐ refine
    theiг technique and minimize errors.

    Ꮃith routine mock examinations аnd comprehensive comments, tuition assists junior university
    student recognize ɑnd correct weaknesses ƅefore thе real A Levels.

    Τhe uniqueness of OMT depends on itѕ custom curriculum thаt connects MOE syllabus voids ᴡith additional sources ⅼike proprietary
    worksheets ɑnd services.

    Comprehensive insurance coverage оf subjects ѕia, leaving no
    gaps in expertise fоr top mathematics achievements.

    Singapore’ѕ competitive streaming ɑt young ages makes earⅼy math tuition important for securing beneficial paths tօ test success.

    Look іnto my page :: primary mathematics tuition

    Reply
  24. VG98

    Hi, every time i used to check weblog posts here in the early hours in the break of day, for the reason that i love to learn more and more.

    Reply
  25. https://Thailandtribunal.com/news/kaizenaire-launches-kaizenaire-insider-an-exciting-new-initiative-celebrating-singapore-entrepreneurs/456780

    Discover thе curated globe ߋf deals ɑt Kaizenaire.com, hailed aѕ Singapore’s
    finest web site fⲟr promotions and shopping offers.

    The magic οf Singapore ɑs a shopping heaven depends
    ߋn just how іt feeds Singaporeans’ ressing appetite
    for promotions and cost savings.

    Singaporeans unwind ѡith puzzle-solving sessions fⲟr mental excitement,
    and kеep in mind to remain updated ߋn Singapore’s moѕt recent promotions and shopping deals.

    The Social Foot gіves stylish, comfortable shoes, loved ƅү active
    Singaporeans fօr their blend of fashion and function.

    ႽT Engineering provides aerospace аnd defense engineering solutions lah,
    valued Ьy Singaporeans for thеir technology іn modern technology ɑnd
    national contributions lor.

    TungLok Ԍroup showcases refined Chinese food іn upscale dining establishments, valued by Singaporeans fоr special events аnd
    exquisite seafood prep ѡork.

    Wah, ѕo exciting sia, Kaizenaire.com regularly іncludes brand-new discounts lor.

    Feel free tߋ visit my webpage jabra promotions,
    https://Thailandtribunal.com/news/kaizenaire-launches-kaizenaire-insider-an-exciting-new-initiative-celebrating-singapore-entrepreneurs/456780,

    Reply
  26. https://www.ancienttypewriters.De

    Hey, ich bin hier durch Zufall gelandet und ich stelle fest, dass man hier echt was mitnimmt. Ich bin gerade dabei, die Einrichtung neu zu und jeder Hinweis ist Gold wert. Einen schönen Tag euch allen.
    Spannender Thread. Ich kann aus eigener Erfahrung sagen, dass die richtige Farbgebung nicht zu unterschätzen ist. Es lohnt sich, dafür Zeit zu nehmen.

    My web site … https://Www.ancienttypewriters.de/index.php?title=Das_Esszimmer_einrichten:_Gem%C3%BCtlichkeit_auf_kleinem_Raum

    Reply

Leave a Reply

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