pure subroutine fcn(n, m, np, nq, ldn, ldm, ldnp, beta, xplusd, ifixb, ifixx, &
ldifx, ideval, f, fjacb, fjacd, istop)
!! User-supplied subroutine for evaluating the model.
integer, intent(in) :: ideval, ldifx, ldm, ldn, ldnp, m, n, np, nq
integer, intent(in) :: ifixb(np), ifixx(ldifx, m)
real(kind=wp), intent(in) :: beta(np), xplusd(ldn, m)
real(kind=wp), intent(out) :: f(ldn, nq), fjacb(ldn, ldnp, nq), fjacd(ldn, ldm, nq)
integer, intent(out) :: istop
! Local variables
real(kind=wp) :: freq, omega, ctheta, stheta, theta, phi, r
real(kind=wp), parameter :: pi = 4*atan(one)
integer :: i
! Check for unacceptable values for this problem
do i = 1, n
if (xplusd(i, 1) .lt. zero) then
istop = 1
return
end if
end do
istop = 0
theta = pi*beta(4)*0.5E0_wp
ctheta = cos(theta)
stheta = sin(theta)
! Compute predicted values
if (mod(ideval, 10) .ge. 1) then
do i = 1, n
freq = xplusd(i, 1)
omega = (2.0E0_wp*pi*freq*exp(-beta(3)))**beta(4)
phi = atan2((omega*stheta), (1 + omega*ctheta))
r = (beta(1) - beta(2))*sqrt((1 + omega*ctheta)**2 + (omega*stheta)**2)**(-beta(5))
f(i, 1) = beta(2) + r*cos(beta(5)*phi)
f(i, 2) = r*sin(beta(5)*phi)
end do
end if
end subroutine fcn