Thank you Grant, Tatiana, and Andreas. Your answers are very helpful to me.
The input files provided by Andreas do work. If the geometry is identical within two jobs, the SCF and CCSD are converged in 1 cycle, which means that the MOs, and t1, t2 amplitudes are read successfully.
My real question would be a little bit of complicated: I have MOs and t1, t2 amplitudes from other programs (CFOUR, PySCF, etc), I can write these data into plain text files or raw data binary files, using simple Fortran code. But it seems difficult to write data into a .wfu file or generate a .wfu file, since the .wfu file contains much more information than I thought. So I'm wondering if there is any syntax in Molpro like this
{matrop;
read, t1, AMP, file=t1.txt;
save, t1, 4000.2, AMPLITUDES}
{CCSD;start,4000.2}
If such syntax does exist, the question could be solved immediately. Note that the four lines above are my imagination, it does not work when it is written into the Molpro input file. I got the inspiration from the known syntax for reading MOs
{matrop;
read,mo,ORB,file=h2o_rhf.a;
save,mo,2100.2,ORBITALS}
{HF;start,2100.2}
So, I think I'm close to the final answer about reading CCSD amplitudes from a raw text/binary file. Either I try to generate a .wfu file, or I try to figure out how to read amplitudes using "matrop;read".
More help and suggestions would be greatly appreciated.
Best,
Jingxiang Zou