Feed

MiikaHweb Blog


Git logs and statistics now online

Nov-21-2013    1 Comment

Blender is now using GitNow that Blender has migrated from SVN to Git repository I have also updated my Blender Commit Logs and Statistics.

Statistics page is still missing releases and currently only "master" branch commits are displayed. I'm investigating best ways to implement generic branch support, as the way Git handles them is somewhat different, so it needs special consideration how to best represent them.


Since the main SVN repository won't be updated anymore it doesn't make sense to keep old statistics or logs hanging around either causing unnecessary confusion. In couple of days I'll remove them and place redirects to the new Git alternatives.

If you are still interested to find old SVN commits I have mapped original SVN revisions to older Git commits, so you can still use the old revision numbers in new Git log to look for specific commits. (e.g. "r50000" :)

Posted by MiikaH at 09:29

Category:Site News, Blender, Development
Tags: Blender, Statistics, Git, SVN

Yet another Blender smoke test

Jun-01-2013    2 Comments

Yet another Blender smoke testYeah, here goes again, more playing with Blender smoke simulator. This time I wanted to try a bit larger simulation utilizing adaptive domain and my other latest improvements.

Here is the result. Sorry, not gonna upload .blend file for this one:


Adaptive domain was a great help as it allowed really fast bakes of the first 70 frames. Basically I was able to do dozens of low res tests for the first rocket with barely a minute wait each. Smoke motion was heavily guided by animated force fields.

Overall I'm quite happy with it, even though the wind is too strong and dust is rising way too fast for that large scale. (That wasn't visible in the first hundred frames I mainly tested with...) Yet I didn't want to spend another evening tweaking and re-baking so just decided to render that one.

That model is slightly modified version of MLRS by SONGKRO from Blend Swap.

Posted by MiikaH at 12:51

Category:Blender, Development
Tags: Blender, Smoke, Fire

Blender smoke subframes

May-17-2013    18 Comments

No subframes testOne of the remaining "easy-to-fix" issues with Blender smoke simulator has been that you can't have fast moving objects emitting smoke. At least not that easily or smoke flow would leave behind a bunch of disconnected dots instead of continuous flow of smoke.

Now I have committed subframes for smoke flows. That means you can define how many additional time samples will be taken between each simulation frame. Below is an example of a fast moving particle with multiple subframes and no subframes:



One thing to notice is that this is a flow setting, not domain one, for couple of reasons. First of all, subframes are applied only in the emission phase. Simulation itself won't calculate additional time samples, so there will be no change in behavior of the fluid and you can use very high subframe counts with only minor performance drop. Also this allows you to enable subframes only for smoke flows that move fast enough to benefit from it.


Another new thing is ability to define size of flow particles. Previously it was common issue that when you increased domain resolution for final bake, particles became way too small. Now you can just increase particle size if needed.



These new size based particles are also compatible with my previous "full sample" high resolution update. So no more blocky particles either. Besides, this allows using smaller than "low res cell" sized particles, so you can have detailed tiny particles without having to increase simulation base resolution up to several hundreds like before. It's enough to just increase high resolution divisions. :)


Here are couple of renders from my subframe test scenes:



These new features are available in Blender trunk builds of revision 56884 and higher.

Posted by MiikaH at 17:43

Category:Blender, Development
Tags: Blender, Smoke, Fire

Getting rid of smoke blockiness

May-10-2013    12 Comments

Burning SuzanneI was recently investigating how to reduce that blockiness you get around smoke emitters. I did several tests with it and was so amazed about the results that it frankly makes me feel stupid for not realizing there was something wrong earlier.

Previously high resolution flow voxels were generated based on the low resolution ones. So if you had 32 simulation base resolution and 4 division high resolution, it still used smoke flow generated from those 32 resolution voxels. Now I introduced a new sampling method called "Full Sample" that generates full resolution flow for for high resolution domain as well.



You can enable "Full Sample" in smoke high resolution panel. That menu also includes old "Nearest" and "Linear" interpolation settings for smoke flow in order to keep old files compatible. Full sample is default in new simulations though.

There was also a bug that partly disabled smooth effect from my older smoke patch from couple of years back.


Here is a comparison between old and new high resolution smoke:


Left suzanne is the low resolution version (32 res). Then the old (4 division) high resolution flow. Last one is the new "full sample" version using otherwise same settings.

Another comparison with a complex mesh flow:



Again, left is the old 32 res 4 high division simulation. Right image is same setup with full sample flow.


One problem especially with fire simulations has been that the fluid motion usually looks good with fairly low resolutions. However it has been necessary to increase the resolution anyway, in order to get rid of those blocks. Not anymore. It's also much easier to create thinner layer of smoke around the emitter. Not to mention higher detail when using textures as flow masks. :)

I made couple of new fire demos inspired by the possibilities of block-free smoke flows:


Here are the original .blend files for you to play with:
Burning Suzanne (64 base, 4 div high): burning_suzanne.blend
Burning Plane v2 (48 base, 3 div high): burning_plane_turbulent.blend

The new full sample flow type is available in Blender trunk builds of revision 56665 and higher (or the upcoming 2.68 release).

Posted by MiikaH at 16:18

Category:Blender, Development
Tags: Blender, Smoke, Fire

Blender Explosion Testing

Feb-12-2013    1 Comment

