641642643644645646647648649650651
public HashMap ionicStr(DblMatrix pH) { int[] reps = new int[2]; reps[0] = pH.getN(); reps[1] = 1; DblMatrix val = DblMatrix.replicate(this.defaultValue,reps); HashMap out = new HashMap(); out.put("total",val); return(out); }
653654655656657658659660661662663
public HashMap ionicStr(DblMatrix pH,boolean partial) { int[] reps = new int[2]; reps[0] = pH.getN(); reps[1] = 1; DblMatrix val = DblMatrix.replicate(this.defaultValue,reps); HashMap out = new HashMap(); out.put("total",val); return(out);
666667668669670671672673674675676
public HashMap dCbdH(DblMatrix pH) { int[] reps = new int[2]; reps[0] = pH.getN(); reps[1] = 1; DblMatrix val = DblMatrix.replicate(this.defaultValue,reps); HashMap out = new HashMap(); out.put("total",val); return(out);
679680681682683684685686687688689
public HashMap dCbdH(DblMatrix pH,boolean partial) { int[] reps = new int[2]; reps[0] = pH.getN(); reps[1] = 1; DblMatrix val = DblMatrix.replicate(this.defaultValue,reps); HashMap out = new HashMap(); out.put("total",val); return(out);
692693694695696697698699700701702
public HashMap dCbdt(DblMatrix pH) { int[] reps = new int[2]; reps[0] = pH.getN(); reps[1] = 1; DblMatrix val = DblMatrix.replicate(this.defaultValue,reps); HashMap out = new HashMap(); out.put("total",val); return(out); }
704705706707708709710711712713714
public HashMap dCbdt(DblMatrix pH,boolean partial) { int[] reps = new int[2]; reps[0] = pH.getN(); reps[1] = 1; DblMatrix val = DblMatrix.replicate(this.defaultValue,reps); HashMap out = new HashMap(); out.put("total",val); return(out); }
716717718719720721722723724725726
public HashMap species(DblMatrix pH) { int[] reps = new int[2]; reps[0] = pH.getN(); reps[1] = 1; DblMatrix val = DblMatrix.replicate(this.defaultValue,reps); HashMap out = new HashMap(); out.put("total",val); return(out); }
93949596979899100101102103
{ showError("Only one selection allowed."); } else { dielectric = new DblMatrix(n); } if (okcancelListener != null) { okcancelListener.actionPerformed(e);
154155156157158159160161162163
public DblMatrix[] getpKaAdjCoef() { DblMatrix[] out = new DblMatrix[this.jt.getColumnCount()-1]; for (int j=0;j<out.length;j++) { out[j] = new DblMatrix(new Double((String)this.jt.getValueAt(0,j))); } return(out); }
167168169170171172173174175176177
{ DblMatrix[] out = new DblMatrix[this.jt.getColumnCount()-1]; for (int j=0;j<out.length;j++) { out[j] = new DblMatrix(new Double((String)this.jt.getValueAt(1,j))); } return(out);