<div dir="ltr"><div dir="ltr">On Tue, Apr 20, 2021 at 9:36 AM Francesco Brarda <<a href="mailto:brardafrancesco@gmail.com">brardafrancesco@gmail.com</a>> wrote:<br></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div style="overflow-wrap: break-word;">Hi!<br>I tried to implement the SIR model taking into account the fact that I will only use 3 MPI ranks at this moment.<br>I built vectors and matrices following the examples already available. In particular, I defined the functions required similarly (RHSFunction, IFunction, IJacobian), as follows:<br></div></blockquote><div><br></div><div>I don't think this makes sense. You use "mybase" to distinguish between 3 procs, which would indicate that each procs has only</div><div>1 degree of freedom. However, you use x[1] on each proc, indicating it has at least 2 dofs.</div><div><br></div><div>  Thanks,</div><div><br></div><div>     Matt</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div style="overflow-wrap: break-word;"><font face="Menlo">static PetscErrorCode RHSFunction(TS ts,PetscReal t,Vec X,Vec F,void *ctx)<br>{ <br>  PetscErrorCode    ierr;<br>  AppCtx            *appctx = (AppCtx*) ctx;<br>  PetscScalar       f;//, *x_localptr; <br>  const PetscScalar *x;<br>  PetscInt          mybase;<br>  <br>  PetscFunctionBeginUser;<br>  ierr = VecGetOwnershipRange(X,&mybase,NULL);CHKERRQ(ierr);<br>  ierr = VecGetArrayRead(X,&x);CHKERRQ(ierr);<br>  if (mybase == 0) {<br>    f    = (PetscScalar) (-appctx->p1*x[0]*x[1]/appctx->N);<br>    ierr = VecSetValues(F,1,&mybase,&f,INSERT_VALUES);<br>  }<br>  if (mybase == 1) {<br>    f    = (PetscScalar) (appctx->p1*x[0]*x[1]/appctx->N-appctx->p2*x[1]);<br>    ierr = VecSetValues(F,1,&mybase,&f,INSERT_VALUES);<br>  }<br>  if (mybase == 2) {<br>    f    = (PetscScalar) (appctx->p2*x[1]);<br>    ierr = VecSetValues(F,1,&mybase,&f,INSERT_VALUES);<br>  }<br>  ierr = VecRestoreArrayRead(X,&x);CHKERRQ(ierr);<br>  ierr = VecAssemblyBegin(F);CHKERRQ(ierr);<br>  ierr = VecAssemblyEnd(F);CHKERRQ(ierr);<br>  PetscFunctionReturn(0);<br>}</font><br><br><br>Whilst for the Jacobian I did:<div><br></div><div><br><font face="Menlo">static PetscErrorCode IJacobian(TS ts,PetscReal t,Vec X,Vec Xdot,PetscReal a,Mat A,Mat B,void *ctx)<br>{ <br>  PetscErrorCode    ierr;<br>  AppCtx            *appctx = (AppCtx*) ctx;<br>  PetscInt          mybase, rowcol[] = {0,1,2};<br>  const PetscScalar *x;<br>  <br>  PetscFunctionBeginUser;<br>  ierr = MatGetOwnershipRange(B,&mybase,NULL);CHKERRQ(ierr);<br>  ierr = VecGetArrayRead(X,&x);CHKERRQ(ierr);<br>  if (mybase == 0) {<br>    const PetscScalar J[] = {a + appctx->p1*x[1]/appctx->N, appctx->p1*x[0]/appctx->N, 0};<br>    ierr = MatSetValues(B,1,&mybase,3,rowcol,J,INSERT_VALUES);CHKERRQ(ierr);<br>  }<br>  if (mybase == 1) {<br>    const PetscScalar J[] = {- appctx->p1*x[1]/appctx->N, a - appctx->p1*x[0]/appctx->N + appctx->p2, 0};<br>    ierr = MatSetValues(B,1,&mybase,3,rowcol,J,INSERT_VALUES);CHKERRQ(ierr);<br>  }<br>  if (mybase == 2) {<br>    const PetscScalar J[] = {0, - appctx->p2, a};<br>    ierr = MatSetValues(B,1,&mybase,3,rowcol,J,INSERT_VALUES);CHKERRQ(ierr);<br>  }<br>  ierr    = VecRestoreArrayRead(X,&x);CHKERRQ(ierr);<br>  <br>  ierr = MatAssemblyBegin(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);<br>  ierr = MatAssemblyEnd(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);<br>  if (A != B) {<br>    ierr = MatAssemblyBegin(B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);<br>    ierr = MatAssemblyEnd(B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);<br>  }<br>  PetscFunctionReturn(0);<br>}</font><div><font face="Menlo"><br></font></div><div>This code does not provide the correct result, that is, the solution is the initial condition, either using implicit or explicit methods. Is the way I defined these objects wrong? How can I fix it? </div><div>I also tried to print the Jacobian with the following commands but it does not work (blank rows and error message). How should I print the Jacobian?</div><div><br></div><font face="Menlo"><span>ierr = TSGetIJacobian(ts,NULL,&K, NULL, NULL);</span></font> <span style="font-family:Menlo">CHKERRQ(ierr);</span><br style="font-family:Menlo"><font face="Menlo"><span>ierr = MatAssemblyBegin(K,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);<br></span><span>ierr = MatAssemblyEnd(K,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);<br></span></font><span><font face="Menlo">ierr = MatView(K,PETSC_VIEWER_STDOUT_WORLD);CHKERRQ(ierr);</font>                            <br><br>I would very much appreciate any kind of help or advice.</span></div><div><span>Best,</span></div><div><span>Francesco<br><br><blockquote type="cite">Il giorno 2 apr 2021, alle ore 04:45, Barry Smith <<a href="mailto:bsmith@petsc.dev" target="_blank">bsmith@petsc.dev</a>> ha scritto:<br><br><br><br><blockquote type="cite" style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none">On Apr 1, 2021, at 9:17 PM, Zhang, Hong via petsc-users <<a href="mailto:petsc-users@mcs.anl.gov" target="_blank">petsc-users@mcs.anl.gov</a>> wrote:<br><br><br><br><blockquote type="cite">On Mar 31, 2021, at 2:53 AM, Francesco Brarda <<a href="mailto:brardafrancesco@gmail.com" target="_blank">brardafrancesco@gmail.com</a>> wrote:<br><br>Hi everyone!<br><br>I am trying to solve a system of 3 ODEs (a basic SIR model) with TS. Sequentially works pretty well, but I need to switch it into a parallel version. <br>I started working with TS not very long time ago, there are few questions I’d like to share with you and if you have any advices I’d be happy to hear.<br>First of all, do I need to use a DM object even if the model is only time dependent? All the examples I found were using that object for the other variable when solving PDEs.<br></blockquote><br>Are you considering SIR on a spatial domain? If so, you can parallelize your model in the spatial domain using DM. Splitting the three variables in the ODE among processors would not scale.<br></blockquote><br> Even though it will not scale and will deliver slower performance it is completely possible for you to solve the 3 variable problem using 3 MPI ranks. Or 10 mpi ranks. You would just create vectors/matrices with 1 degree of freedom for the first three ranks and no degrees of freedom for the later ranks. During your function evaluation (and Jacobian evaluation) for TS you will need to set up the appropriate communication to get the values you need on each rank to evaluate the parts of the function evaluation needed by that rank. This is true for parallelizing any computation.<br><br> Barry<br><br><br><br><br><blockquote type="cite" style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none"><br>Hong (Mr.)  <br><br><blockquote type="cite">When I preallocate the space for the Jacobian matrix, is it better to decide the local or global space?<br><br>Best,<br>Francesco<br></blockquote></blockquote></blockquote><br></span></div></div></blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div>What most experimenters take for granted before they begin their experiments is infinitely more interesting than any results to which their experiments lead.<br>-- Norbert Wiener</div><div><br></div><div><a href="http://www.cse.buffalo.edu/~knepley/" target="_blank">https://www.cse.buffalo.edu/~knepley/</a><br></div></div></div></div></div></div></div></div>