Blender Smoke ExplosionToday I was playing with smoke simulator to make sure it still works fine for the Blender 2.66 release. I ended up doing a high resolution explosion scene that uses most of the new features from my GSoC 2012 work.



This explosion uses force fields to create additional turbulence to the simulation. Fire particles (floating by the "smoke flow" force field) add smaller detail. Also emitters and some of their properties are animated to give more control over the simulation.

For final render I used domain resolution of 96 + 32 additional "adaptive domain" resolution, so total 160 base resolution. Baking it high resolution enabled took couple of hours.

If you feel like playing with the setup, you can download the final .blend file here:
smoke_explosion_final.blend

Posted by MiikaH at 14:11

Category:Blender, Development
Tags: Blender, Smoke, Fire

Blender fire testing + .blend files

Aug-10-2012    12 Comments

Blender Burning PlaneNow that Google Summer of Code 2012 is almost over it's time for heavy testing and final improvements of my Blender smoke project.

This week I have been experimenting with different fire simulation and render setups to find out new ways to improve simulation quality. While testing out new code I also prepared three fire scenes for download so you can start playing with fire too without having to do days worth of experiments. :p

Check out the renders here:



Unfortunately there still isn't a single click "Make awesome fire!" button. Setting up realistic scene still takes lots of tweaking for both simulation and render. However simulating fire in general should be now much easier with these GSoC changes.

Burning Plane

This scene is an extreme example of texture controlled emission. A cloud texture with animated z-offset is used to generate additional turbulence to fire. This gives a huge visual improvement over a plane that emits fire evenly across whole surface.

Download: burning_plane.blend

Burning Sphere

The basic idea of this scene is very similar to previous one. However this time texture is tweaked with a color ramp to emit some fire even from darkest areas of the texture.

Download: burning_sphere.blend

Fire Pillar

This is a very basic scene I used to test high fuel/flame emitter. Notice how I have unticked "Absolute Density" checkbox from flow, making it "additive" instead. This way fuel can smoothly increase to very high amounts creating long lasting tall flames.

Download: fire_pillar.blend


Please note that to use these .blend files you need a Blender "soc-2012-fried_chicken" branch build of r49779 or later. All scenes are also quite heavy so it's better bake the cache. :)

Update: My smoke code has now been merged to Blender trunk. So any trunk revision of r51259 or later will do. :)

Posted by MiikaH at 20:00

Category:Blender, Development
Tags: Blender, Smoke, Fire, GSoC

More SVN Log Updates

Mar-03-2012    3 Comments

I have added even more features to my Blender SVN pages.

Commit messages now display the authors full name instead of cryptic username, revisions in commit messages are now shown as links and there is a "changed paths" list on each revision page. Additionally some Statistics pages now have new file related charts. E.g. developer pages show most edited files and number of added, deleted and modified files.

Commit Logs are also available as RSS feeds in case you want to follow Blender commits more closely. You can subscribe All Commits, Trunk Commits or commits from a specific branch from any branches' statistics page.


Update: You can also use RSS feeds with "short-title" option (All Commits, Trunk Commits), this way revision title is printed as "r12345:" instead of "Revision 12345 (trunk/blender):". This can be useful if your reader has only limited screen space.

Posted by MiikaH at 17:19

Category:Site News, Blender
Tags: Update, Blender, SVN

MiikaHweb Updates

Feb-23-2012    1 Comment

MiikaHweb UpdatedI have been updating some parts of MiikaHweb in the past few days.

First of all: after gathering dust for nearly five years, the Mobile section is finally up to date again.

Basically it's a listing of mobile apps I have found useful. New section features all popular mobile platforms: Android, iOS, Symbian and Windows Phone, although Android is the main platform as I'm using it myself.


I also did some small improvements on Blender SVN statistics pages. I suppose most useful tweak are new Blender Tracker links on Commit Log pages. Now you can view the related bug report/patch simply by clicking the hash number on commit message (if any).

Posted by MiikaH at 20:25

Category:Site News, Mobile, Blender
Tags: Update, Blender, SVN, Mobile, Games, Applications

Dynamic Paint Controlled Particle Emission

Jan-26-2012    8 Comments

This time I was experimenting with idea of Dynamic Paint being able to emit particles. Since this isn't possible with any official release of Blender I coded a basic system to try it out.

Here is the result. You see particles "painting" holes into the wall, and those painted holes creating more particles:


However this is just a highly experimental hack built on top of Blender's current particle system, so I'm not going to release the code.

But you can take this as a preview of what's coming whenever the new particle system becomes available. Then I'll start working on Dynamic Paint support right away. :)

Posted by MiikaH at 08:36

Category:Blender, Development
Tags: Blender, Dynamic Paint, Particles

Blender Statistics Now Online

Dec-28-2011    1 Comment

Blender 2.43/2.49A new MiikaHweb section "Blender SVN Statistics" is now online.

It shows real-time statistics about Blender development based on SVN commits. You can view charts based on releases, branches, developers or date.

Statistics section is still under development so some things are likely to change during upcoming days. Anyway, I hope some of you will find this useful or interesting. :)

Posted by MiikaH at 14:29

Category:Site News, Blender, Development
Tags: Blender, Statistics, Release, SVN



By: Miika HämäläinenLast update: Nov-07-2014 14:18MiikaHweb | 2003-2021