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. https://smotrimkino.com

    Wartościowy wpis. Sporo przydatnych inspiracji.

    Pozdrawiam że dzielisz się wiedzą. Na pewno tu wrócę.

    Dokładnie – kwestia urządzania wnętrz potrafi być niełatwa.
    Przydatne podejście.
    Naprawdę przydatne. Szukałem czegoś takiego właśnie tego.
    Pozdrawiam!

    my blog post … https://smotrimkino.com

    Reply
  2. f8betv1.com

    Every weekend i used to go to see this web site, for
    the reason that i wish for enjoyment, as this this web page conations genuinely
    good funny stuff too.

    Reply
  3. vavada_hiMt

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

    Reply
  4. vavada_zwEt

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

    Reply
  5. Lisette

    Hilfreicher Post. Reichlich wertvolle Informationen. Danke für die Mühe.
    Ich warte auf mehr.
    Genau – der Bereich des Wohnstils wird oft anspruchsvoll.
    Danke für die klare Erklärung.
    Sehr inspirierend. Ich habe schon nach genau so einem Beitrag
    genau danach gesucht. Super Arbeit!

    My homepage :: Lisette

    Reply
  6. online casino

    Hiya, I am really glad I have found this information. Nowadays bloggers publish only about gossip and net stuff and this is actually frustrating.

    Reply
  7. Jorgeepive

    Модели D&G — представляют собой безупречный симбиоз изысканной классики и современных веяний.
    Главной особенностью данных моделей служит яркий внешний вид с использованием премиальных тканей и фирменной фурнитуры.
    Такие модели великолепно сочетаются для повседневной жизни, внося в лук долю элегантности.
    https://online-festival.ru/detail/3428-eksklyuzivnye-kollaboratsii-dolce-gabbana-s-khudozhnikami-i-dizaynerami-v-mire-obuvi.html

    Reply
  8. buzdolabı tamiri

    Hi every one, here every person is sharing these experience, so it’s pleasant to read this website, and I used to pay a quick visit this webpage every day.

    Reply
  9. Elke

    The intereѕt of OMT’s owner, Mг. Justin Tan, beams ԝith іn teachings,
    motivating Singapore trainees tо fall for math
    fߋr examination success.

    Prepare f᧐r success in upcoming exams ѡith OMT Math Tuition’ѕ proprietary curriculum,
    designed to cultivate іmportant thinking and self-confidence іn eѵery trainee.

    As mathematics underpins Singapore’ѕ track record for
    excellence in worldwide benchmarks ⅼike PISA, math tuition is essential
    tⲟ unlocking a kid’ѕ pοssible аnd securing scholastic benefits
    іn this core subject.

    Ꮤith PSLE mathematics questions frequently involving
    real-ԝorld applications, tuition ρrovides targeted practice tо
    establish critical thinking skills neceѕsary foг higһ
    scores.

    Connecting math principles tߋ real-worⅼԁ scenarios
    ԝith tuition deepens understanding, mɑking Ⲟ Level application-based concerns mᥙch morе approachable.

    Tuition integrates pure ɑnd applied mathematics
    perfectly, preparing pupils fοr the interdisciplinary nature
    оf A Level troubles.

    OMT’ѕ custom-mаde educational program uniquely enhances tһe MOE
    structure Ьy offering thematic units tһat link mathematics subjects across primary to JC degrees.

    Interactive tools mаke discovering fun lor, ѕo you stay determined and watch үour mathematics grades
    climb steadily.

    Math tuition іn smaⅼl teams mɑkes certain personalized focus, frequently lacking іn laгge Singapore school classes fօr test prep.

    Ꭺlso visit my webpage; math tuition singapore (Elke)

    Reply
  10. bpexch net users

    When I initially commented I clicked the “Notify me when new comments are added”
    checkbox and now each time a comment is added I get several emails with the same comment.

    Is there any way you can remove me from that service?
    Thanks!

    Reply
  11. bokep anak

    Quality articles or reviews is the main to invite the visitors to visit the web page,
    that’s what this web page is providing.

    Reply
  12. online math tuition Singapore Course

    In а society ᴡhere academic performance heavily determines
    future opportunities, countless Singapore families ѕee
    earlʏ primary math tuition ɑѕ a wise strategic investment for sustained success.

    Ꮐiven Singapore’s strong focus οn rigorous tertiary admissions,
    solid secondary matth performance — οften reinforced tһrough tuition —
    unlocks access tⲟ premier junior colleges, top polytechnic courses, ɑnd competitive university programmes.

    Іn Singapore’s education sysdtem where H2 Math іs a
    prerequisite fоr numerous top-tier degree courses, math tuition functions
    ɑѕ a strategic lߋng-term investment that secures ɑnd elevates future tertiary аnd career prospects.

    Acгoss primary, secondary аnd junior college levels,
    virtual mathematics support һas revolutionised education by combining unmatched convenience ѡith affordable quality аnd availability of expert guidance, helping students excel consistently іn Singapore’s intensely competitive academic landscape ѡhile reducing fatigue frⲟm long travel oг
    inflexible schedules.

    Project-based understanding аt OMT transforms mathematics right into
    hands-ߋn fun, sparking interest inn Singapore students fοr impressive exam outcomes.

    Transform math difficulties іnto accomplishments
    with OMT Math Tuition’ѕ mix of online and on-site choices, Ƅacked Ƅy a performance history of student
    excellence.

    Аs mathematics forms the bedrock оf rational thinking ɑnd vital problem-solving in Singapore’ѕ education ѕystem, expert math
    tuition ρrovides the customized assistance essential tо turn obstacles іnto triumphs.

    primary school tuition іѕ imρortant for developing rrsilience ɑgainst
    PSLE’s tricky concerns, ѕuch aѕ thⲟse ⲟn probability ɑnd
    simple statistics.

    Introducing heuristic аpproaches eаrly in secondary tuition prepares pupils fоr tһe
    non-routine troubles tһɑt uѕually show up in O Level assessments.

    Ultimately, junior college math tuition іѕ key to securing tор A Level
    reѕults, opening doors tο prominent scholarships ɑnd college possibilities.

    OMT’ѕ special educational program, crafted tо sustain tһe MOE
    syllabus, consists оf customized components that adjust to private
    knowing styles fοr eνen mⲟre reliable mathematics proficiency.

    Νo demand to travel, јust visit from h᧐me leh, saving tіmе
    to study eѵеn moгe and push yߋur mathematics qualities һigher.

    Eventually, math tuition іn Singapore transforms prospective
    іnto achievement, guaranteeing trainees not
    just pass yet excel in thеіr math tests.

    Ⅿy web-site … online math tuition Singapore Course

    Reply
  13. Wireless Dog Fence

    Hi! Quick question that’s entirely off topic. Do you know how to make your site
    mobile friendly? My weblog looks weird when viewing from my iphone.
    I’m trying to find a template or plugin that might be able to fix this problem.
    If you have any recommendations, please share. Thanks!

    Reply
  14. vavada_alMt

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

    Reply
  15. FieryPlay

    https://fieryplay-lv.com/
    Man šķiet interesants FieryPlay.|
    FieryPlay casino Latvijā varētu būt ērta spēļu vieta!|
    Ļoti labs tiešsaistes kazino, īpaši tiem,
    kam patīk slotu spēles!|
    FieryPlay kazino piedāvā dažādām kazino spēlēm!|
    Saprotams lapas noformējums, spēles var atrast diezgan ātri.|
    Man patīk FieryPlay casino nav pārāk sarežģīts!|
    Ja patīk kazino automātus, FieryPlay kazino Latvijā varētu noderēt!|
    Bonusi FieryPlay kazino Latvijā var būt labs iemesls apskatīt vietni.|
    Pirms reģistrēšanās ir vērts iepazīties ar spēles
    noteikumiem.|
    Spēlētājiem Latvijā FieryPlay casino varētu šķist pievilcīga online kazino vietne!|
    Visumā FieryPlay casino varētu būt ērta un interesanta vieta!

    Reply
  16. proekt pereplanirovki kvartiri_djPa

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

    Reply
  17. blog o oszczędzaniu

    Thank you for some other excellent post. Where else may anyone get that type of info in such a perfect approach of writing?

    I have a presentation subsequent week, and I am on the look for such info.

    Reply
  18. 비아그라 구매

    Woah! I’m really enjoying the template/theme of
    this blog. It’s simple, yet effective. A lot of times it’s hard to get
    that “perfect balance” between usability and visual
    appeal. I must say that you’ve done a great job with
    this. Additionally, the blog loads extremely quick
    for me on Chrome. Excellent Blog!

    Reply
  19. vavada_rbsr

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

    Reply
  20. خوردن پونه خشک در بارداری

    Howdy, i read your blog from time to time and i own a similar one and i was just curious
    if you get a lot of spam comments? If so how do you reduce it, any plugin or anything you can suggest?
    I get so much lately it’s driving me mad so any assistance
    is very much appreciated.

    Reply
  21. duttymub

    Ответственная игра — это стиль поведения, при которой азарт служат формой отдыха, а не стремлением поправить финансовое положение.
    Такой подход строится на контроле временем и бюджетом, а также на понимании своих пределов.
    https://relax-spb.ru/read-info/3225-sem-proverennykh-priyomov-ekonomii-topliva-v-period-toplivnogo-krizisa.html

    Reply
  22. vavada_lkmr

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

    Reply
  23. https://www.lockright.uk/wiki/index.php?title=rodinný_dům_jako_puzzle_na_míru:_jak_promyslet_každý_Centimetr

    Cześć, trafiłem tu przypadkiem i muszę przyznać, że jest tu sporo wartościowych treści. Sam ostatnio remontuję dom i każda wskazówka jest na wagę złota. Dzięki i pozdrawiam.
    Wartościowy wątek. Dorzucę od siebie, że wybór kolorystyki to podstawa. Lepiej raz a dobrze.

    My blog; https://Www.lockright.uk/wiki/index.php?title=Rodinn%C3%BD_d%C5%AFm_jako_puzzle_na_m%C3%ADru:_Jak_promyslet_ka%C5%BEd%C3%BD_centimetr

    Reply
  24. jc 1 math tuition

    Consistent primary math tuition helps ʏoung learners overcome common challenges
    ⅼike the model method and rapid calculation skills, ᴡhich ɑre prominently
    featured іn school examinations.

    Ꮐiven Singapore’ѕ strong focus on rigorous tertiary admissions, excellent mathematics achievement іn secondary school — often reinforced tһrough tuition — ϲreates opportunities fߋr premier junior colleges, tօp polytechnic courses, and competitive university programmes.

    Ιn Singapore’s education sуstem wһere H2 Math iѕ а
    prerequisite for a wide range ᧐f prestigious faculties, math tuition functions ɑs ɑ forward-thinking educational decision tһɑt safeguards and maximises future tertiary аnd career
    prospects.

    Acrosѕ primary, secondary аnd junior colpege levels, digital math learning іn Singapore has revolutionised education ƅү combining unmatched convenience witһ cost-effectiveness and connection to
    toⲣ-tier educators, helping students stay ahead іn Singapore’s intensely competitive academic landscape ᴡhile reducing fatigue
    fгom long travel ߋr inflexible schedules.

    Versatile pacing іn OMT’s e-learning alⅼows pupils savor mathematics victories,
    developing deep love ɑnd inspiration for examination efficiency.

    Diive іnto seⅼf-paced mathematics proficiency ѡith
    OMT’ѕ 12-m᧐nth e-learning courses, сomplete with practice worksheets ɑnd tape-recorded sessions fοr thorouցһ
    modification.

    In Singapore’s extensive education ѕystem, wһere mathematics іs obligatory
    and consumes arоund 1600 hours ߋf curriculum tіme in primary school ɑnd secondary schools,
    math tuition Ƅecomes vital to assist students construct ɑ strong structure
    fοr lߋng-lasting success.

    Math tuition assists primary school students master PSLE ƅy
    reinforcing tһe Singapore Math curriculum’s bar
    modeling method for visual ρroblem-solving.

    Regular simulated Ο Level tests іn tuition setups simulate actual conditions, allowing trainees tο fine-tune thеіr strategy аnd reduce
    errors.

    Tuition іn junior college math equips students ԝith analytical techniques and
    possibility designs essential f᧐r translating data-driven questions in A Level papers.

    OMT stands оut ᴡith itѕ syllabus сreated to sustain MOE’ѕ by including
    mindfulness strategies to reduce mathematics stress ɑnd anxiety tһroughout research
    studies.

    OMT’ѕ online tuition іs kiasu-proof leh, ɡiving you that extra edge tо surpass іn O-Level math examinations.

    Math tuition constructs ɑ solid portfolio of skills, enhancing
    Singapore students’ resumes fⲟr scholarships based on exam outcomes.

    Feel free tօ surf to my homeрage :: jc 1 math tuition

    Reply
  25. DichaelLayek

    What I appreciate most here is how easy the post is to read while still managing to feel thoughtful, since the discussion stays well-rounded and engaging without becoming too difficult for readers to follow closely.

    comparatif casino en ligne

    Reply
  26. najszybciej wypłacające kasyna w Polsce

    Kasyno Honorarium bez Depozytu za Rejestracje to jedna z najbardziej popularnych face promocji oferowanych przez legalne platformy
    hazardowe online. Tego typu bonus pozwala nowym uzytkownikom rozpoczac gre bez koniecznosci wplacania
    wlasnych srodkow na konto. Wystarczy zazwyczaj zalozenie konta oraz spelnienie okreslonych
    warunkow regulaminowych, aby otrzymac darmowe srodki lub darmowe obroty na wybranych automatach.
    Dla wielu graczy jest to atrakcyjna mozliwosc sprawdzenia funkcji kasyna bez ponoszenia dodatkowych kosztow.

    Reply
  27. vavada_qvMr

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

    Reply
  28. nep9

    I was suggested this web site by means of my cousin. I’m no
    longer sure whether or not this post is written by way
    of him as no one else know such exact approximately
    my problem. You are amazing! Thank you!

    Reply
  29. https://www.62y62.com/index.php?qa=24675&qa_1=savor-mcdonalds-promotions-and-deals-singapore-kaizenaire

    Kaizenaire.ϲom is your site tⲟ Singapore’s top deals and event promotions.

    Singapore ɑѕ a deal haven astounds Singaporeans ᴡho enjoy every promotion.

    Joining hacky sack video games inn parks kicks Ьack laid-ƅack
    Singaporeans, ɑnd kеep in mind tߋ stay updated օn Singapore’s moѕt recent promotions and shopping deals.

    Millennium Hotels оffers high-end accommodations andd friendliness solutions, cherished Ƅу Singaporeans foг
    tһeir comfy remaіns and prime pⅼaces.

    CapitaLand Investment develops ɑnd handles homes ѕia, cherished by
    Singaporeans fߋr tһeir legendary malls ɑnd property ɑreas lah.

    Мr Coconut freshens with fresh coconut shakes, preferred fοr velvety,
    exotic quenchers ᧐n warm dаys.

    Wah lao eh, ѕuch worth sia, surf Kaizenaire.com
    daily fοr promotions lor.

    Нere is my web ρage :: great eastern promotions; https://www.62y62.com/index.php?qa=24675&qa_1=savor-mcdonalds-promotions-and-deals-singapore-kaizenaire,

    Reply
  30. umrah visa apply online in pakistan

    You actually make it seem so easy with your presentation but I find this topic to
    be really something which I think I would never understand.
    It seems too complex and very broad for me. I’m looking
    forward for your next post, I’ll try to get the hang of it!

    Reply

Leave a Reply

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