import dolfinx
from basix.ufl import element
from dolfinx import mesh, fem, io
from dolfinx.fem import functionspace
from mpi4py import MPI
import numpy as np
from petsc4py import PETSc
import ufl
from mpi4py import MPI
from petsc4py import PETSc
import numpy as np
from basix.ufl import element, mixed_element
from dolfinx import fem, io, mesh
from dolfinx.fem.petsc import LinearProblem
from ufl import (Measure, SpatialCoordinate, TestFunctions, TrialFunctions,
div, exp, inner)
from mesh_and_plot import create_nested_rectangles
# Time stepping parameters
num_steps = 100
dt = 1 / num_steps
max_iter = 10
tol = 1e-6
domain, markers = create_nested_rectangles()
# Physical constants
R = fem.Constant(domain, np.float64(287.05))
c_v = fem.Constant(domain, np.float64(718.0))
c_p = fem.Constant(domain, np.float64(1005.0))
mu = fem.Constant(domain, np.float64(1.81e-5))
kappa = fem.Constant(domain, np.float64(0.025))
# Create mesh
length = 0.4
height = 0.4
nx = 40
ny = 40
# Create mesh and markers using the previously defined function
# Define function spaces
# Create elements
P1_pressure = element("Lagrange", domain.basix_cell(), degree=1, dtype=dolfinx.default_real_type)
P1_velocity = element("Lagrange", domain.basix_cell(), degree=1, shape=(domain.geometry.dim,), dtype=dolfinx.default_real_type)
P1_temperature = element("Lagrange", domain.basix_cell(), degree=1, dtype=dolfinx.default_real_type)
V_u, V_p, V_T = functionspace(domain, P1_velocity), functionspace(domain, P1_pressure),functionspace(domain, P1_temperature)
V_fluid = mixed_element([P1_pressure, P1_velocity, P1_temperature])
V_fluid_fs=functionspace(domain,V_fluid)
p_init = fem.Function(V_p)
u_init = fem.Function(V_u)
T_init = fem.Function(V_T)
this is the code that defines function space and mixed element space, then I want to define an initial condition, for example, for p_init, such that when in a Circular Region( Definition:A circular region is defined with its center at (0.0, 0.2) and a radius of 0.06.This is determined by the equation: (x - center_x)^2 + (y - center_y)^2 < radius^2), the pressure in this circular region is high pressure (6,746,268.65 Pa),Outside the circle is the Low pressure (100,000 Pa), how to do this in latest version of dolfinx?