<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ks_c_5601-1987">
<style type="text/css" style="display:none;"><!-- P {margin-top:0;margin-bottom:0;} --></style>
</head>
<body dir="ltr">
<div id="divtagdefaultwrapper" style="font-size:12pt;color:#000000;font-family:Calibri,Helvetica,sans-serif;" dir="ltr">
<p style="margin-top: 0px; margin-bottom: 0px;">sorry, I mean that</p>
<p style="margin-top: 0px; margin-bottom: 0px;"><span><strong>My geometry is a rectangle</strong>.</span></p>
<p style="margin-top: 0px; margin-bottom: 0px;">That means, geometry is just rectangle box shape with four boundary.</p>
<p style="margin-top: 0px; margin-bottom: 0px;"><br>
</p>
<p style="margin-top: 0px; margin-bottom: 0px;">My question is that, how can I set the four boundary condition individually in example 12 of SNES?</p>
<p style="margin-top: 0px; margin-bottom: 0px;"><br>
</p>
<p style="margin-top: 0px; margin-bottom: 0px;">(I think that the boundary condition should be added in right side of the weak form, where load vector f and test function term is included. However, in example of petsc, boundary condition is applied as general
 form.)</p>
<p style="margin-top: 0px; margin-bottom: 0px;"><br>
</p>
<p style="margin-top: 0px; margin-bottom: 0px;">Seungjin Seo<br>
</p>
</div>
<hr style="display:inline-block;width:98%" tabindex="-1">
<div id="divRplyFwdMsg" dir="ltr"><font face="Calibri, sans-serif" style="font-size:11pt" color="#000000"><b>º¸³½ »ç¶÷:</b> Smith, Barry F. <bsmith@mcs.anl.gov><br>
<b>º¸³½ ³¯Â¥:</b> 2018³â 1¿ù 15ÀÏ ¿ù¿äÀÏ ¿ÀÈÄ 11:06:18<br>
<b>¹Þ´Â »ç¶÷:</b> ¼­½ÂÁø (±â°èÇ×°ø¹×¿øÀڷ°øÇкÎ)<br>
<b>ÂüÁ¶:</b> Smith, Barry F.; petsc-users@mcs.anl.gov<br>
<b>Á¦¸ñ:</b> Re: [petsc-users] I have a question for PETSc example</font>
<div> </div>
</div>
<div class="BodyFragment"><font size="2"><span style="font-size:11pt;">
<div class="PlainText"><br>
   The term "rectangular mesh" usually refers to a "structured grid mesh" so it is not clear if you truly need an unstructured grid. Take a look at src/snes/examples/tutorials/ex19.c
<br>
<br>
  Barry<br>
<br>
<br>
> On Jan 15, 2018, at 1:03 AM, ¼­½ÂÁø (±â°èÇ×°ø¹×¿øÀڷ°øÇкÎ) <mistloin@unist.ac.kr> wrote:<br>
> <br>
> Dear PETSc-user<br>
> <br>
> I am Seungjin Seo, researcher of Korean Advanced Institute of Science and Technology, South Korea.<br>
> <br>
> I am tring to understand the ex12.c in SNES examples, and I have a problem...<br>
> Could you give me some advise? Is there any good description or materials for PetscFE and DMPlex?<br>
>  <br>
> I will make a code with unstructured grid with PetscFE and SNES. My geometry is a rectangle mesh (the size is not fixed so I think this is unstructured grid).<br>
> The equation is  <br>
> I will set boundry conditions as follow;<br>
>   1. (Top-side boundary) Neumann boundary<br>
>   2. (Bottom-side boundary) Neumann boundary<br>
>   3. (Left-side boundary) Dirichlet boundary<br>
>   4. (Right-side boundary) Dirichlet boundary<br>
> <br>
> In example ex12.c in SNES, load vector f is defiend as f_0, and neumann boundary condition is defined as f_bd_0. f_1 means the test function gradient term. The example set general type of neumann boundary condition on f_bd_0, but I want to set each boundary
 condition individually. Could you give me some advise?<br>
> <br>
> Thansk for reading my email.<br>
> <br>
> Best regard,<br>
> Seungjin Seo<br>
> <br>
> <br>
> <br>
> º¸³½ »ç¶÷: Smith, Barry F. <bsmith@mcs.anl.gov><br>
> º¸³½ ³¯Â¥: 2017³â 12¿ù 21ÀÏ ¸ñ¿äÀÏ ¿ÀÈÄ 3:46:42<br>
> ¹Þ´Â »ç¶÷: ¼­½ÂÁø (±â°èÇ×°ø¹×¿øÀڷ°øÇкÎ)<br>
> ÂüÁ¶: petsc-users@mcs.anl.gov<br>
> Á¦¸ñ: Re: [petsc-users] I have a question for PETSc example<br>
>  <br>
> <br>
>   In deed you can, yes many PETSc examples only feature a single field for simplicity, but multiple fields are fine. You simple provide your FormFunction and FormJacobian to handle both degrees of freedom per cell/node at the same time. You use SNES or TS
 depending on if your problem is time dependent and then use -pc_type lu to start. Once you have the physics correct come back and ask us about optimizing the linear solver with preconditioners; but until you have the physics correct it is absurd to waste time
 worrying about making the linear solver efficient. What you want to do, many people do and is not a big deal.<br>
> <br>
>    Barry<br>
> <br>
> <br>
> > On Dec 21, 2017, at 12:27 AM, ¼­½ÂÁø (±â°èÇ×°ø¹×¿øÀڷ°øÇкÎ) <mistloin@unist.ac.kr> wrote:<br>
> > <br>
> > Dear PETSc-user<br>
> >  <br>
> >  <br>
> > I am Seungjin Seo, researcher of Korean Advanced Institute of Science and Technology, South Korea.<br>
> >  <br>
> > <br>
> > <br>
> > I am trying to solve thermal and fluid equations within a porous structure.<br>
> > The thermal equation includes a non-linear term of pressure and the fluid equation has a boundary condition using temperature gradient.<br>
> > Is there any way I can solve these two equations at the same time, instead of solving temperature first with previous pressure distribution and then pressure and update temperature?<br>
> > Many examples solve only one PDF instead of coupling several physics.<br>
> > Please recommend me which solver is appropriate for my case?<br>
> > <br>
> > Best regards,<br>
> > Seungjin Seo<br>
<br>
</div>
</span></font></div>
</body>
</html>