Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
a1409f33
Commit
a1409f33
authored
13 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
regions and functions
parent
62f3c245
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Common/onelab.h
+66
-38
66 additions, 38 deletions
Common/onelab.h
Fltk/onelabWindow.cpp
+20
-3
20 additions, 3 deletions
Fltk/onelabWindow.cpp
with
86 additions
and
41 deletions
Common/onelab.h
+
66
−
38
View file @
a1409f33
...
...
@@ -338,17 +338,33 @@ namespace onelab{
class
region
:
public
parameter
{
private:
std
::
set
<
std
::
string
>
_value
;
std
::
vector
<
std
::
set
<
std
::
string
>
>
_choices
;
// optional geometrical dimension
int
_dimension
;
std
::
vector
<
std
::
set
<
std
::
string
>
>
_choices
;
public:
region
(
const
std
::
string
&
name
=
""
,
const
std
::
set
<
std
::
string
>
&
value
=
std
::
set
<
std
::
string
>
(),
const
std
::
string
&
label
=
""
,
const
std
::
string
&
help
=
""
)
:
parameter
(
name
,
label
,
help
),
_value
(
value
)
{}
region
(
const
std
::
string
&
name
,
const
std
::
string
&
value
,
const
std
::
string
&
label
=
""
,
const
std
::
string
&
help
=
""
)
:
parameter
(
name
,
label
,
help
)
{
if
(
value
.
size
())
_value
.
insert
(
value
);
}
void
setValue
(
const
std
::
set
<
std
::
string
>
&
value
){
_value
=
value
;
}
void
setDimension
(
int
dim
){
_dimension
=
dim
;
}
void
setChoices
(
const
std
::
vector
<
std
::
set
<
std
::
string
>
>
&
choices
)
{
_choices
=
choices
;
}
std
::
string
getType
()
const
{
return
"region"
;
}
const
std
::
set
<
std
::
string
>
&
getValue
()
const
{
return
_value
;
}
int
getDimension
()
const
{
return
_dimension
;
}
const
std
::
vector
<
std
::
set
<
std
::
string
>
>
&
getChoices
()
const
{
return
_choices
;
}
void
update
(
const
region
&
p
)
{
addClients
(
p
.
getClients
());
...
...
@@ -359,18 +375,41 @@ namespace onelab{
setValue
(
p
.
getValue
());
setChanged
(
true
);
}
setDimension
(
p
.
getDimension
());
setChoices
(
p
.
getChoices
());
}
std
::
string
toChar
()
const
{
/*
std
::
ostringstream
sstream
;
sstream << parameter::toChar() << _value << charSep()
<< _choices.size() << charSep();
for(unsigned int i = 0; i < _choices.size(); i++)
sstream << sanitize(_choices[i]) << charSep();
sstream
<<
parameter
::
toChar
()
<<
_value
.
size
()
<<
charSep
();
for
(
std
::
set
<
std
::
string
>::
const_iterator
it
=
_value
.
begin
();
it
!=
_value
.
end
();
it
++
)
sstream
<<
sanitize
(
*
it
)
<<
charSep
();
sstream
<<
_dimension
<<
charSep
();
sstream
<<
_choices
.
size
()
<<
charSep
();
for
(
unsigned
int
i
=
0
;
i
<
_choices
.
size
();
i
++
){
sstream
<<
_choices
[
i
].
size
()
<<
charSep
();
for
(
std
::
set
<
std
::
string
>::
const_iterator
it
=
_choices
[
i
].
begin
();
it
!=
_choices
[
i
].
end
();
it
++
)
sstream
<<
sanitize
(
*
it
)
<<
charSep
();
}
return
sstream
.
str
();
*/
return
""
;
}
std
::
string
::
size_type
fromChar
(
const
std
::
string
&
msg
)
{
std
::
string
::
size_type
pos
=
parameter
::
fromChar
(
msg
);
if
(
!
pos
)
return
0
;
int
n
=
atoi
(
getNextToken
(
msg
,
pos
).
c_str
());
for
(
int
i
=
0
;
i
<
n
;
i
++
)
_value
.
insert
(
getNextToken
(
msg
,
pos
));
setDimension
(
atoi
(
getNextToken
(
msg
,
pos
).
c_str
()));
_choices
.
resize
(
atoi
(
getNextToken
(
msg
,
pos
).
c_str
()));
for
(
unsigned
int
i
=
0
;
i
<
_choices
.
size
();
i
++
){
n
=
atoi
(
getNextToken
(
msg
,
pos
).
c_str
());
for
(
int
i
=
0
;
i
<
n
;
i
++
)
_choices
[
i
].
insert
(
getNextToken
(
msg
,
pos
));
}
return
pos
;
}
};
...
...
@@ -379,34 +418,32 @@ namespace onelab{
// strings, defined on onelab regions.
class
function
:
public
parameter
{
private:
std
::
string
_value
;
std
::
map
<
std
::
string
,
std
::
string
>
_pieceWiseValues
;
std
::
vector
<
std
::
string
>
_choices
;
std
::
map
<
std
::
string
,
std
::
string
>
_value
;
std
::
vector
<
std
::
map
<
std
::
string
,
std
::
string
>
>
_choices
;
public:
function
(
const
std
::
string
&
name
=
""
,
const
std
::
string
&
value
=
""
,
function
(
const
std
::
string
&
name
=
""
)
:
parameter
(
name
,
""
,
""
)
{}
function
(
const
std
::
string
&
name
,
const
std
::
map
<
std
::
string
,
std
::
string
>
&
value
,
const
std
::
string
&
label
=
""
,
const
std
::
string
&
help
=
""
)
:
parameter
(
name
,
label
,
help
),
_value
(
value
)
{}
void
setValue
(
const
std
::
string
&
value
,
const
std
::
string
&
region
=
""
)
void
setValue
(
const
std
::
map
<
std
::
string
,
std
::
string
>
&
value
)
{
_value
=
value
;
}
void
setChoices
(
const
std
::
vector
<
std
::
map
<
std
::
string
,
std
::
string
>
>
&
choices
)
{
if
(
region
.
empty
())
_value
=
value
;
else
_pieceWiseValues
[
region
]
=
value
;
_choices
=
choices
;
}
std
::
string
getType
()
const
{
return
"function"
;
}
const
std
::
string
getValue
(
const
std
::
string
&
region
=
""
)
const
const
std
::
map
<
std
::
string
,
std
::
string
>
&
getValue
()
const
{
return
_value
;
}
const
std
::
string
getValue
(
const
std
::
string
&
region
)
const
{
if
(
region
.
size
()){
std
::
map
<
std
::
string
,
std
::
string
>::
const_iterator
it
=
_pieceWiseValues
.
find
(
region
);
if
(
it
!=
_pieceWiseValues
.
end
())
return
it
->
second
;
return
""
;
}
else
return
_value
;
std
::
map
<
std
::
string
,
std
::
string
>::
const_iterator
it
=
_value
.
find
(
region
);
if
(
it
!=
_value
.
end
())
return
it
->
second
;
return
""
;
}
const
std
::
map
<
std
::
string
,
std
::
string
>
&
get
PieceWiseValu
es
()
const
const
std
::
vector
<
std
::
map
<
std
::
string
,
std
::
string
>
>
&
get
Choic
es
()
const
{
return
_
pieceWiseValu
es
;
return
_
choic
es
;
}
void
update
(
const
function
&
p
)
{
...
...
@@ -418,20 +455,11 @@ namespace onelab{
setValue
(
p
.
getValue
());
setChanged
(
true
);
}
setChoices
(
p
.
getChoices
());
}
std
::
string
toChar
()
const
{
std
::
ostringstream
sstream
;
sstream
<<
parameter
::
toChar
()
<<
sanitize
(
_value
)
<<
charSep
()
<<
_pieceWiseValues
.
size
()
<<
charSep
();
for
(
std
::
map
<
std
::
string
,
std
::
string
>::
const_iterator
it
=
_pieceWiseValues
.
begin
();
it
!=
_pieceWiseValues
.
end
();
it
++
)
sstream
<<
sanitize
(
it
->
first
)
<<
charSep
()
<<
sanitize
(
it
->
second
)
<<
charSep
();
sstream
<<
_choices
.
size
()
<<
charSep
();
for
(
unsigned
int
i
=
0
;
i
<
_choices
.
size
();
i
++
)
sstream
<<
sanitize
(
_choices
[
i
])
<<
charSep
();
return
sstream
.
str
();
return
""
;
}
};
...
...
This diff is collapsed.
Click to expand it.
Fltk/onelabWindow.cpp
+
20
−
3
View file @
a1409f33
...
...
@@ -592,6 +592,7 @@ static bool updateOnelabGraph(const std::string &snum)
view
=
new
PView
(
xName
,
yName
,
x
,
y
);
view
->
getData
()
->
setFileName
(
"OneLab"
+
snum
);
view
->
getOptions
()
->
intervalsType
=
PViewOptions
::
Discrete
;
view
->
getOptions
()
->
autoPosition
=
num
+
2
;
}
changed
=
true
;
}
...
...
@@ -618,7 +619,23 @@ static void importPhysicalGroups(onelab::client *c, GModel *m)
{
std
::
map
<
int
,
std
::
vector
<
GEntity
*>
>
groups
[
4
];
m
->
getPhysicalGroups
(
groups
);
// create "read-only" onelab groups
for
(
int
dim
=
0
;
dim
<
3
;
dim
++
){
for
(
std
::
map
<
int
,
std
::
vector
<
GEntity
*>
>::
iterator
it
=
groups
[
dim
].
begin
();
it
!=
groups
[
dim
].
end
();
it
++
){
// create "read-only" onelab region
std
::
string
name
=
m
->
getPhysicalName
(
dim
,
it
->
first
);
std
::
ostringstream
num
;
num
<<
it
->
first
;
if
(
name
.
empty
())
name
=
std
::
string
(
"Physical"
)
+
((
dim
==
3
)
?
"Volume"
:
(
dim
==
2
)
?
"Surface"
:
(
dim
==
1
)
?
"Line"
:
"Point"
)
+
num
.
str
();
onelab
::
region
p
(
name
,
num
.
str
());
p
.
setDimension
(
dim
);
p
.
setAttribute
(
"ReadOnly"
,
"Yes"
);
c
->
set
(
p
);
}
}
}
static
void
runGmshClient
(
const
std
::
string
&
action
)
...
...
@@ -646,7 +663,6 @@ static void runGmshClient(const std::string &action)
// the model name has changed
modelName
=
GModel
::
current
()
->
getName
();
geometry_reload_cb
(
0
,
0
);
importPhysicalGroups
(
c
,
GModel
::
current
());
}
}
else
if
(
action
==
"compute"
){
...
...
@@ -657,7 +673,6 @@ static void runGmshClient(const std::string &action)
// changed
modelName
=
GModel
::
current
()
->
getName
();
geometry_reload_cb
(
0
,
0
);
importPhysicalGroups
(
c
,
GModel
::
current
());
if
(
FlGui
::
instance
()
->
onelab
->
meshAuto
()){
mesh_3d_cb
(
0
,
0
);
CreateOutputFile
(
mshFileName
,
CTX
::
instance
()
->
mesh
.
fileFormat
);
...
...
@@ -672,6 +687,8 @@ static void runGmshClient(const std::string &action)
}
onelab
::
server
::
instance
()
->
setChanged
(
false
,
"Gmsh"
);
}
importPhysicalGroups
(
c
,
GModel
::
current
());
}
void
onelab_cb
(
Fl_Widget
*
w
,
void
*
data
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment