Actual source code: chwirut1f.F

petsc-3.7.5 2017-01-01
Report Typos and Errors
  1: !  Program usage: mpiexec -n 1 chwirut1f [-help] [all TAO options]
  2: !
  3: !  Description:  This example demonstrates use of the TAO package to solve a
  4: !  nonlinear least-squares problem on a single processor.  We minimize the
  5: !  Chwirut function:
  6: !       sum_{i=0}^{n/2-1} ( alpha*(x_{2i+1}-x_{2i}^2)^2 + (1-x_{2i})^2 )
  7: !
  8: !  The C version of this code is test_chwirut1.c
  9: !
 10: !/*T
 11: !  Concepts: TAO^Solving an unconstrained minimization problem
 12: !  Routines: TaoCreate();
 13: !  Routines: TaoSetType();
 14: !  Routines: TaoSetInitialVector();
 15: !  Routines: TaoSetSeparableObjectiveRoutine();
 16: !  Routines: TaoSetFromOptions();
 17: !  Routines: TaoSolve();
 18: !  Routines: TaoDestroy();
 19: !  Processors: 1
 20: !T*/
 21: !
 22: ! ----------------------------------------------------------------------
 23: !
 24:       implicit none

 26: #include "chwirut1f.h"

 28: ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 29: !                   Variable declarations
 30: ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 31: !
 32: !  See additional variable declarations in the file chwirut1f.h

 34:       PetscErrorCode   ierr    ! used to check for functions returning nonzeros
 35:       Vec              x       ! solution vector
 36:       Vec              f       ! vector of functions
 37:       Tao        tao     ! Tao context
 38:       PetscInt         nhist
 39:       integer          size,rank    ! number of processes running
 40:       PetscReal      zero
 41:       PetscReal      hist(100) ! objective value history
 42:       PetscReal      resid(100)! residual history
 43:       PetscReal      cnorm(100)! cnorm history
 44:       PetscReal      lits(100) ! #ksp history
 45:       TaoConvergedReason reason




 50: !  Note: Any user-defined Fortran routines (such as FormGradient)
 51: !  MUST be declared as external.

 53:       external FormFunction

 55:       zero = 0.0

 57: !  Initialize TAO and PETSc
 58:       call PetscInitialize(PETSC_NULL_CHARACTER,ierr)

 60:       call MPI_Comm_size(PETSC_COMM_WORLD,size,ierr)
 61:       call MPI_Comm_rank(PETSC_COMM_WORLD,rank,ierr)
 62:       if (size .ne. 1) then
 63:          if (rank .eq. 0) then
 64:             write(6,*) 'This is a uniprocessor example only!'
 65:          endif
 66:          SETERRQ(PETSC_COMM_SELF,1,' ',ierr)
 67:       endif

 69: !  Initialize problem parameters
 70:       m = 214
 71:       n = 3


 74: !  Allocate vectors for the solution and gradient
 75:       call VecCreateSeq(PETSC_COMM_SELF,n,x,ierr)
 76:       call VecCreateSeq(PETSC_COMM_SELF,m,f,ierr)


 79: !  The TAO code begins here

 81: !  Create TAO solver
 82:       call TaoCreate(PETSC_COMM_SELF,tao,ierr)
 83:       CHKERRQ(ierr)
 84:       call TaoSetType(tao,TAOPOUNDERS,ierr)
 85:       CHKERRQ(ierr)
 86: !  Set routines for function, gradient, and hessian evaluation

 88:       call TaoSetSeparableObjectiveRoutine(tao,f,                       &
 89:      &      FormFunction,PETSC_NULL_OBJECT,ierr)
 90:       CHKERRQ(ierr)

 92: !  Optional: Set initial guess
 93:       call InitializeData()
 94:       call FormStartingPoint(x)
 95:       call TaoSetInitialVector(tao, x, ierr)
 96:       CHKERRQ(ierr)


 99: !  Check for TAO command line options
100:       call TaoSetFromOptions(tao,ierr)
101:       CHKERRQ(ierr)
102:       call TaoSetConvergenceHistory(tao,hist,resid,cnorm,lits,          &
103:      &     100,PETSC_TRUE,ierr)
104:       CHKERRQ(ierr)
105: !  SOLVE THE APPLICATION
106:       call TaoSolve(tao,ierr)
107:       CHKERRQ(ierr)
108:       call TaoGetConvergenceHistory(tao,nhist,ierr)
109:       CHKERRQ(ierr)
110:       call TaoGetConvergedReason(tao, reason, ierr)
111:       if (reason .le. 0) then
112:          print *,'Tao failed.'
113:          print *,'Try a different TAO method, adjust some parameters,'
114:          print *,'or check the function evaluation routines.'
115:       endif
116: !  TaoView() prints ierr about the TAO solver; the option
117: !      -tao_view
118: !  can alternatively be used to activate this at runtime.
119:       call TaoView(tao,PETSC_VIEWER_STDOUT_SELF,ierr)


122: !  Free TAO data structures
123:       call TaoDestroy(tao,ierr)

125: !  Free PETSc data structures
126:       call VecDestroy(x,ierr)
127:       call VecDestroy(f,ierr)

129:       call PetscFinalize(ierr)

131:       end


134: ! --------------------------------------------------------------------
135: !  FormFunction - Evaluates the function f(X) and gradient G(X)
136: !
137: !  Input Parameters:
138: !  tao - the Tao context
139: !  X   - input vector
140: !  dummy - not used
141: !
142: !  Output Parameters:
143: !  f - function vector

145:       subroutine FormFunction(tao, x, f, dummy, ierr)
146:       implicit none

148: ! n,alpha defined in chwirut1f.h
149: #include "chwirut1f.h"

151:       Tao        tao
152:       Vec              x,f
153:       PetscErrorCode   ierr
154:       PetscInt         dummy

156:       PetscInt         i

158: ! PETSc's VecGetArray acts differently in Fortran than it does in C.
159: ! Calling VecGetArray((Vec) X, (PetscReal) x_array(0:1), (PetscOffset) x_index, ierr)
160: ! will return an array of doubles referenced by x_array offset by x_index.
161: !  i.e.,  to reference the kth element of X, use x_array(k + x_index).
162: ! Notice that by declaring the arrays with range (0:1), we are using the C 0-indexing practice.
163:       PetscReal        f_v(0:1),x_v(0:1)
164:       PetscOffset      f_i,x_i

166:       0

168: !     Get pointers to vector data
169:       call VecGetArray(x,x_v,x_i,ierr)
170:       CHKERRQ(ierr)
171:       call VecGetArray(f,f_v,f_i,ierr)
172:       CHKERRQ(ierr)


175: !     Compute F(X)
176:       do i=0,m-1
177:          f_v(f_i+i) = y(i) - exp(-x_v(x_i+0)*t(i))/                      &
178:      &    (x_v(x_i+1) + x_v(x_i+2)*t(i))

180:       enddo


183: !     Restore vectors
184:       call VecRestoreArray(X,x_v,x_i,ierr)
185:       CHKERRQ(ierr)
186:       call VecRestoreArray(F,f_v,f_i,ierr)
187:       CHKERRQ(ierr)


190:       return
191:       end





197:       subroutine FormStartingPoint(x)
198:       implicit none

200: ! n,alpha defined in chwirut1f.h
201: #include "chwirut1f.h"
202:       Vec             x
203:       PetscReal       x_v(0:1)
204:       PetscOffset     x_i
205:       PetscErrorCode  ierr

207:       call VecGetArray(x,x_v,x_i,ierr)
208:       x_v(x_i) = 0.15
209:       x_v(x_i+1) = 0.008
210:       x_v(x_i+2) = 0.01
211:       call VecRestoreArray(x,x_v,x_i,ierr)
212:       return
213:       end


216:       subroutine InitializeData()
217:       implicit none

