<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic The right-hand side of the in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973522#M16897</link>
    <description>&lt;P&gt;The right-hand side of the Poisson equation is corresponding to &amp;nbsp;linear charge density,so &amp;nbsp;can we &amp;nbsp;assign or change the f(i,j) &amp;nbsp;before computation?&lt;/P&gt;</description>
    <pubDate>Wed, 09 Apr 2014 08:29:49 GMT</pubDate>
    <dc:creator>xtyk123456</dc:creator>
    <dc:date>2014-04-09T08:29:49Z</dc:date>
    <item>
      <title>Inner boundary condition setting for solving the Poisson equation</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973512#M16887</link>
      <description>&lt;P&gt;&lt;A name="OLE_LINK8"&gt;Dears, I need your help with the&amp;nbsp;&lt;/A&gt;&lt;A name="OLE_LINK4"&gt;inner boundary condition setting&lt;/A&gt;.&lt;/P&gt;

&lt;P&gt;For simplicity, we take a 2-D Poisson equation for example, which correspond to the &lt;A name="OLE_LINK3"&gt;&lt;/A&gt;&lt;A name="OLE_LINK2"&gt;“&lt;/A&gt;&lt;A name="OLE_LINK7"&gt;&lt;/A&gt;&lt;A name="OLE_LINK6"&gt;s_Poisson_2D_f.f90&lt;/A&gt;” in the MKL library.&lt;/P&gt;

&lt;P&gt;&lt;A name="OLE_LINK1"&gt;Case A&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;In case A, it is clear that we can assign the following array to set the boundary condition.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;For example in s_Poisson_2D_f.f90&lt;/P&gt;

&lt;P&gt;bd_ax(iy) = 1.0E0,&lt;/P&gt;

&lt;P&gt;bd_bx(iy) = 1.0E0 ,&lt;/P&gt;

&lt;P&gt;bd_ay(ix) = -2.0*pi*sin(2*pi*(ix-1)/nx),&lt;/P&gt;

&lt;P&gt;bd_by(ix) =&amp;nbsp; 2.0*pi*sin(2*pi*(ix-1)/nx)&lt;/P&gt;

&lt;P&gt;Case B&lt;/P&gt;

&lt;P&gt;In case B , in the analysis volume, there are some other charge sources in the analysis volume. The Potential of the black box is set to 0. And the line charge denity of the long wire is given.&lt;/P&gt;

&lt;P&gt;So how to solve the problem of case B with&amp;nbsp; “s_Poisson_2D_f.f90” in the MKL library?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Apr 2014 05:31:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973512#M16887</guid>
      <dc:creator>xtyk123456</dc:creator>
      <dc:date>2014-04-07T05:31:53Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973513#M16888</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;The way to obtain solution in domain that you describe is using iterative solver with poisson equation with boundary condition as preconditioner. Because of same domain and similar equation the solution number of preconditioned system is quite small that mean small number of iteration. Or you can use direct solver of your system like Pardiso.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Alex&lt;/P&gt;</description>
      <pubDate>Mon, 07 Apr 2014 10:10:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973513#M16888</guid>
      <dc:creator>Alexander_K_Intel2</dc:creator>
      <dc:date>2014-04-07T10:10:20Z</dc:date>
    </item>
    <item>
      <title>Quote:Alexander Kalinkin</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973514#M16889</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Alexander Kalinkin (Intel) wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;The way to obtain solution in domain that you describe is using iterative solver with poisson equation with boundary condition as preconditioner. Because of same domain and similar equation the solution number of preconditioned system is quite small that mean small number of iteration. Or you can use direct solver of your system like Pardiso.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Alex&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;1 Do you mean i can not solve my problem with the MKL? &amp;nbsp;is there any possibilty to use the MKL as&amp;nbsp;&amp;nbsp;direct solver of my system is very time cosuming?&lt;/P&gt;

&lt;P&gt;2 what does&amp;nbsp;Pardiso mean?&lt;/P&gt;

&lt;P&gt;3 Just as shown in Fig2 which is the second picture of the attachment,after a iterative solver with poisson equation, a new &amp;nbsp;channel with given&amp;nbsp;&lt;/P&gt;

