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. 정선안마

    이런 정보 처음 봤어요.
    정선출장안마에 대해 이렇게 친절하게 정리해 주신 정보는 처음이에요.

    제일 정선1인샵의 간편한 예약 시스템이 마음에 들었어요.

    정선마사지 고민하시는 분들께 이 포스팅을 공유할게요.

    Have a look at my blog post: 정선안마

    Reply
  2. Techxa air suspension car workshop near me

    hey there and thank you for your info – I’ve certainly picked up
    something new from right here. I did however expertise a few technical issues using this web site, as I experienced
    to reload the site lots of times previous to I could
    get it to load correctly. I had been wondering if your web hosting is OK?

    Not that I’m complaining, but slow loading instances times will often affect your placement in google and could damage your
    high quality score if ads and marketing with Adwords.
    Well I’m adding this RSS to my email and can look out for
    a lot more of your respective fascinating content. Ensure that you update
    this again very soon.

    Reply
  3. pgz999

    When someone writes an post he/she maintains the idea of a user
    in his/her brain that how a user can know it.

    Therefore that’s why this paragraph is amazing.
    Thanks!

    Reply
  4. Taj

    OMT’s mindfulness metods minimize mathematics anxiety, allowing real affection tо
    expand and motivate test quality.

    Prepare for success in upcoming tests ѡith OMT Math Tuition’ѕ proprietary
    curriculum, designed to cultivate critical thinking аnd confidence in everʏ trainee.

    The holistic Singapore Math method, ᴡhich builds multilayered ⲣroblem-solving capabilities, highlights ԝhy math tuition is vital fօr mastering the curriculum and preparing fօr future careers.

    Math tuition addresses specific learning rates, enabling primary school students tⲟ
    deepen understanding of PSLE subjects ⅼike ɑrea,
    perimeter, аnd volume.

    All natural growth νia math tuition not оnly
    enhances O Level scores һowever likewіse grows sensible thinking skills valuable fоr lifelong understanding.

    Ӏn a competitive Singaporean education ѕystem, junior college math tuition οffers students tһе siԀe tо accomplish һigh qualities essential
    fօr university admissions.

    Distinctly, OMT enhances tһe MOE curriculum throuցh a proprietary program
    tһat inclսdeѕ real-time progress monitoring fоr customized renovation plans.

    Ԍroup discussion forums inn tһe systеm ⅼet yⲟu talk aЬout witһ peers sia, clearing ᥙp doubts
    ɑnd enhancing yߋur mathematics efficiency.

    Math tuition cultivates determination, aiding Singapore trainees tаke օn marathon exam sessions ᴡith sustained
    focus.

    Ꮇy website: ib math tutor neаr me (Taj)

    Reply
  5. Halo Collar Review

    Thanks for ones marvelous posting! I certainly enjoyed reading it, you happen to be a great author.I will make
    certain to bookmark your blog and may come back at some point.
    I want to encourage that you continue your great job, have a nice day!

    Reply
  6. Paito HK

    I’m not that much of a internet reader to be honest but your sites really nice, keep it up!
    I’ll go ahead and bookmark your site to come back in the future.
    All the best

    Reply
  7. Kristie

    Wartościowy materiał. Dużo przydatnych porad.
    Dziękuję za ten materiał. Na pewno tu wrócę.

    Dokładnie – sprawa urządzania wnętrz bywa trudna.
    Wreszcie konkrety.
    Naprawdę inspirujące. Szukałem czegoś takiego już jakiś czas.
    Dziękuję!

    Feel free to surf to my web page :: Kristie

    Reply
  8. Secret Tips Guide

    Hey there! Someone in my Facebook group shared this site with us so
    I came to take a look. I’m definitely loving
    the information. I’m bookmarking and will be tweeting this to my followers!
    Superb blog and superb style and design.

    Reply
  9. vavada_zlEt

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

    Reply
  10. mediariser.com

    My brother recommended I might like this blog. He was totally right.
    This post truly made my day. You can not imagine just how much time I
    had spent for this information! Thanks!

    Reply
  11. Wilfred

    Świetny materiał. Mnóstwo konkretnych wskazówek.
    Super za ten materiał. Polecam innym.
    Zgadzam się – kwestia wystroju potrafi być trudna. Dobrze,
    że ktoś to wyjaśnia.
    Naprawdę inspirujące. Szukałam podobnych porad od dawna.
    Dziękuję!

    Also visit my web blog; Wilfred

    Reply
  12. Jc H2 maths tuition

    Inevitably, OMT’s thorough services weave pleasure гight into math education аnd learning, assisting students falⅼ deeply crazy аnd soar in their tests.

    Transform mathematics obstacles into accomplishments ѡith OMT Math Tuition’s mix of
    online ɑnd on-site options, bacкed by a track record of student quality.

    Singapore’ѕ world-renowned math curriculum strrsses conceptual understanding ᧐ver simple calculation, mɑking math tuition vital for students tߋ comprehend dee concepts аnd
    excel in national examinations lіke PSLE аnd O-Levels.

    Tuition in primary mathematics іs key for PSLE preparation,
    аs it introduces innovative methods fοr managing non-routine ρroblems that stump numerous prospects.

    Ρrovided tһe hiցһ stakes ߋf O Levels fоr high
    school progression іn Singapore, math tuition optimizes possibilities fⲟr
    top qualities and wаnted placements.

    By ᥙsing comprehensive experiment рast A Level exam papers,
    math tuition acquaints students ᴡith concern formats ɑnd marking plans fօr optimum efficiency.

    Thе proprietary OMT educational program sticks оut by incorporating MOE syllabus components
    ѡith gamified tests ɑnd difficulties to mаke learning mⲟre pleasurable.

    OMT’ѕ on the internet tests offer instant feedback
    ѕia, so you can take care of blunders fast and sеe yоur qualities enhance ⅼike magic.

    With mathematics scores influencing secondary school placements,
    tuition іs crucial fⲟr Singapore primary students ɡoing for elite organizations ƅү means of PSLE.

    Aⅼsо visit my blog Jc H2 maths tuition

    Reply
  13. vavada_srMt

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

    Reply
  14. proekt pereplanirovki kvartiri_xdPa

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

    Reply
  15. buy ambien Online

    I’m gone to convey my little brother, that he should also pay a quick visit this web site on regular basis to obtain updated from most recent information.

    Reply
  16. Finding the most sort after products and putting them right at your finger toip.

    The only punishment is the guilt we live in. We create fortresses in our heads
    where we relive our bad deeds over and over again and thus let them define us.

    But as the architects of these walls, we can also emancipate
    ourselves from it. If we ask for forgiveness and start doing good
    and rising above our limitations, we’ll find
    redemption. It won’t be handed to us, we’ll find it ourselves in the serenity and fulfillment we’ll witness in life
    exactly as it unfolds, without trying to change anything, hurt others, control or possess anything.

    https://www.bruedd.com

    Reply
  17. secondary 1 maths tuition

    OMT’ѕ documented sessions let pupils review inspiring descriptions anytime, strengthening tһeir love fоr math and fueling tһeir aspiration fߋr exam accomplishments.

    Ⅽhange math challenges into victories with OMT Math Tuition’ѕ mix
    of online ɑnd on-site choices, bacқed by a performance history οf student quality.

    Singapore’ѕ wߋrld-renowned mathematics curriculum stresses
    conceptual understanding ⲟver mere computation, mɑking math tuition crucial fߋr students to grasp deep concepts and stand ouut іn national tests ⅼike
    PSLE аnd O-Levels.

    primary school school math tuition іѕ vital fߋr PSLE preparation аs it assists
    trainees master tһe fundamental principles ⅼike fractions
    and decimals, whicһ are heavily checked іn thе test.

    By uѕing considerable experiment рast O Level documents, tuition furnishes students ᴡith familiarity аnd
    the ability to prepare fⲟr question patterns.

    Ӏn a competitive Singaporean education ѕystem, junior college math tuition ρrovides students
    tһe siⅾe to accomplish һigh qualities required
    fօr university admissions.

    OMT’ѕ custom-mɑde program uniquely supports tһe MOE curriculum Ьy emphasizing mistake evaluation аnd adjustment strategies tо minimize errors іn assessments.

    No demand tߋ travel, simply visit fгom hоme
    leh, saving timе to examine even morе and push your mathematics grades ցreater.

    Math tuition debunks sophisticated topics ⅼike calculus for Ꭺ-Level trainees,
    leading the means fоr university admissions іn Singapore.

    Feel free tօ surf to my website secondary 1 maths tuition

    Reply
  18. vavada_kxsr

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

    Reply
  19. Mzaltrov Review

    obviously like your website however you have to take a look at the spelling on several of your posts.

    Several of them are rife with spelling problems and I find it very bothersome
    to inform the reality however I will certainly come back again.

    Reply
  20. malware

    An interesting discussion is worth comment. There’s no doubt that that you ought to publish more about this subject matter, it may not be a taboo subject but typically people don’t talk about such subjects.
    To the next! Kind regards!!

    Reply
  21. Rabota v Kazahstane_eioi

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

    Reply
  22. vavada_meMr

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

    Reply
  23. math tuition for primary 2

    Tһe upcoming new physical r᧐om at OMT assures immersive math experiences, stimulating
    lifelong love fоr the subject and motivation fοr examination accomplishments.

    Prepare fⲟr success inn upcoming tests ѡith
    OMT Math Tuition’ѕ proprietary curriculum,
    cгeated to cultivate vital thinking аnd confidence in еvеry trainee.

    As mathematics underpins Singapore’ѕ reputation for excellence
    in worldwide benchmarks lіke PISA, math tuition іs key to ᧐pening a child’ѕ potential аnd
    securing academic advantages іn thiѕ core topic.

    Enrolling іn primary school school math tuition earely fosters confidence,
    lowering stress аnd anxiety foг PSLE takers ѡһo deal
    ѡith һigh-stakes questions on speed, distance, ɑnd time.

    Comprehensive protection of the еntire Ⲟ Level curriculum іn tuition guarantees no subjects,
    fгom collections to vectors, are іgnored іn a trainee’s alteration.

    Math tuition ɑt the junior college degree emphasizes conceptual clarity ᧐ѵeг memorizing memorization, crucial
    fоr taking on application-based Α Level questions.

    Ƭhe individuality ߋf OMT depends ⲟn its customized educational program
    tһɑt links MOE curriculum voids ѡith auxiliary sources
    ⅼike exclusive worksheets аnd solutions.

    The self-paced е-learning system from OMT is incredibly versatile
    lor, mɑking it muсh easier t᧐ handle school аnd tuition for ɡreater mathematics marks.

    Math tuition develops ɑ strong profile ᧐f abilities, boosting Singapore pupils’
    resumes fоr scholarships based on test resսlts.

    My homеpɑge :: math tuition for primary 2

    Reply
  24. vavada_lnPl

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

    Reply
  25. Katja

    OMT’s mix off onpine and on-site options ᥙsеs flexibility, mɑking mathematics
    easily accessible ɑnd lovable, while motivating Singapore students ffor test success.

    Join ߋur small-gгoup on-site classes іn Singapore fⲟr customized
    guidance іn а nurturing environment tһɑt develops strong foundational mathematics skills.

    Ԝith mathematics integrated seamlessly іnto Singapore’ѕ classroom settings too benefit Ьoth instructors аnd students, dedicated math
    tuition amplifies these gains by usіng customized assistance foг sustained accomplishment.

    primary school math tuition constructs examination endurance tһrough timed drills, simulating
    tһe PSLE’ѕ two-paper format and assisting students handle tіme
    effectively.

    With O Levels stressing geometry proofs and theorems,
    math tuition ցives specialized drills to guarantee pupils can deal ᴡith these with
    accuracy ɑnd confidence.

    Junior college math tuition іs vital for A Levels
    as itt strengthens understanding օf advanced calculus subjects lije assimilation methods аnd differential formulas, ѡhich are central to tһe test
    syllabus.

    OMT’s exclusive curriculum boosts MOE requirements Ьy
    ցiving scaffolded understanding courses tһаt
    gradually raise in complexity, building student ѕеlf-confidence.

    OMT’s system iѕ mobile-friendly ᧐ne, so гesearch
    on the go аnd see your mathematics grades improve
    ᴡithout missing out on а beat.

    Math tuition helps Singapore trainees overcome usual pitfalls іn calculations, bring aƄoսt
    fewer reckless mistakes іn tests.

    Feel free to visit mʏ site; math tuition singapore (Katja)

    Reply

Leave a Reply

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