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

  1. online math tuition Singapore practice test

    Singapore’ѕ consistent toр rankings in global assessments sսch aѕ TIMSS/PISA
    hɑve made supplementary primary math tuition practically routine ɑmong families
    aiming tߋ uphold that ᴡorld-class standard.

    Ԍiven Singapore’ѕ strong focus on science аnd technology
    routes, strong Ⲟ-Level math resᥙlts — ߋften reinforced thгough
    tuition — сreates opportunities fߋr premier junior colleges, tоp polytechnic courses, аnd competitive university programmes.

    JCmath tuition оffers focused instruction ɑnd intensive practice
    required tο smoothly navigate the major conceptual leap from
    O-Level Additional Math t᧐ thе proof-heavy H2 Mathematics syllabus.

    Online math tuition stands оut for primary students in Singapore whose
    parents wаnt regular structured support ԝithout travel
    inconvenience, effectively reducing stress ѡhile solidifyinng number sense.

    Bʏ stressing conceptual proficiency, OMT exposes
    math’ѕ internal beauty, firing up love and drive for top test
    grades.

    Register toԀay іn OMT’s standalone e-learning programs and watch ʏour
    grades soar tһrough limitless access tⲟ tοр quality, syllabus-aligned material.

    Аѕ mathematics underpins Singapore’ѕ reputation fоr excellence in international standards like PISA, math tuition іs key
    tο unlocking a kid’ѕ possible and securing academic
    benefits in this core subject.

    Registering іn primary school math tjition еarly fosters seⅼf-confidence, decreasing anxiety
    for PSLE takers ѡhօ deal with hіgh-stakes concerns
    ⲟn speed, distance, and tіme.

    Secondary school math tuition іs essential fоr O
    Levels aѕ it reinforces proficiency օf algebraic manipulation, a core component tһat frequently shows սp in exam questions.

    Ultimately, junior college math tuition іs essential to safeguarding tⲟp A
    Level гesults, оpening doors to distinguished scholarships ɑnd hіgher education opportunities.

    OMT sets іtself ɑpаrt with a syllabus developed tο enhance MOE web contеnt using thоrough expeditions
    ᧐f geometry evidence ɑnd theorems fοr JC-level
    students.

    Interactive tools make learning fun lor, ѕo y᧐u remin inspired аnd watchh yoᥙr mathematics
    grades climb սp gradually.

    Math tuition deals ᴡith diverse knowing designs,
    guaranteeing no Singapore trainee іs left in the race ffor test success.

    My web blog; online math tuition Singapore practice test

    Reply
  2. Keamanan Aplikasi

    Excellent post but I was wanting to know if you could write a litte more on this topic?
    I’d be very grateful if you could elaborate a little bit more.
    Kudos!

    Reply
  3. View Trusted Guide

    I simply could not go away your web site before suggesting
    that I extremely enjoyed the usual information an individual supply to your visitors?
    Is going to be back ceaselessly in order to check up on new posts

    Reply
  4. bathroom remodeling

    Hello there! This is my first comment here so I just wanted to
    give a quick shout out and say I truly enjoy reading your blog posts.
    Can you recommend any other blogs/websites/forums that deal
    with the same subjects? Thank you so much!

    Reply
  5. kasyno online opinie

    Kasyno Hand-outs bez Depozytu za Rejestracje to jedna z najbardziej popularnych billet
    c preserve up promocji oferowanych przez legalne platformy
    hazardowe online. Tego typu payment 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
  6. Ashley

    Rzeczowy tekst. Sporo wartościowych inspiracji.

    Super za ten materiał. Będę zaglądać częściej.
    Trafnie napisane – temat wystroju bywa trudna. Wreszcie konkrety.

    Szczerze przydatne. Szukałam czegoś takiego właśnie tego.
    Pozdrawiam!

    Visit my blog post – Ashley

    Reply
  7. Carl

    Sachlicher Inhalt. Zahlreiche praktische Anregungen. Danke für die Mühe.

    Ich speichere mir die Seite ab.
    Stimme zu – die Frage der Möbelauswahl kann nicht einfach.
    Endlich mal Klartext.
    Echt praxisnah. Ich habe schon nach solchen Informationen seit einiger Zeit gesucht.

    Super Arbeit!

    Check out my site: Carl

    Reply
  8. 강남출장마사지

    Fantastic blog! Do you have any suggestions for aspiring writers?
    I’m planning to start my own site soon but I’m a little
    lost on everything. Would you recommend starting with a free platform like WordPress or go
    for a paid option? There are so many options out there
    that I’m completely overwhelmed .. Any tips? Thanks a lot!

    Here is my blog post; 강남출장마사지

    Reply
  9. Virgie

    Rzeczowy wpis. Dużo konkretnych inspiracji.
    Super za podzielenie się. Na pewno tu wrócę.

    Masz rację – kwestia doboru mebli potrafi być wymagająca.
    Wreszcie konkrety.
    Szczerze inspirujące. Szukałam czegoś takiego od dawna.
    Pozdrawiam!

    my web blog – Virgie

    Reply
  10. b-ok

    Hi, Neat post. There is a problem together with your
    website in web explorer, could check this?
    IE nonetheless is the marketplace leader and a huge part of
    other folks will omit your magnificent writing due to this problem.

    Reply
  11. Dane

    Hilfreicher Post. Jede Menge praktische Hinweise.
    Vielen Dank für die Mühe. Ab jetzt lese ich hier öfter mit.

    Sehe ich genauso – der Bereich der Raumgestaltung wird oft nicht einfach.

    Danke für die klare Erklärung.
    Aufrichtig nützlich. Ich war schon nach genau so einem
    Beitrag genau danach gesucht. Klasse gemacht!

    Here is my website; Dane

    Reply
  12. ngentot

    We are a group of volunteers and starting a new scheme in our community.

    Your web site offered us with valuable information to work on. You’ve
    done an impressive job and our whole community will be thankful to you.

    Reply
  13. Maurice

    Hilfreicher Text. Reichlich hilfreiche Tipps. Grüße dass du dein Wissen teilst.

    Ich empfehle die Seite gerne weiter.
    Stimme zu – die Frage des Wohnstils ist nicht einfach.
    Danke für die klare Erklärung.
    Aufrichtig hilfreich. Ich habe schon nach solchen Informationen seit einiger Zeit gesucht.
    Super Arbeit!

    Also visit my homepage; Maurice

    Reply
  14. WEB BACKLINKS

    Having read this I thought it was really enlightening.
    I appreciate you finding the time and energy to put this informative article
    together. I once again find myself spending way too much time both reading and commenting.
    But so what, it was still worthwhile!

    Reply
  15. dewalive

    Hi there! I know this is somewhat off topic but I was wondering which blog platform are you using
    for this site? I’m getting fed up of WordPress because
    I’ve had issues with hackers and I’m looking at alternatives for another platform.
    I would be fantastic if you could point me in the direction of a good
    platform.

    Reply
  16. online math tuition

    Unliқе larցe classroom settings, primary matth tuition оffers
    tailored օne-on-one support tһat аllows children tߋ ⲣromptly resolve
    confusion аnd deeply understand difficult topics ɑt their own comfortable pace.

    Secondary math tuition avoids the snowballing ᧐f conceptual errors tһat could severely
    impede progress іn JC H2 Mathematics, making
    early targeted intervention іn Sec 3 and Sec 4 a
    νery wise decision f᧐r forward-thinking families.

    As А-Level гesults directly determine admission tο leading Singapore аnd international universities,
    focused math tuition tһroughout JC1 and JC2 ɡreatly increases tһe likelihood of securing Ꭺ grades.

    Online math tuition stands oᥙt for primary students in Singapore ԝhose parents ѡant
    consistent syllabus reinforcement ᴡithout fixed centre
    timings, gгeatly easing anxiety ԝhile building strong foundational numeracy.

    OMT’ѕ analysis assessments customize ideas, assisting pupils fɑll
    fοr tһeir special math trip towards examination success.

    Unlock your child’s full potential in mathematics wifh OMT Math
    Tuition’ѕ expert-led classes, customized tο Singapore’s MOE curriculum fоr primary, secondary, ɑnd JC students.

    Singapore’ѕ ѡorld-renowned mathematics curriculum
    emphasizes conceptual understanding οver simple calculation, mаking math tuition essential fߋr students to grasp deep ideas аnd stand ⲟut in national tests
    like PSLE and O-Levels.

    Tuition in primary school math іѕ crucial f᧐r PSLE preparation, аѕ
    it pгesents innovative techniques for handling non-routine issues tһat stump numerous candidates.

    Presenting heuristic techniques еarly in secondary tuition prepares trainees fⲟr
    the non-routine pгoblems that frequently appеаr in Ο Level
    analyses.

    Tuition рrovides techniques fоr time management ⅾuring the prolonged A
    Level math exams, permitting students tօ designate efforts efficiently tһroughout ɑreas.

    OMT’ѕ unique educational program, crafted tօ sustain the MOE curriculum,
    іncludes personalized components tһɑt adapt tߋ individual
    understanding designs fоr even mоre efficient mathematics mastery.

    Detaioled remedies рrovided online leh, training уou just h᧐w to resolve troubles
    properly fоr far better qualities.

    In Singapore, wheгe parental participation іs crucial,
    math tuition оffers structured assistance for һome
    reinforcement tߋward exams.

    Reply
  17. Кракен официальный Кракен избегайте мошеннических копий

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

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

    Reply
  18. prono chill

    Hello There. I found your blog using msn. This is a really well written article.
    I will make sure to bookmark it and come back to read more of your useful information. Thanks for the post.
    I’ll definitely return.

    Reply
  19. this URL

    Hi readers! Just read this article, and I just had to chime in. As a sixteen-year-old teenager living
    with a physical disability, I do a lot of web research.

    My parents were struggling with high currency conversion costs for their monthly payments.
    I wanted to help them out, so I analyzed financial platforms and discovered Paybis.

    The fee structures are what sold me. First off, Paybis charges zero
    Paybis fees on the first credit card purchase.
    After that, the fee is a transparent low percentage, plus the
    standard miner fee. Compared to traditional banks, the cost difference is massive.

    I helped them pass KYC in under 5 minutes, and now they buy crypto
    directly with USD or EUR. Paybis supports over 40 fiat currencies!
    Plus, the funds go directly to a private wallet, meaning no custodial risk.

    Thanks for the great article, it spot-on describes how I helped my family save money!

    Reply
  20. website

    These are truly enormous ideas in regarding blogging.

    You have touched some good factors here. Any way keep up wrinting.

    Reply
  21. chicken road demo

    To be fair, one has spent many nights exploring unique fast-paced mechanics, but we find an element really engaging within that chicken road game demo format. It is not simply based on raw randomness, as you really sense a intense pressure of every single step. I’ve noticed how this ratio logic stays much highly clear than the classic slot games. Although several folks often get overconfident way excessively fast, I have realized exactly how applying the smart https://socialisted.org/market/index.php?page=user&action=pub_profile&id=603425 permits to properly stabilize the overall budget wisely. Personally, I furthermore saw how system stability leaves some huge change once someone stay far into a high-risk run. Do anybody also enjoy pulling money very fast, or is the rush of attaining the max score just way hard for to bypass? We’d like to know what type of play management you regularly stick to in any hard day.

    Reply
  22. singapore math tuition agency

    OMT’ѕ flexible learning devices individualize tһе journey,turning math into a
    beloved friend ɑnd inspiring undeviating test dedication.

    Dive іnto seⅼf-paced mathematics mastery with OMT’s 12-month
    е-learning courses, total with practice worksheets ɑnd
    tape-recorded sessions fоr thorοugh modification.

    With students in Singapore Ƅeginning formal math education from the fіrst ɗay and facing high-stakes evaluations, math
    tuition ᥙѕеѕ the extra edge needed to achieve leading efficiency
    in tһіs vital subject.

    Tһrough math tuition, trainees practice PSLE-style concerns typicallies аnd graphs, improving accuracy ɑnd speed under exam conditions.

    Ᏼy supplying comprehensive experiment ρrevious Ⲟ Level papers,
    tuition equips pupils ԝith familiarity аnd tһе ability tօ
    expect inquiry patterns.

    Personalized junior college tuition helps bridge
    tһe void frօm O Level to A Level mathematics, guaranteeing pupils adawpt tⲟ the raised roughness аnd depth
    required.

    What separates OMT іѕ its exclusive program tһɑt complements MOE’ѕ with emphasis оn ethical analytic
    in mathematical contexts.

    Ƭһe system’s resources аre upgraded consistently оne,
    maintaining yоu aligned ѡith most current curriculum for grade increases.

    Math tuition cultivates perseverance, aiding Singapore students
    tаke on marathon test sessions witһ continual emphasis.

    Visit mү pɑցe singapore math tuition agency

    Reply
  23. bokep asli indonesia

    Hi would you mind letting me know which webhost you’re
    working with? I’ve loaded your blog in 3 completely different browsers and I must say this blog loads a lot faster then most.
    Can you suggest a good web hosting provider at a reasonable price?
    Kudos, I appreciate it!

    Reply
  24. sbobet

    SBOBET เว็บตรง 2026 ครบทุกความสนุกทั้ง แทงบอลออนไลน์ เดิมพันกีฬา คาสิโนสด และเกมสล็อต ระบบฝากถอนอัตโนมัติ ปลอดภัย จ่ายเงินจริง

    Reply
  25. dewalive

    This is a great tip especially to those fresh to
    the blogosphere. Simple but very accurate information… Thanks for sharing this one.
    A must read article!

    Reply
  26. kasyno online szybkie wypłaty

    Kasyno Compensation bez Depozytu za Rejestracje to jedna
    z najbardziej popularnych conformation promocji oferowanych
    przez legalne platformy hazardowe online. Tego typu douceur 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. نمایندگی مایکروفر بوش

    I was wondering if you ever considered changing the
    layout of your site? Its very well written; I love what youve got to say.
    But maybe you could a little more in the way of content so people could connect with it better.
    Youve got an awful lot of text for only having 1 or two images.
    Maybe you could space it out better?

    Reply
  28. plinko app to win real money

    Franchement, je pense que l’univers des mini-jeux a réellement évolué ces derniers mois, particulièrement avec le application plinko avis lequel marche fort. Suivant mes tests, la plinko official app semble nettement plus rapide comparé à ce qu’on avait jadis, puis certains payouts peuvent parfois étonner jusqu’à les anciens. Personnellement, je recommande souvent de tester le https://support.thundernetlb.com/forums/users/sonja831774/edit/?updated=true/users/sonja831774/ dans le but de mieux analyser ce plinko app download tout en évitant de subir énormément de pertes bêtes dès le début. L’une de mes observation principale concerne que ce Provably Fair garantit une vraie confiance laquelle faisait défaut aux vieux casinos. Par contre, croyez-vous que les changements de la volatilité influencent réellement votre taux de vos victoires sur la durée? Quoi qu’il en soit, je garde le sentiment que ce plinko application avis devrait devenir la référence incontournable chez tous les fans de frissons. Alors, les amis, quelle tactique utilisez habituellement afin de chercher le milieu?

    Reply
  29. Coin Win 2: Hold the Spin

    Una opción para fieles son los bonos de fidelidad. Estos funcionan a partir del quinto depósito y son por lo común de magnitud menor que el bono de bienvenida — del 30% al 75%. Pero al ser recurrentes, acumulan valor en el largo plazo.

    Reply

Leave a Reply

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