Tagged files with gromacs 3.0 header and added some license info
[alexxy/gromacs.git] / src / contrib / gctio.c
1 /*
2  * $Id$
3  * 
4  *                This source code is part of
5  * 
6  *                 G   R   O   M   A   C   S
7  * 
8  *          GROningen MAchine for Chemical Simulations
9  * 
10  *                        VERSION 3.0
11  * 
12  * Copyright (c) 1991-2001
13  * BIOSON Research Institute, Dept. of Biophysical Chemistry
14  * University of Groningen, The Netherlands
15  * 
16  * This program is free software; you can redistribute it and/or
17  * modify it under the terms of the GNU General Public License
18  * as published by the Free Software Foundation; either version 2
19  * of the License, or (at your option) any later version.
20  * 
21  * If you want to redistribute modifications, please consider that
22  * scientific software is very special. Version control is crucial -
23  * bugs must be traceable. We will be happy to consider code for
24  * inclusion in the official distribution, but derived work must not
25  * be called official GROMACS. Details are found in the README & COPYING
26  * files - if they are missing, get the official version at www.gromacs.org.
27  * 
28  * To help us fund GROMACS development, we humbly ask that you cite
29  * the papers on the package - you can find them in the top README file.
30  * 
31  * Do check out http://www.gromacs.org , or mail us at gromacs@gromacs.org .
32  * 
33  * And Hey:
34  * Gromacs Runs On Most of All Computer Systems
35  */
36 static char *SRCID_gctio_c = "$Id$";
37 #include "typedefs.h"
38 #include "do_gct.h"
39 #include "block_tx.h"
40 #include "futil.h"
41 #include "xvgr.h"
42 #include "macros.h"
43 #include "physics.h"
44 #include "network.h"
45 #include "smalloc.h"
46 #include "string2.h"
47 #include "readinp.h"
48 #include "filenm.h"
49 #include "names.h"
50
51 char *eoNames[eoNR] = { 
52   "Pres", "Epot", "Vir", "Dist", "Mu", "Force", "Fx", "Fy", "Fz",
53   "Px", "Py", "Pz",
54   "Polarizability", "Dipole", "Memory", "UseEinter", "UseVirial"
55 };
56
57 static int Name2eo(char *s)
58 {
59   int i,res;
60   
61   res=-1;
62   
63   for(i=0; (i<eoNR); i++)
64     if (strcasecmp(s,eoNames[i]) == 0) {
65       res=i;
66       fprintf(stderr,"Coupling to observable %d (%s)\n",res,eoNames[res]);
67       break;
68     }
69   
70   return res;
71 }
72
73 static char *NoYes[] = { "No", "Yes" };
74         
75 static void send_tcr(int dest,t_coupl_rec *tcr)
76 {
77   nblocktx(dest,eoObsNR,tcr->ref_value);
78   blocktx(dest,tcr->nLJ);
79   nblocktx(dest,tcr->nLJ,tcr->tcLJ);
80   blocktx(dest,tcr->nBU);
81   nblocktx(dest,tcr->nBU,tcr->tcBU);
82   blocktx(dest,tcr->nQ);
83   nblocktx(dest,tcr->nQ,tcr->tcQ);
84 }
85
86 static void rec_tcr(int src,t_coupl_rec *tcr)
87 {
88   nblockrx(src,eoObsNR,tcr->ref_value);
89   
90   blockrx(src,tcr->nLJ);
91   snew(tcr->tcLJ,tcr->nLJ);
92   nblockrx(src,tcr->nLJ,tcr->tcLJ);
93   
94   blockrx(src,tcr->nBU);
95   snew(tcr->tcBU,tcr->nBU);
96   nblockrx(src,tcr->nBU,tcr->tcBU);
97   
98   blockrx(src,tcr->nQ);
99   snew(tcr->tcQ,tcr->nQ);
100   nblockrx(src,tcr->nQ,tcr->tcQ);
101 }
102
103 void comm_tcr(FILE *log,t_commrec *cr,t_coupl_rec **tcr)
104 {
105   t_coupl_rec shit;
106
107   if (MASTER(cr)) { 
108     send_tcr(cr->left,*tcr);
109     rec_tcr(cr->right,&shit);
110   }
111   else {
112     snew(*tcr,1);
113     rec_tcr(cr->right,*tcr);
114     send_tcr(cr->left,*tcr);
115   }
116
117
118 static void clear_lj(t_coupl_LJ *tc)
119 {
120   tc->at_i   = 0;
121   tc->at_j   = 0;
122   tc->eObs   = -1;
123   tc->bPrint = TRUE;
124   tc->c6     = 0.0;
125   tc->c12    = 0.0;
126   tc->xi_6   = 0.0;
127   tc->xi_12  = 0.0;
128 }
129
130 static void clear_bu(t_coupl_BU *tc)
131 {
132   tc->at_i   = 0;
133   tc->at_j   = 0;
134   tc->eObs   = -1;
135   tc->bPrint = TRUE;
136   tc->a      = 0.0;
137   tc->b      = 0.0;
138   tc->c      = 0.0;
139   tc->xi_a   = 0.0;
140   tc->xi_b   = 0.0;
141   tc->xi_c   = 0.0;
142 }
143
144 static void clear_q(t_coupl_Q *tc)
145 {
146   tc->at_i   = 0;
147   tc->eObs   = -1;
148   tc->bPrint = TRUE;
149   tc->Q      = 0.0;
150   tc->xi_Q   = 0.0;
151 }
152
153 void copy_ff(t_coupl_rec *tcr,t_forcerec *fr,t_mdatoms *md,t_idef *idef)
154 {
155   int        i,j,ati,atj,type;
156   t_coupl_LJ *tclj;
157   t_coupl_BU *tcbu;
158   t_coupl_Q  *tcq;
159   
160   /* Save values for printing */
161   for(i=0; (i<tcr->nLJ); i++) {
162     tclj = &(tcr->tcLJ[i]);
163     
164     ati  = tclj->at_i;
165     atj  = tclj->at_j;
166     if (atj == -1)
167       atj = ati;
168     tclj->c6  = C6(fr->nbfp,fr->ntype,ati,atj);
169     tclj->c12 = C12(fr->nbfp,fr->ntype,ati,atj);
170   }
171   
172   for(i=0; (i<tcr->nBU); i++) {
173     tcbu = &(tcr->tcBU[i]);
174     
175     ati  = tcbu->at_i;
176     atj  = tcbu->at_j;
177     if (atj == -1)
178       atj = ati;
179     tcbu->a = BHAMA(fr->nbfp,fr->ntype,ati,atj);
180     tcbu->b = BHAMB(fr->nbfp,fr->ntype,ati,atj);
181     tcbu->c = BHAMC(fr->nbfp,fr->ntype,ati,atj);
182   }
183   
184   for(i=0; (i<tcr->nQ); i++) {
185     tcq = &(tcr->tcQ[i]);
186     for(j=0; (j<md->nr); j++) {
187       if (md->typeA[j] == tcq->at_i) {
188         tcr->tcQ[i].Q = md->chargeA[j];
189         break;
190       }
191     }
192   }
193   for(i=0; (i<tcr->nIP); i++) {
194     /* Let's just copy the whole struct !*/
195     type = tcr->tIP[i].type;
196     tcr->tIP[i].iprint=idef->iparams[type];
197   }
198 }
199
200 void write_gct(char *fn,t_coupl_rec *tcr,t_idef *idef)
201 {
202   FILE *fp;
203   int  i,ftype;
204   
205   fp=ffopen(fn,"w");
206   nice_header(fp,fn);
207   fprintf(fp,"%-15s = %12g  ; Reference pressure for coupling\n",
208           eoNames[eoPres],tcr->ref_value[eoPres]);
209   fprintf(fp,"%-15s = %12g  ; Reference potential energy\n",
210           eoNames[eoEpot],tcr->ref_value[eoEpot]);
211   fprintf(fp,"%-15s = %12g  ; Reference distance\n",
212           eoNames[eoDist],tcr->ref_value[eoDist]);
213   fprintf(fp,"%-15s = %12g  ; Reference dipole\n",
214           eoNames[eoMu],tcr->ref_value[eoMu]);
215   fprintf(fp,"%-15s = %12g  ; Reference force\n",
216           eoNames[eoForce],tcr->ref_value[eoForce]);
217   fprintf(fp,"%-15s = %12g  ; Reference force in X dir\n",
218           eoNames[eoFx],tcr->ref_value[eoFx]);
219   fprintf(fp,"%-15s = %12g  ; Reference force in Y dir\n",
220           eoNames[eoFy],tcr->ref_value[eoFy]);
221   fprintf(fp,"%-15s = %12g  ; Reference force in Z dir\n",
222           eoNames[eoFz],tcr->ref_value[eoFz]);
223   fprintf(fp,"%-15s = %12g  ; Reference pres in X dir\n",
224           eoNames[eoPx],tcr->ref_value[eoPx]);
225   fprintf(fp,"%-15s = %12g  ; Reference pres in Y dir\n",
226           eoNames[eoPy],tcr->ref_value[eoPy]);
227   fprintf(fp,"%-15s = %12g  ; Reference pres in Z dir\n",
228           eoNames[eoPz],tcr->ref_value[eoPz]);
229   fprintf(fp,"%-15s = %12g  ; Polarizability used for the Epot correction\n",
230           eoNames[eoPolarizability],tcr->ref_value[eoPolarizability]);
231   fprintf(fp,"%-15s = %12g  ; Gas phase dipole moment used for Epot correction\n", 
232           eoNames[eoDipole],tcr->ref_value[eoDipole]);
233   fprintf(fp,"%-15s = %12d  ; Memory for coupling. Makes it converge faster.\n",
234           eoNames[eoMemory],tcr->nmemory);
235   fprintf(fp,"%-15s = %12s  ; Use intermolecular Epot only (LJ+Coul)\n",
236           eoNames[eoInter],yesno_names[tcr->bInter]);
237   fprintf(fp,"%-15s = %12s  ; Use virial iso pressure\n",
238           eoNames[eoUseVirial],yesno_names[tcr->bVirial]);
239   
240   fprintf(fp,"\n; Q-Coupling   %6s  %12s\n","type","xi");
241   for(i=0; (i<tcr->nQ); i++) {
242     fprintf(fp,"%-8s = %8s  %6d  %12g\n",
243             "Q",eoNames[tcr->tcQ[i].eObs],tcr->tcQ[i].at_i,tcr->tcQ[i].xi_Q);
244   }
245   
246   fprintf(fp,"\n; %8s %8s  %6s  %6s  %12s  %12s\n","Couple","To",
247           "i-type","j-type","xi-c6","xi-c12");
248   fprintf(fp,"; j-type == -1 means mixing rules will be applied!\n");
249   for(i=0; (i<tcr->nLJ); i++) {
250     fprintf(fp,"%-8s = %8s  %6d  %6d  %12g  %12g\n",
251             "LJ",eoNames[tcr->tcLJ[i].eObs],
252             tcr->tcLJ[i].at_i,tcr->tcLJ[i].at_j,
253             tcr->tcLJ[i].xi_6,tcr->tcLJ[i].xi_12);
254   }
255   
256   fprintf(fp,"\n; %8s %8s  %6s  %6s  %12s  %12s  %12s\n","Couple","To",
257           "i-type","j-type","xi-A","xi-B","xi-C");
258   fprintf(fp,"; j-type == -1 means mixing rules will be applied!\n");
259   for(i=0; (i<tcr->nBU); i++) {
260     fprintf(fp,"%-8s = %8s  %6d  %6d  %12g  %12g  %12g\n",
261             "BU",eoNames[tcr->tcBU[i].eObs],
262             tcr->tcBU[i].at_i,tcr->tcBU[i].at_j,
263             tcr->tcBU[i].xi_a,tcr->tcBU[i].xi_b,tcr->tcBU[i].xi_c);
264   }
265   
266   fprintf(fp,"\n; More Coupling\n");
267   for(i=0; (i<tcr->nIP); i++) {
268     ftype=idef->functype[tcr->tIP[i].type];
269     switch (ftype) {
270     case F_BONDS:
271       fprintf(fp,"%-15s = %-8s  %4d  %12g  %12g\n",
272               "Bonds",eoNames[tcr->tIP[i].eObs],tcr->tIP[i].type,
273               tcr->tIP[i].xi.harmonic.krA,
274               tcr->tIP[i].xi.harmonic.rA);
275       break;
276     default:
277       fprintf(stderr,"ftype %s not supported (yet)\n",
278               interaction_function[ftype].longname);
279     }
280   }
281   fclose(fp);
282 }
283
284 static bool add_lj(int *nLJ,t_coupl_LJ **tcLJ,char *s,bool bObsUsed[])
285 {
286   int       j,ati,atj,eo;
287   char      buf[256];
288   double    xi6,xi12;
289   
290   if (sscanf(s,"%s%d%d%lf%lf",buf,&ati,&atj,&xi6,&xi12) != 5) 
291     return TRUE;
292   if ((eo=Name2eo(buf)) == -1)
293     fatal_error(0,"Invalid observable for LJ coupling: %s",buf);
294   
295   for(j=0; (j<*nLJ); j++) {
296     if ((((*tcLJ)[j].at_i == ati) && ((*tcLJ)[j].at_j == atj)) &&
297         ((*tcLJ)[j].xi_6 || (*tcLJ)[j].xi_12) &&
298         ((*tcLJ)[j].eObs == eo))
299       break;
300   }
301   if (j == *nLJ) {
302     ++(*nLJ);
303     srenew((*tcLJ),*nLJ);
304   }
305   else
306     fprintf(stderr,"\n*** WARNING: overwriting entry for LJ coupling '%s'\n",s);
307   
308   clear_lj(&((*tcLJ)[j]));
309   if (((*tcLJ)[j].eObs = eo) == -1) {
310     fatal_error(0,"Invalid observable for LJ coupling: %s",buf);
311   }
312   (*tcLJ)[j].at_i   = ati;
313   (*tcLJ)[j].at_j   = atj;
314   (*tcLJ)[j].xi_6   = xi6;
315   (*tcLJ)[j].xi_12  = xi12;
316   bObsUsed[eo] = TRUE;
317   
318   return FALSE;
319 }
320
321 static bool add_bu(int *nBU,t_coupl_BU **tcBU,char *s,bool bObsUsed[])
322 {
323   int       j,ati,atj,eo;
324   char      buf[256];
325   double    xia,xib,xic;
326   
327   if (sscanf(s,"%s%d%d%lf%lf%lf",buf,&ati,&atj,&xia,&xib,&xic) != 6) 
328     return TRUE;
329   if ((eo=Name2eo(buf)) == -1)
330     fatal_error(0,"Invalid observable for BU coupling: %s",buf);
331   
332   for(j=0; (j<*nBU); j++) {
333     if ((((*tcBU)[j].at_i == ati) && ((*tcBU)[j].at_j == atj)) &&
334         ((*tcBU)[j].xi_a || (*tcBU)[j].xi_b || (*tcBU)[j].xi_c ) &&
335         ((*tcBU)[j].eObs == eo))
336       break;
337   }
338   if (j == *nBU) {
339     ++(*nBU);
340     srenew((*tcBU),*nBU);
341   }
342   else
343     fprintf(stderr,"\n*** WARNING: overwriting entry for BU coupling '%s'\n",s);
344   
345   clear_bu(&((*tcBU)[j]));
346   if (((*tcBU)[j].eObs = eo) == -1) {
347     fatal_error(0,"Invalid observable for BU coupling: %s",buf);
348   }
349   (*tcBU)[j].at_i   = ati;
350   (*tcBU)[j].at_j   = atj;
351   (*tcBU)[j].xi_a   = xia;
352   (*tcBU)[j].xi_b   = xib;
353   (*tcBU)[j].xi_c   = xic;
354   bObsUsed[eo] = TRUE;
355
356   return FALSE;
357 }
358
359 static bool add_ip(int *nIP,t_coupl_iparams **tIP,char *s,int ftype,bool bObsUsed[])
360 {
361   int    i,eo,type;
362   char   buf[256];
363   double kb,b0;
364   
365   switch (ftype) {
366   case F_BONDS:
367     /* Pick out the type */
368     if (sscanf(s,"%s%d",buf,&type) != 2)
369       return TRUE;
370     if ((eo=Name2eo(buf)) == -1)
371       fatal_error(0,"Invalid observable for IP coupling: %s",buf);
372       
373     /* Check whether this entry is there already */
374     for(i=0; (i<*nIP); i++) {
375       if ((*tIP)[i].type == type)
376         break;
377     }
378     if (i < *nIP) {
379       fprintf(stderr,"*** WARNING: overwriting entry for type %d\n",type);
380     }
381     else {
382       i=*nIP;
383       srenew((*tIP),i+1);
384       (*nIP)++;
385     }
386     if (sscanf(s,"%s%d%lf%lf",buf,&type,&kb,&b0) != 4)
387       return TRUE;
388     (*tIP)[i].type=type;
389     (*tIP)[i].eObs=eo;
390     (*tIP)[i].xi.harmonic.krA = kb;
391     (*tIP)[i].xi.harmonic.rA  = b0;
392     bObsUsed[eo] = TRUE;
393     break;
394   default:
395     fprintf(stderr,"ftype %s not supported (yet)\n",
396             interaction_function[ftype].longname);
397     return TRUE;
398   }
399   return FALSE;
400 }
401
402 static bool add_q(int *nQ,t_coupl_Q **tcQ,char *s,bool bObsUsed[])
403 {
404   int       j,ati,eo;
405   char      buf[256];
406   double    xiQ;
407   
408   if (sscanf(s,"%s%d%lf",buf,&ati,&xiQ) != 3) 
409     return TRUE;
410   
411   for(j=0; (j<*nQ); j++) {
412     if ((*tcQ)[j].at_i == ati)
413       break;
414   }
415   if (j == *nQ) {
416     ++(*nQ);
417     srenew((*tcQ),*nQ);
418   }
419   else
420     fprintf(stderr,"\n*** WARNING: overwriting entry for Q coupling '%s'\n",s);
421   
422   clear_q(&((*tcQ)[j]));
423   eo = (*tcQ)[j].eObs = Name2eo(buf);
424   if ((*tcQ)[j].eObs == -1) {
425     fatal_error(0,"Invalid observable for Q coupling: %s",buf);
426   }
427   (*tcQ)[j].at_i   = ati;
428   (*tcQ)[j].xi_Q  = xiQ;
429   bObsUsed[eo] = TRUE;
430   
431   return FALSE;
432 }
433
434 void read_gct(char *fn,t_coupl_rec *tcr)
435 {
436   t_inpfile *inp;
437   int       i,j,ninp,nQ,nLJ,nBU,nIP;
438   bool      bWrong;
439   
440   inp=read_inpfile(fn,&ninp);
441   for(i=0; (i<eoObsNR); i++) {
442     tcr->bObsUsed[i] = FALSE;
443     RTYPE (eoNames[i],  tcr->ref_value[i],      0.0);
444   }
445   ITYPE (eoNames[eoMemory],     tcr->nmemory,   1);
446   ETYPE (eoNames[eoInter],      tcr->bInter,    yesno_names);
447   ETYPE (eoNames[eoUseVirial],  tcr->bVirial,   yesno_names);
448   
449   tcr->tcLJ=NULL;
450   tcr->tcBU=NULL;
451   tcr->tcQ=NULL;
452   tcr->tIP=NULL;
453   nQ=nLJ=nBU=nIP=0;
454   
455   for(i=0; (i<ninp); i++) {
456     bWrong=FALSE;
457     if (strcasecmp(inp[i].name,"LJ") == 0) 
458       bWrong=add_lj(&nLJ,&(tcr->tcLJ),inp[i].value,tcr->bObsUsed);
459     else if (strcasecmp(inp[i].name,"BU") == 0) 
460       bWrong=add_bu(&nBU,&(tcr->tcBU),inp[i].value,tcr->bObsUsed);
461     else if (strcasecmp(inp[i].name,"Q") == 0) 
462       bWrong=add_q(&nQ,&(tcr->tcQ),inp[i].value,tcr->bObsUsed);
463     else if (strcasecmp(inp[i].name,"Bonds") == 0)
464       bWrong=add_ip(&nIP,&(tcr->tIP),inp[i].value,F_BONDS,tcr->bObsUsed);
465       
466     if (bWrong)
467       fprintf(stderr,"Wrong line in %s: '%s = %s'\n",
468               fn,inp[i].name,inp[i].value);
469     /*sfree(inp[i].name);
470       sfree(inp[i].value);*/
471   }
472   /* Check which ones have to be printed */
473   for(i=1; (i<nQ); i++)
474     for(j=0; (j<i); j++) {
475       if (tcr->tcQ[i].at_i == tcr->tcQ[j].at_i)
476         tcr->tcQ[j].bPrint=FALSE;
477     }
478   for(i=1; (i<nLJ); i++)
479     for(j=0; (j<i); j++) {
480       if (((tcr->tcLJ[i].at_i == tcr->tcLJ[j].at_i) &&
481            (tcr->tcLJ[i].at_j == tcr->tcLJ[j].at_j)) ||
482           ((tcr->tcLJ[i].at_i == tcr->tcLJ[j].at_j) &&
483            (tcr->tcLJ[i].at_j == tcr->tcLJ[j].at_i))) 
484         tcr->tcLJ[j].bPrint=FALSE;
485     }
486   
487   for(i=1; (i<nBU); i++)
488     for(j=0; (j<i); j++) {
489       if (((tcr->tcBU[i].at_i == tcr->tcBU[j].at_i) &&
490            (tcr->tcBU[i].at_j == tcr->tcBU[j].at_j)) ||
491           ((tcr->tcBU[i].at_i == tcr->tcBU[j].at_j) &&
492            (tcr->tcBU[i].at_j == tcr->tcBU[j].at_i))) 
493         tcr->tcBU[j].bPrint=FALSE;
494     }
495   
496   tcr->nQ  = nQ;
497   tcr->nLJ = nLJ;
498   tcr->nBU = nBU;
499   tcr->nIP = nIP;
500   
501   sfree(inp);
502 }
503