&lt;P&gt;line charge denity &amp;nbsp;is added. and then ,we should solve the poisson equation with the new inner boundary.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Apr 2014 10:47:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973514#M16889</guid>
      <dc:creator>xtyk123456</dc:creator>
      <dc:date>2014-04-07T10:47:28Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973515#M16890</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;It's better to answer on all questions :) PARDISO is the PARallel DIrect sparse SOlver that exist in the MKL. The way of using can be found via mkl examples folders, actually this is one call interface that using sparse matrix format and number of parameters return solution. May I ask you about number of unknowns in your system?&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Alex&lt;/P&gt;</description>
      <pubDate>Mon, 07 Apr 2014 14:48:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973515#M16890</guid>
      <dc:creator>Alexander_K_Intel2</dc:creator>
      <dc:date>2014-04-07T14:48:03Z</dc:date>
    </item>
    <item>
      <title>Quote:Alexander Kalinkin</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973516#M16891</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Alexander Kalinkin (Intel) wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;It's better to answer on all questions :) PARDISO is the PARallel DIrect sparse SOlver that exist in the MKL. The way of using can be found via mkl examples folders, actually this is one call interface that using sparse matrix format and number of parameters return solution. May I ask you about number of unknowns in your system?&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Alex&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Dear Alex,&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;sorry to trouble you again,&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;so how to consider the boundary condition setting by using the PARDISO?&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;As for fortran,&amp;nbsp;&lt;SPAN style="color: rgb(84, 84, 84); font-family: arial, sans-serif; font-size: small; line-height: 18px; "&gt;&amp;nbsp;the&amp;nbsp;&lt;/SPAN&gt;&lt;EM style="color: rgb(221, 75, 57); font-style: normal; font-family: arial, sans-serif; font-size: small; line-height: 18px; "&gt;maximum&lt;/EM&gt;&lt;SPAN style="color: rgb(84, 84, 84); font-family: arial, sans-serif; font-size: small; line-height: 18px; "&gt;&amp;nbsp;array size is&amp;nbsp;&lt;/SPAN&gt;&lt;EM style="color: rgb(221, 75, 57); font-style: normal; font-family: arial, sans-serif; font-size: small; line-height: 18px; "&gt;2GB&lt;/EM&gt;&lt;SPAN style="color: rgb(84, 84, 84); font-family: arial, sans-serif; font-size: small; line-height: 18px; "&gt;&amp;nbsp;(&lt;/SPAN&gt;&lt;WBR style="color: rgb(84, 84, 84); font-family: arial, sans-serif; font-size: small; line-height: 18px; " /&gt;&lt;SPAN style="color: rgb(84, 84, 84); font-family: arial, sans-serif; font-size: small; line-height: 18px; "&gt;that could be allocated) and the&amp;nbsp;&lt;/SPAN&gt;&lt;EM style="color: rgb(221, 75, 57); font-style: normal; font-family: arial, sans-serif; font-size: small; line-height: 18px; "&gt;memory&lt;/EM&gt;&lt;SPAN style="color: rgb(84, 84, 84); font-family: arial, sans-serif; font-size: small; line-height: 18px; "&gt;&amp;nbsp;availavle is also&amp;nbsp;&lt;/SPAN&gt;&lt;EM style="color: rgb(221, 75, 57); font-style: normal; font-family: arial, sans-serif; font-size: small; line-height: 18px; "&gt;2GB, so if my analysis volume&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;&lt;EM style="color: rgb(221, 75, 57); font-style: normal; font-family: arial, sans-serif; font-size: small; line-height: 18px; "&gt;&amp;nbsp;&amp;nbsp; is very large, how to&amp;nbsp;&lt;/EM&gt;apply more memory?&lt;/P&gt;</description>
      <pubDate>Mon, 07 Apr 2014 23:59:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973516#M16891</guid>
      <dc:creator>xtyk123456</dc:creator>
      <dc:date>2014-04-07T23:59:20Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973517#M16892</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;The Pardiso functionality is just direct solver that used system of linear system with sparse matrix. The Poisson solver, actually, is direct solver that solve system of linear equation with specific matrix only, with matrix that comes from Poisson equation after discretization. The number of parameters that can be change in Poisson solver is fixed, and one can use Poisson solver only for cube domain. That the main reason why you cannot use this functionality (form of you domain is the same with point on which you set boundary condition). To use PARDISO solver you need to descretize pde equation by your self, construct matrix in any format, convert it into csr format using MKL converters or own and call PARDISO interface for this matrix and rhs.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;About memory size - PARDISO work correctly in both ilp64 and lp64 interface so, to estimate if it possible to use PARDISO for your problem, could your provide size of it? Mesh parameters?&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Alex&lt;/P&gt;</description>
      <pubDate>Tue, 08 Apr 2014 01:03:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973517#M16892</guid>
      <dc:creator>Alexander_K_Intel2</dc:creator>
      <dc:date>2014-04-08T01:03:58Z</dc:date>
    </item>
    <item>
      <title>Quote:Alexander Kalinkin</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973518#M16893</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Alexander Kalinkin (Intel) wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;The Pardiso functionality is just direct solver that used system of linear system with sparse matrix. The Poisson solver, actually, is direct solver that solve system of linear equation with specific matrix only, with matrix that comes from Poisson equation after discretization. The number of parameters that can be change in Poisson solver is fixed, and one can use Poisson solver only for cube domain. That the main reason why you cannot use this functionality (form of you domain is the same with point on which you set boundary condition). To use PARDISO solver you need to descretize pde equation by your self, construct matrix in any format, convert it into csr format using MKL converters or own and call PARDISO interface for this matrix and rhs.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;About memory size - PARDISO work correctly in both ilp64 and lp64 interface so, to estimate if it possible to use PARDISO for your problem, could your provide size of it? Mesh parameters?&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Alex&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;dear Alex&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; the size of my mesh grid is 5m * 5m * 5m, the number of the grids are 800*800*800&lt;/P&gt;</description>
      <pubDate>Tue, 08 Apr 2014 08:32:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973518#M16893</guid>
      <dc:creator>xtyk123456</dc:creator>
      <dc:date>2014-04-08T08:32:24Z</dc:date>
    </item>
    <item>
      <title>the number of the grids are</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973519#M16894</link>
      <description>&lt;BLOCKQUOTE&gt;
	&lt;P&gt;&lt;SPAN style="font-family: Arial, Helvetica, sans-serif; font-size: 14.545454025268555px; line-height: 16.363636016845703px;"&gt;the number of the grids are 800*800*800&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;&lt;SPAN style="font-family: Arial, Helvetica, sans-serif; font-size: 14.545454025268555px; line-height: 16.363636016845703px;"&gt;That does not make sense to me -- why do you have &lt;STRONG&gt;three &lt;/STRONG&gt;numbers instead of two, for a supposedly &lt;STRONG&gt;two&lt;/STRONG&gt;-dimensional problem?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Apr 2014 15:28:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973519#M16894</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2014-04-08T15:28:00Z</dc:date>
    </item>
    <item>
      <title>Quote:mecej4 wrote:</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973520#M16895</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;mecej4 wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;the number of the grids are 800*800*800&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;That does not make sense to me -- why do you have &lt;STRONG&gt;three &lt;/STRONG&gt;numbers instead of two, for a supposedly &lt;STRONG&gt;two&lt;/STRONG&gt;-dimensional problem?&lt;/P&gt;

