Thanks for your response.
I have attached the input script used for these calculations.
I will also try to install the latest LAMMPS version and check whether the same behavior persists.
#Input script:
units metal
atom_style full
boundary p p p
newton on
bond_style harmonic
angle_style harmonic
atom_modify map yes
read_data system_equi2.data
group np type 1
group water type 2 3
bond_coeff 1 19.5140 0.9572
angle_coeff 1 2.3850 104.52
write_dump all xyz structure_initial.xyz modify sort id element Ag H O
pair_style hybrid lj/cut/coul/long 10.0 eam/alloy
pair_coeff * * eam/alloy np.eam.alloy Ag NULL NULL
pair_coeff 3 3 lj/cut/coul/long 0.0044231 3.188
pair_coeff 2 2 lj/cut/coul/long 0.000 1.000
pair_coeff 2 3 lj/cut/coul/long 0.000 1.000
pair_coeff 1 3 lj/cut/coul/long 0.03906 2.916
pair_coeff 1 2 lj/cut/coul/long 0.000 1.000
kspace_style pppm 1.0e-4
##Minimization
#fix freeze_np np setforce 0.0 0.0 0.0
#thermo 100
#thermo_style custom step pe ke etotal fmax
#min_style fire
#min_modify dmax 0.01 vdfmax 0.0
#minimize 0 1.0e-2 10000000 100000
#write_dump all xyz structure_minim.xyz modify sort id element Ag H O
#write_data system_minim.data
##Solvent Relaxation
#reset_timestep 0
#velocity water create 300 4928459 mom yes rot yes dist gaussian
#thermo 100
#thermo_style custom step temp pe ke etotal
#fix relax_nvt water nvt temp 300 300 0.1
#run 500000
#write_dump all xyz structure_equi1.xyz modify sort id element Ag H O
#write_data system_equi1.data
#unfix relax_nvt
##Solvent Density Equilibration
#thermo 100
#thermo_style custom step temp press vol pe ke etotal
#fix relax_npt water npt temp 300 300 0.1 iso 1.0 1.0 1.0 dilate water
#run 500000
#write_dump all xyz structure_equi2.xyz modify sort id element Ag H O
#write_data system_equi2.data
#unfix relax_npt
#unfix freeze_np
##Heating
reset_timestep 0
velocity np create 300 4928459 mom yes rot yes dist gaussian
fix int_np np nve
fix int_wt water nve
##Tether (COM spring)
fix teth np spring tether 10.0 40 40 40 0.0
##OR recenter # another option for COM control
#fix lock_center np recenter 40.0 40.0 40.0 shift all units box
variable Power equal 900.0e-9
variable eflux equal v_Power*6.241509e6
fix optheat np heat 1 v_eflux
region r_in sphere 40 40 40 18.0 side out units box
region r_out sphere 40 40 40 39.0 units box
region r_shell intersect 2 r_out r_in
group outer dynamic water region r_shell every 100
compute Touter outer temp/com
compute_modify Touter dynamic/dof yes
fix bath outer langevin 300 300 0.1 4928459 zero yes
fix_modify bath temp Touter
compute Tnp np temp/com
compute Twat water temp/com
thermo_style custom step c_Twat c_Touter c_Tnp pe ke etotal
thermo 100
##RADIAL TEMPERATURE PROFILE
compute myChunksnp np chunk/atom bin/sphere 40 40 40 0.0 39 39 units box
compute myChunksWt water chunk/atom bin/sphere 40 40 40 0.0 39 39 units box
compute Tnp_profile np temp/com
compute Twat_profile water temp/com
fix profnp np ave/chunk 10 100 1000 myChunksnp temp bias Tnp_profile file solid_temp.profile
fix profWt water ave/chunk 10 100 1000 myChunksWt temp bias Twat_profile file liquid_temp.profile
##Run control
dump mydmp all custom 1000 dump_prod.lammpstrj id type x y z vx vy vz fx fy fz
dump_modify mydmp sort id
timestep 0.001
run 1200000
write_dump all xyz structure_heat.xyz modify sort id element Ag H O
write_data system_heat.data
Many thanks in adavnce,
Ibrahim