219: ! n,alpha defined in chwirut1f.h
220: #include "chwirut1f.h"
221:       integer i
222:       i=0
223:       y(i) =    92.9000;  t(i) =  0.5000; i=i+1
224:       y(i) =    78.7000;  t(i) =   0.6250; i=i+1
225:       y(i) =    64.2000;  t(i) =   0.7500; i=i+1
226:       y(i) =    64.9000;  t(i) =   0.8750; i=i+1
227:       y(i) =    57.1000;  t(i) =   1.0000; i=i+1
228:       y(i) =    43.3000;  t(i) =   1.2500; i=i+1
229:       y(i) =    31.1000;  t(i) =  1.7500; i=i+1
230:       y(i) =    23.6000;  t(i) =  2.2500; i=i+1
231:       y(i) =    31.0500;  t(i) =  1.7500; i=i+1
232:       y(i) =    23.7750;  t(i) =  2.2500; i=i+1
233:       y(i) =    17.7375;  t(i) =  2.7500; i=i+1
234:       y(i) =    13.8000;  t(i) =  3.2500; i=i+1
235:       y(i) =    11.5875;  t(i) =  3.7500; i=i+1
236:       y(i) =     9.4125;  t(i) =  4.2500; i=i+1
237:       y(i) =     7.7250;  t(i) =  4.7500; i=i+1
238:       y(i) =     7.3500;  t(i) =  5.2500; i=i+1
239:       y(i) =     8.0250;  t(i) =  5.7500; i=i+1
240:       y(i) =    90.6000;  t(i) =  0.5000; i=i+1
241:       y(i) =    76.9000;  t(i) =  0.6250; i=i+1
242:       y(i) =    71.6000;  t(i) = 0.7500; i=i+1
243:       y(i) =    63.6000;  t(i) =  0.8750; i=i+1
244:       y(i) =    54.0000;  t(i) =  1.0000; i=i+1
245:       y(i) =    39.2000;  t(i) =  1.2500; i=i+1
246:       y(i) =    29.3000;  t(i) = 1.7500; i=i+1
247:       y(i) =    21.4000;  t(i) =  2.2500; i=i+1
248:       y(i) =    29.1750;  t(i) =  1.7500; i=i+1
249:       y(i) =    22.1250;  t(i) =  2.2500; i=i+1
250:       y(i) =    17.5125;  t(i) =  2.7500; i=i+1
251:       y(i) =    14.2500;  t(i) =  3.2500; i=i+1
252:       y(i) =     9.4500;  t(i) =  3.7500; i=i+1
253:       y(i) =     9.1500;  t(i) =  4.2500; i=i+1
254:       y(i) =     7.9125;  t(i) =  4.7500; i=i+1
255:       y(i) =     8.4750;  t(i) =  5.2500; i=i+1
256:       y(i) =     6.1125;  t(i) =  5.7500; i=i+1
257:       y(i) =    80.0000;  t(i) =  0.5000; i=i+1
258:       y(i) =    79.0000;  t(i) =  0.6250; i=i+1
259:       y(i) =    63.8000;  t(i) =  0.7500; i=i+1
260:       y(i) =    57.2000;  t(i) =  0.8750; i=i+1
261:       y(i) =    53.2000;  t(i) =  1.0000; i=i+1
262:       y(i) =    42.5000;  t(i) =  1.2500; i=i+1
263:       y(i) =    26.8000;  t(i) =  1.7500; i=i+1
264:       y(i) =    20.4000;  t(i) =  2.2500; i=i+1
265:       y(i) =    26.8500;  t(i) =   1.7500; i=i+1
266:       y(i) =    21.0000;  t(i) =   2.2500; i=i+1
267:       y(i) =    16.4625;  t(i) =   2.7500; i=i+1
268:       y(i) =    12.5250;  t(i) =   3.2500; i=i+1
269:       y(i) =    10.5375;  t(i) =   3.7500; i=i+1
270:       y(i) =     8.5875;  t(i) =   4.2500; i=i+1
271:       y(i) =     7.1250;  t(i) =   4.7500; i=i+1
272:       y(i) =     6.1125;  t(i) =   5.2500; i=i+1
273:       y(i) =     5.9625;  t(i) =   5.7500; i=i+1
274:       y(i) =    74.1000;  t(i) =   0.5000; i=i+1
275:       y(i) =    67.3000;  t(i) =   0.6250; i=i+1
276:       y(i) =    60.8000;  t(i) =   0.7500; i=i+1
277:       y(i) =    55.5000;  t(i) =   0.8750; i=i+1
278:       y(i) =    50.3000;  t(i) =   1.0000; i=i+1
279:       y(i) =    41.0000;  t(i) =   1.2500; i=i+1
280:       y(i) =    29.4000;  t(i) =   1.7500; i=i+1
281:       y(i) =    20.4000;  t(i) =   2.2500; i=i+1
282:       y(i) =    29.3625;  t(i) =   1.7500; i=i+1
283:       y(i) =    21.1500;  t(i) =   2.2500; i=i+1
284:       y(i) =    16.7625;  t(i) =   2.7500; i=i+1
285:       y(i) =    13.2000;  t(i) =   3.2500; i=i+1
286:       y(i) =    10.8750;  t(i) =   3.7500; i=i+1
287:       y(i) =     8.1750;  t(i) =   4.2500; i=i+1
288:       y(i) =     7.3500;  t(i) =   4.7500; i=i+1
289:       y(i) =     5.9625;  t(i) =  5.2500; i=i+1
290:       y(i) =     5.6250;  t(i) =   5.7500; i=i+1
291:       y(i) =    81.5000;  t(i) =    .5000; i=i+1
292:       y(i) =    62.4000;  t(i) =    .7500; i=i+1
293:       y(i) =    32.5000;  t(i) =   1.5000; i=i+1
294:       y(i) =    12.4100;  t(i) =   3.0000; i=i+1
295:       y(i) =    13.1200;  t(i) =   3.0000; i=i+1
296:       y(i) =    15.5600;  t(i) =   3.0000; i=i+1
297:       y(i) =     5.6300;  t(i) =   6.0000; i=i+1
298:       y(i) =    78.0000;  t(i) =   .5000; i=i+1
299:       y(i) =    59.9000;  t(i) =    .7500; i=i+1
300:       y(i) =    33.2000;  t(i) =   1.5000; i=i+1
301:       y(i) =    13.8400;  t(i) =   3.0000; i=i+1
302:       y(i) =    12.7500;  t(i) =   3.0000; i=i+1
303:       y(i) =    14.6200;  t(i) =   3.0000; i=i+1
304:       y(i) =     3.9400;  t(i) =   6.0000; i=i+1
305:       y(i) =    76.8000;  t(i) =    .5000; i=i+1
306:       y(i) =    61.0000;  t(i) =    .7500; i=i+1
307:       y(i) =    32.9000;  t(i) =   1.5000; i=i+1
308:       y(i) =    13.8700;  t(i) = 3.0000; i=i+1
309:       y(i) =    11.8100;  t(i) =   3.0000; i=i+1
310:       y(i) =    13.3100;  t(i) =   3.0000; i=i+1
311:       y(i) =     5.4400;  t(i) =   6.0000; i=i+1
312:       y(i) =    78.0000;  t(i) =    .5000; i=i+1
313:       y(i) =    63.5000;  t(i) =    .7500; i=i+1
314:       y(i) =    33.8000;  t(i) =   1.5000; i=i+1
315:       y(i) =    12.5600;  t(i) =   3.0000; i=i+1
316:       y(i) =     5.6300;  t(i) =   6.0000; i=i+1
317:       y(i) =    12.7500;  t(i) =   3.0000; i=i+1
318:       y(i) =    13.1200;  t(i) =   3.0000; i=i+1
319:       y(i) =     5.4400;  t(i) =   6.0000; i=i+1
320:       y(i) =    76.8000;  t(i) =    .5000; i=i+1
321:       y(i) =    60.0000;  t(i) =    .7500; i=i+1
322:       y(i) =    47.8000;  t(i) =   1.0000; i=i+1
323:       y(i) =    32.0000;  t(i) =   1.5000; i=i+1
324:       y(i) =    22.2000;  t(i) =   2.0000; i=i+1
325:       y(i) =    22.5700;  t(i) =   2.0000; i=i+1
326:       y(i) =    18.8200;  t(i) =   2.5000; i=i+1
327:       y(i) =    13.9500;  t(i) =   3.0000; i=i+1
328:       y(i) =    11.2500;  t(i) =   4.0000; i=i+1
329:       y(i) =     9.0000;  t(i) =   5.0000; i=i+1
330:       y(i) =     6.6700;  t(i) =   6.0000; i=i+1
331:       y(i) =    75.8000;  t(i) =    .5000; i=i+1
332:       y(i) =    62.0000;  t(i) =    .7500; i=i+1
333:       y(i) =    48.8000;  t(i) =   1.0000; i=i+1
334:       y(i) =    35.2000;  t(i) =   1.5000; i=i+1
335:       y(i) =    20.0000;  t(i) =   2.0000; i=i+1
336:       y(i) =    20.3200;  t(i) =   2.0000; i=i+1
337:       y(i) =    19.3100;  t(i) =   2.5000; i=i+1
338:       y(i) =    12.7500;  t(i) =   3.0000; i=i+1
339:       y(i) =    10.4200;  t(i) =   4.0000; i=i+1
340:       y(i) =     7.3100;  t(i) =   5.0000; i=i+1
341:       y(i) =     7.4200;  t(i) =   6.0000; i=i+1
342:       y(i) =    70.5000;  t(i) =    .5000; i=i+1
343:       y(i) =    59.5000;  t(i) =    .7500; i=i+1
344:       y(i) =    48.5000;  t(i) =   1.0000; i=i+1
345:       y(i) =    35.8000;  t(i) =   1.5000; i=i+1
346:       y(i) =    21.0000;  t(i) =   2.0000; i=i+1
347:       y(i) =    21.6700;  t(i) =   2.0000; i=i+1
348:       y(i) =    21.0000;  t(i) =   2.5000; i=i+1
349:       y(i) =    15.6400;  t(i) =   3.0000; i=i+1
350:       y(i) =     8.1700;  t(i) =   4.0000; i=i+1
351:       y(i) =     8.5500;  t(i) =   5.0000; i=i+1
352:       y(i) =    10.1200;  t(i) =   6.0000; i=i+1
353:       y(i) =    78.0000;  t(i) =    .5000; i=i+1
354:       y(i) =    66.0000;  t(i) =    .6250; i=i+1
355:       y(i) =    62.0000;  t(i) =    .7500; i=i+1
356:       y(i) =    58.0000;  t(i) =    .8750; i=i+1
357:       y(i) =    47.7000;  t(i) =   1.0000; i=i+1
358:       y(i) =    37.8000;  t(i) =   1.2500; i=i+1
359:       y(i) =    20.2000;  t(i) =   2.2500; i=i+1
360:       y(i) =    21.0700;  t(i) =   2.2500; i=i+1
361:       y(i) =    13.8700;  t(i) =   2.7500; i=i+1
362:       y(i) =     9.6700;  t(i) =   3.2500; i=i+1
363:       y(i) =     7.7600;  t(i) =   3.7500; i=i+1
364:       y(i) =     5.4400;  t(i) =  4.2500; i=i+1
365:       y(i) =     4.8700;  t(i) =  4.7500; i=i+1
366:       y(i) =     4.0100;  t(i) =   5.2500; i=i+1
367:       y(i) =     3.7500;  t(i) =   5.7500; i=i+1
368:       y(i) =    24.1900;  t(i) =   3.0000; i=i+1
369:       y(i) =    25.7600;  t(i) =   3.0000; i=i+1
370:       y(i) =    18.0700;  t(i) =   3.0000; i=i+1
371:       y(i) =    11.8100;  t(i) =   3.0000; i=i+1
372:       y(i) =    12.0700;  t(i) =   3.0000; i=i+1
373:       y(i) =    16.1200;  t(i) =   3.0000; i=i+1
374:       y(i) =    70.8000;  t(i) =    .5000; i=i+1
375:       y(i) =    54.7000;  t(i) =    .7500; i=i+1
376:       y(i) =    48.0000;  t(i) =   1.0000; i=i+1
377:       y(i) =    39.8000;  t(i) =   1.5000; i=i+1
378:       y(i) =    29.8000;  t(i) =   2.0000; i=i+1
379:       y(i) =    23.7000;  t(i) =   2.5000; i=i+1
380:       y(i) =    29.6200;  t(i) =   2.0000; i=i+1
381:       y(i) =    23.8100;  t(i) =   2.5000; i=i+1
382:       y(i) =    17.7000;  t(i) =   3.0000; i=i+1
383:       y(i) =    11.5500;  t(i) =   4.0000; i=i+1
384:       y(i) =    12.0700;  t(i) =   5.0000; i=i+1
385:       y(i) =     8.7400;  t(i) =   6.0000; i=i+1
386:       y(i) =    80.7000;  t(i) =    .5000; i=i+1
387:       y(i) =    61.3000;  t(i) =    .7500; i=i+1
388:       y(i) =    47.5000;  t(i) =   1.0000; i=i+1
389:       y(i) =    29.0000;  t(i) =   1.5000; i=i+1
390:       y(i) =    24.0000;  t(i) =   2.0000; i=i+1
391:       y(i) =    17.7000;  t(i) =   2.5000; i=i+1
392:       y(i) =    24.5600;  t(i) =   2.0000; i=i+1
393:       y(i) =    18.6700;  t(i) =   2.5000; i=i+1
394:       y(i) =    16.2400;  t(i) =   3.0000; i=i+1
395:       y(i) =     8.7400;  t(i) =   4.0000; i=i+1
396:       y(i) =     7.8700;  t(i) =   5.0000; i=i+1
397:       y(i) =     8.5100;  t(i) =   6.0000; i=i+1
398:       y(i) =    66.7000;  t(i) =    .5000; i=i+1
399:       y(i) =    59.2000;  t(i) =    .7500; i=i+1
400:       y(i) =    40.8000;  t(i) =   1.0000; i=i+1
401:       y(i) =    30.7000;  t(i) =   1.5000; i=i+1
402:       y(i) =    25.7000;  t(i) =   2.0000; i=i+1
403:       y(i) =    16.3000;  t(i) =   2.5000; i=i+1
404:       y(i) =    25.9900;  t(i) =   2.0000; i=i+1
405:       y(i) =    16.9500;  t(i) =   2.5000; i=i+1
406:       y(i) =    13.3500;  t(i) =   3.0000; i=i+1
407:       y(i) =     8.6200;  t(i) =   4.0000; i=i+1
408:       y(i) =     7.2000;  t(i) =   5.0000; i=i+1
409:       y(i) =     6.6400;  t(i) =   6.0000; i=i+1
410:       y(i) =    13.6900;  t(i) =   3.0000; i=i+1
411:       y(i) =    81.0000;  t(i) =    .5000; i=i+1
412:       y(i) =    64.5000;  t(i) =    .7500; i=i+1
413:       y(i) =    35.5000;  t(i) =   1.5000; i=i+1
414:       y(i) =    13.3100;  t(i) =   3.0000; i=i+1
415:       y(i) =     4.8700;  t(i) =   6.0000; i=i+1
416:       y(i) =    12.9400;  t(i) =   3.0000; i=i+1
417:       y(i) =     5.0600;  t(i) =   6.0000; i=i+1
418:       y(i) =    15.1900;  t(i) =   3.0000; i=i+1
419:       y(i) =    14.6200;  t(i) =   3.0000; i=i+1
420:       y(i) =    15.6400;  t(i) =   3.0000; i=i+1
421:       y(i) =    25.5000;  t(i) =   1.7500; i=i+1
422:       y(i) =    25.9500;  t(i) =   1.7500; i=i+1
423:       y(i) =    81.7000;  t(i) =    .5000; i=i+1
424:       y(i) =    61.6000;  t(i) =    .7500; i=i+1
425:       y(i) =    29.8000;  t(i) =   1.7500; i=i+1
426:       y(i) =    29.8100;  t(i) =   1.7500; i=i+1
427:       y(i) =    17.1700;  t(i) =   2.7500; i=i+1
428:       y(i) =    10.3900;  t(i) =   3.7500; i=i+1
429:       y(i) =    28.4000;  t(i) =   1.7500; i=i+1
430:       y(i) =    28.6900;  t(i) =   1.7500; i=i+1
431:       y(i) =    81.3000;  t(i) =    .5000; i=i+1
432:       y(i) =    60.9000;  t(i) =    .7500; i=i+1
433:       y(i) =    16.6500;  t(i) =   2.7500; i=i+1
434:       y(i) =    10.0500;  t(i) =   3.7500; i=i+1
435:       y(i) =    28.9000;  t(i) =   1.7500; i=i+1
436:       y(i) =    28.9500;  t(i) =   1.7500; i=i+1

438:       return
439:       end