&lt;P&gt;Secondly, the cartesian Poisson solver is capable of working only with rectangular regions. According to your description,&amp;nbsp;bd_ay and&amp;nbsp;bd_by are not constant, which violates the specification of the domain as rectangular.&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;sorry to confuse you.&lt;/P&gt;

&lt;P&gt;my actual calculation case is in three dimension, however, for simpleness, i just illustrate in two&amp;nbsp;dimension.&lt;/P&gt;

&lt;P&gt;by the way, can i use "s_commit_Helmholtz_2D(f, bd_ax, bd_bx, bd_ay, bd_by, xhandle, ipar, spar, stat)" &amp;nbsp;to change the inner boundary, for&lt;/P&gt;

&lt;P&gt;example, set the charge density to corresponding &amp;nbsp;f(i,j).&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Apr 2014 23:23:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973520#M16895</guid>
      <dc:creator>xtyk123456</dc:creator>
      <dc:date>2014-04-08T23:23:27Z</dc:date>
    </item>
    <item>
      <title>Quote:Alexander Kalinkin</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973521#M16896</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Alexander Kalinkin (Intel) wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;The Pardiso functionality is just direct solver that used system of linear system with sparse matrix. The Poisson solver, actually, is direct solver that solve system of linear equation with specific matrix only, with matrix that comes from Poisson equation after discretization. The number of parameters that can be change in Poisson solver is fixed, and one can use Poisson solver only for cube domain. That the main reason why you cannot use this functionality (form of you domain is the same with point on which you set boundary condition). To use PARDISO solver you need to descretize pde equation by your self, construct matrix in any format, convert it into csr format using MKL converters or own and call PARDISO interface for this matrix and rhs.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;About memory size - PARDISO work correctly in both ilp64 and lp64 interface so, to estimate if it possible to use PARDISO for your problem, could your provide size of it? Mesh parameters?&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Alex&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;By the way, can i use "s_commit_Helmholtz_2D(f, bd_ax, bd_bx, bd_ay, bd_by, xhandle, ipar, spar, stat)" &amp;nbsp;to change the inner boundary, for&lt;/P&gt;

