I have a text file from a simulation where the numbers are without any spaces between them. An example is given below. I want to separate the numbers based on the decimal point number (13).
5.656854249492415.594870951694315.594870951694315.594870951694321.466252583998021.466252583998021.466252583998027.4809024597083
I want the output like the following:
5.6568542494924
15.5948709516943
15.5948709516943
15.5948709516943
21.4662525839980
21.4662525839980
21.4662525839980
27.4809024597083
I have tried to use sed command as below but it is not working.
sed -i 's/\(.\{14\}\)/\1 /g' input.txt
I have attached a screenshot as a reference. 
I appreciate any helpful suggestions.
Thank you
sed -E 's/\.[0-9]{13}/& /g'-- a literal dot followed by 13 digits. Your regex says "14 of any character"