thegooglecodearchive / sfepy

Automatically exported from code.google.com/p/sfepy
0 stars 0 forks source link

remove 'region' attribute of materials in example problem definition files #130

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
This follows from the commit [1]:

    remove regions from Material definition

    - a Material instance is now really just a collection of values
    - region is given by a term using the particular Material
    - 'region' attribute of materials in problem definition files is now
irrelevant

[1] http://github.com/rc/sfepy/commit/f98e2c34358bba6ca99aae92b6ceda7b611314e6

Original issue reported on code.google.com by robert.c...@gmail.com on 17 May 2010 at 12:42

GoogleCodeExporter commented 9 years ago
Example:

old:

material_2 = {
    'name' : 'coef',
    'region' : 'Omega',
    'values' : {'val' : 1.0},
}

new:

material_2 = {
    'name' : 'coef',
    'values' : {'val' : 1.0},
}

Original comment by robert.c...@gmail.com on 17 May 2010 at 12:50

GoogleCodeExporter commented 9 years ago
It seems that all the example and test files have been edited.

Original comment by robert.c...@gmail.com on 5 May 2011 at 1:23

GoogleCodeExporter commented 9 years ago
Migrated to http://github.com/sfepy/sfepy/issues/132

Original comment by robert.c...@gmail.com on 30 Jan 2012 at 10:27