&lt;P&gt;example, set the charge density to corresponding &amp;nbsp;f(i,j).&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Apr 2014 23:24:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973521#M16896</guid>
      <dc:creator>xtyk123456</dc:creator>
      <dc:date>2014-04-08T23:24:32Z</dc:date>
    </item>
    <item>
      <title>The right-hand side of the</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973522#M16897</link>
      <description>&lt;P&gt;The right-hand side of the Poisson equation is corresponding to &amp;nbsp;linear charge density,so &amp;nbsp;can we &amp;nbsp;assign or change the f(i,j) &amp;nbsp;before computation?&lt;/P&gt;</description>
      <pubDate>Wed, 09 Apr 2014 08:29:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973522#M16897</guid>
      <dc:creator>xtyk123456</dc:creator>
      <dc:date>2014-04-09T08:29:49Z</dc:date>
    </item>
    <item>
      <title>maybe the title of my problem</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973523#M16898</link>
      <description>&lt;P&gt;maybe the title of my problem is&amp;nbsp;&lt;SPAN style="color: rgb(51, 51, 51); font-family: arial; font-size: 14px; line-height: 22px; "&gt;confused, the line charge density can assign to f(i,j), and the channel segment is not inner boundary ,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="color: rgb(51, 51, 51); font-family: arial; font-size: 14px; line-height: 22px; "&gt;but we can treat the channel segments with given charge density as the charge source.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="color: rgb(51, 51, 51); font-family: arial; font-size: 14px; line-height: 22px; "&gt;on the other hand, the&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN left-pos="15|6" right-pos="15|6" space="" style="color: rgb(51, 51, 51); font-family: arial; font-size: 14px; line-height: 22px; "&gt;Potential&lt;/SPAN&gt;&lt;SPAN left-pos="0|6" right-pos="0|6" space="0| " style="color: rgb(51, 51, 51); font-family: arial; font-size: 14px; line-height: 22px; "&gt;&amp;nbsp;background&lt;/SPAN&gt;&lt;SPAN left-pos="6|9" right-pos="6|9" space="0| " style="color: rgb(51, 51, 51); font-family: arial; font-size: 14px; line-height: 22px; "&gt;&amp;nbsp;of the construction,just bellow the computation volume, can we change the&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN left-pos="15|6" right-pos="15|6" space="" style="color: rgb(51, 51, 51); font-family: arial; font-size: 14px; line-height: 22px; "&gt;Potential&lt;/SPAN&gt;&lt;SPAN left-pos="0|6" right-pos="0|6" space="0| " style="color: rgb(51, 51, 51); font-family: arial; font-size: 14px; line-height: 22px; "&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;to charge density?&lt;/P&gt;

