Hello, I solved this problem according to the advice of the person who wrote the answer.
This error is believed to have occurred due to the disappearance of some information when using the PARMED.
Trajectory converting
>trajin NPT_production.dcd
>strip :POT,CLA,TIP3,SOD
>trajout traj.xtc
>trajout ionized_1.pdb onlyframes 1
>run
>exit
Gromacs file building
psf = pmd.load_file('ionized.psf')
psf.strip(':POT, CLA, TIP3, LIT, SOD, RUB, CES, BAR')
psf.coordinates = pmd.load_file('ionized_1.pdb').coordinates # note that I do the strip first and then load the coordinates, otherwise ends up in a mismatch error
params = pmd.charmm.CharmmParameterSet('parm/par_all36_prot.prm',
'parm/par_all36_na.prm',
'parm/par_all36_lipid.prm',
'parm/par_all36_carb.prm',
'parm/par_all36_cgenff.prm',
'parm/toppar_water_ions_namd.str',
'parm/lig.prm' ,
'parm/toppar_all36_prot_heme.str')
psf.load_parameters(params)
psf.save('gromacs_1.top')
psf.save('gromacs_1.pdb')
After change like this my system was working !
I really appreciate kindly advice :)