Thanks for your reply, Michael.<br><br>I took some time to study the examples you mentioned, but these differ from my problem in this respect: <br><br><div style="margin-left: 40px;">In the examples, the first problem is calculated within GetDP, which therefore has the solution available to it. <br>
<br>In my case, the first problem is solved by a program I have written. (The finite element method is not used, so GetDP is not applicable.) Consequently, GetDP does not already know about this solution. It must somehow be told. The question is how.<br>
</div><br>By analogy with the provided examples I expect my formulation to look like this:<br><br><div style="margin-left: 40px;">Formulation {<br>  { Name Electrostatics_v; Type FemEquation;<br>    Quantity {<br>      { Name v; Type Local; NameOfSpace Hgrad_v_Ele; }<br>
    }<br>    Equation {<br>      Galerkin { [ epsr[] * Dof{d v} , {d v} ]; In DomainCC_Ele; <br>                 Jacobian Vol; Integration GradGrad; }<br>      Galerkin { [ -rho[]/eps0 , {v} ]; In SourceDomain; <br>                 Jacobian Vol; Integration GradGrad; }<br>
    }<br>  }<br>}<br></div><br>In this formulation, rho[] is a piecewise function. How do I import its definition into my GetDP solution? Some possibilities:<br><br>Possibility #1: The examples show definition of a piecewise function within the problem definition files with such syntax as<br>
<br><div style="margin-left: 40px;">Function {<br></div><br><div style="margin-left: 40px;">  /* The relative permittivity (needed in the formulation) is piecewise<br>     defined in elementary groups */<br><br>  epsr[Vacuum] = 1.;<br>
  epsr[Lines] = 3.5.;<br>  epsr[SourceDomain] = 3.5;<br><br>  /* Charge densities in appropriate regions are set here */<br>  rho[PosLayer] =  1.60218e8;<br>  rho[NegLayer] = -1.60218e8;<br><br>}<br></div><br>I could have my program insert thousands of such lines in the problem definition file. However, in these examples the argument of rho[arg] references the GEOMETRY. 
(I.e., rho[] in physical volume #100 is some constant value.) I need a 
way to define rho[] with respect to the MESH. (I.e., My program tells me
 rho1 in mesh element 1, rho2 in mesh 
element 2, etc., repeated in principle for all mesh elements. --rho[] in
 most mesh elements will be 0, but I expect thousands or tens of 
thousands of mesh elements 
with nonzero charge density). Is there a syntax that allows replacement of the various geometrical region references in these definitions with references to the mesh regions?<br><br>Or Possibility #2: Can I have my program write the 1st problem solution for
 rho[] to a file that GetDP imports? If so, where do I learn the correct
 file format I should use and the syntax for importing a piecewise function from a
 file?<br>
<br>Or Possibility #3: It strikes me that my rho[] solution is a lot like a field rather than a function, inasmuch as both my rho[] and fields are defined on the mesh. But if rho is a field it is different from the examples I have seen in 
that it is defined on the volume elements, not on the nodes or edges. Is there such a creature in GetDP? If so, is there a way to import it from a file? <br><br>John<br><br> <br><div class="gmail_quote">On Tue, Sep 7, 2010 at 7:28 AM,  <span dir="ltr"><<a href="mailto:michael.asam@infineon.com">michael.asam@infineon.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">Hi John,<br>
<br>
as far as I understand you want to calculate a 1st problem and<br>
use this result (the charge density) in a 2nd problem.<br>
There are two examples according this topic in the wiki:<br>
ChainedResolution and PreResolution<br>
Here is explained how to use a result calculated previously<br>
in a consecutive simulation.<br>
Maybe they will help you solving your problem.<br>
<br>
Best regards<br>
Michael<br>
<br>
<br>
Message: 1<br>
Date: Thu, 2 Sep 2010 11:31:48 -0400<br>
From: John_V <<a href="mailto:jvillar.john@gmail.com">jvillar.john@gmail.com</a>><br>
Subject: [Getdp] Specifying a detailed charge distribution: what's the<br>
        best    way?<br>
To: <a href="mailto:getdp@geuz.org">getdp@geuz.org</a><br>
Message-ID:<br>
        <AANLkTi=<a href="mailto:BSHZZrsjW0VasYN%2Bu8BsxVkmFQoxijWXdH59J@mail.gmail.com">BSHZZrsjW0VasYN+u8BsxVkmFQoxijWXdH59J@mail.gmail.com</a>><br>
Content-Type: text/plain; charset="iso-8859-1"<br>
<br>
Must GetDP functions be specified only by using the mesh file's region<br>
number (the first of the tags given for each mesh element in the mesh file)?<br>
Or is it also possible to specify a function by reference to other tags or<br>
even the element number?<br>
<br>
I ask because in my problem I do not know the charge distribution at the<br>
time I mesh the geometry. What I want to do is this:<br>
<br>
   1. Mesh my geometry<br>
   2. Use the mesh as input to an independent calculation that determines<br>
   the charge density that results from exposure of this sample to a beam of<br>
   charged particles. (The charge density will be approximated as the total<br>
   charge within each mesh element divided by that element's volume.)<br>
   3. Write GetDP's .pro file, including its definition of the "rho"<br>
   function that defines the charge density.<br>
   4. Run GetDP to solve for the potentials.<br>
<br>
The problem, as you can see, is that when the mesher assigns region numbers<br>
in step 1 it must so so without knowledge of the charge distribution, since<br>
the latter is not determined until step 2.<br>
<br>
If necessary, I can have my step 2 calculation include rewriting the mesh<br>
file with each mesh element, or at least those with non-zero charge,<br>
assigned a unique region number. That is what I am presently thinking I will<br>
need to do. --But this unnecessarily makes other function definitions more<br>
of a kludge. (Imagine I have a geometric region that is all the same<br>
dielectric constant but is divided into thousands of mesh elements each with<br>
different charge density. Possibly there is no escaping having thousands of<br>
rho[regionxxx] = *.*** lines in the .pro file, but must there also be a<br>
separate thousands of epsr[regionxxx] = sameDielectricConstantValue lines<br>
for the permittivity definition?) Is there a better way?<br>
<br>
John<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <<a href="http://www.geuz.org/pipermail/getdp/attachments/20100902/4135c4bb/attachment.html" target="_blank">http://www.geuz.org/pipermail/getdp/attachments/20100902/4135c4bb/attachment.html</a>><br>
<br>
------------------------------<br>
<br>
_______________________________________________<br>
getdp mailing list<br>
<a href="mailto:getdp@geuz.org">getdp@geuz.org</a><br>
<a href="http://www.geuz.org/mailman/listinfo/getdp" target="_blank">http://www.geuz.org/mailman/listinfo/getdp</a><br>
<br>
<br>
End of getdp Digest, Vol 90, Issue 2<br>
************************************<br>
</blockquote></div><br>