&lt;P&gt;so in this way, we can use the&amp;nbsp;&lt;SPAN style="color: rgb(51, 51, 51); font-family: arial; font-size: 18px; line-height: 22px; "&gt;Functions of&lt;/SPAN&gt;&amp;nbsp;MKL?&lt;/P&gt;</description>
      <pubDate>Wed, 09 Apr 2014 13:58:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973523#M16898</guid>
      <dc:creator>xtyk123456</dc:creator>
      <dc:date>2014-04-09T13:58:11Z</dc:date>
    </item>
    <item>
      <title>Quote:Alexander Kalinkin</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973524#M16899</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Alexander Kalinkin (Intel) wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;It's better to answer on all questions :) PARDISO is the PARallel DIrect sparse SOlver that exist in the MKL. The way of using can be found via mkl examples folders, actually this is one call interface that using sparse matrix format and number of parameters return solution. May I ask you about number of unknowns in your system?&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Alex&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; "&gt;maybe the title of my problem is&amp;nbsp;confused, the line charge density can assign to f(i,j), and the channel segment is not inner boundary ,&lt;/P&gt;

&lt;P style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; "&gt;but we can treat the channel segments with given charge density as the charge source.&lt;/P&gt;

&lt;P style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; "&gt;on the other hand, the&amp;nbsp;Potential&amp;nbsp;background&amp;nbsp;of the construction,just bellow the computation volume, can we change the&amp;nbsp;Potential&amp;nbsp;&lt;/P&gt;

&lt;P style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; "&gt;to charge density?&lt;/P&gt;

&lt;P style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; "&gt;so in this way, we can use the&amp;nbsp;Functions of&amp;nbsp;MKL?&lt;/P&gt;</description>
      <pubDate>Wed, 09 Apr 2014 13:59:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973524#M16899</guid>
      <dc:creator>xtyk123456</dc:creator>
      <dc:date>2014-04-09T13:59:19Z</dc:date>
    </item>
    <item>
      <title>Quote:Alexander Kalinkin</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973525#M16900</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Alexander Kalinkin (Intel) wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;It's better to answer on all questions :) PARDISO is the PARallel DIrect sparse SOlver that exist in the MKL. The way of using can be found via mkl examples folders, actually this is one call interface that using sparse matrix format and number of parameters return solution. May I ask you about number of unknowns in your system?&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Alex&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;The number of unknowns in my system is 800*800 in 2-D or 800*800*800 in 3D&lt;/P&gt;</description>
      <pubDate>Wed, 09 Apr 2014 23:17:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973525#M16900</guid>
      <dc:creator>xtyk123456</dc:creator>
      <dc:date>2014-04-09T23:17:25Z</dc:date>
    </item>
    <item>
      <title>HI,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973526#M16901</link>
      <description>&lt;P&gt;HI,&lt;/P&gt;

&lt;P&gt;Looks like i missed the problem... First of all for your sizes PARDISO solver cannot be used, it have to used for this problem dozens Gb of memory, i think. For Poisson problem:&lt;/P&gt;

&lt;P&gt;"&lt;SPAN style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 1.5;"&gt;maybe the title of my problem is&amp;nbsp;confused, the line charge density can assign to f(i,j), and the channel segment is not inner boundary ,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="font-family: Arial, Helvetica, sans-serif; font-size: 12px;"&gt;but we can treat the channel segments with given charge density as the charge source.&lt;SPAN style="font-family: Arial, 宋体, Tahoma, Helvetica, sans-serif; font-size: 1em; line-height: 1.5;"&gt;" - can you explain this sentence in term of unknowns? I confused because it is not clear for me what is unknowns but what is rhs in this terms.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="font-family: Arial, Helvetica, sans-serif; font-size: 12px;"&gt;&lt;SPAN style="font-family: Arial, 宋体, Tahoma, Helvetica, sans-serif; font-size: 1em; line-height: 1.5;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="font-family: Arial, Helvetica, sans-serif; font-size: 12px;"&gt;&lt;SPAN style="font-family: Arial, 宋体, Tahoma, Helvetica, sans-serif; font-size: 1em; line-height: 1.5;"&gt;Alex&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Apr 2014 02:19:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Inner-boundary-condition-setting-for-solving-the-Poisson/m-p/973526#M16901</guid>
      <dc:creator>Alexander_K_Intel2</dc:creator>
      <dc:date>2014-04-10T02:19:32Z</dc:date>
    </item>
  </channel>
</rss>

