-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtriangle_mesh_surface_example.f90
68 lines (56 loc) · 1.82 KB
/
triangle_mesh_surface_example.f90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
program example
use iso_fortran_env
use fplot_core
implicit none
! Variables
integer(int32), parameter :: npts = 15
real(real64), allocatable :: xc(:,:), yc(:,:), x(:), y(:), z(:), xy(:,:,:)
real(real64) :: xi, yi, zi
type(delaunay_tri_surface) :: tri
type(tri_surface_plot_data) :: ds
type(plot_data_3d) :: di
type(surface_plot) :: plt
class(plot_axis), pointer :: xAxis, yAxis, zAxis
integer(int32) :: i
! Initialization
xy = meshgrid(linspace(-5.0d0, 5.0d0, npts), linspace(-5.0d0, 5.0d0, npts))
xc = xy(:,:,1)
yc = xy(:,:,2)
x = reshape(xc, [npts * npts])
y = reshape(yc, [npts * npts])
z = sin(x) + sin(y)
! Generate the triangulation
call tri%create(x, y)
call tri%define_function_values(z)
! Interpolate using the triangulation
xi = 2.0d0
yi = 2.0d0
zi = tri%evaluate(xi, yi)
! Print the interpolated values
print '(A)', "Interpolated Value:"
print '(AF0.3AF0.3AF0.3)', achar(9), xi, achar(9), yi, achar(9), zi
print '(A)', "Actual Values:"
print '(AF0.3AF0.3AF0.3)', achar(9), xi, achar(9), yi, achar(9), &
sin(xi) + sin(yi)
! Generate the plot
call plt%initialize()
call plt%set_font_size(14)
xAxis => plt%get_x_axis()
yAxis => plt%get_y_axis()
zAxis => plt%get_z_axis()
call xAxis%set_title("x")
call yAxis%set_title("y")
call zAxis%set_title("f(x,y)")
call ds%define_data(tri)
call ds%set_use_wireframe(.true.)
call di%define_data([xi], [yi], [zi])
call di%set_draw_line(.false.)
call di%set_line_width(2.0)
call di%set_draw_markers(.true.)
call di%set_marker_style(MARKER_FILLED_CIRCLE)
call di%set_marker_scaling(3.0)
call di%set_line_color(CLR_RED)
call plt%push(ds)
call plt%push(di)
call plt%draw()
end program