@@ -749,7 +749,8 @@ function resetMenus(){
749
749
document . getElementById ( "noise_general" ) . value = 2.0 ;
750
750
document . getElementById ( "auto_time_check" ) . checked = true ;
751
751
document . getElementById ( "initial_time_general" ) . value = 0 ;
752
- document . getElementById ( "plot_points_general" ) . value = 3000 ;
752
+ document . getElementById ( "plot_points_general" ) . value = 6000 ;
753
+ document . getElementById ( "renderGraph_dots_check" ) . checked = false ;
753
754
754
755
//Column Properties
755
756
select_option ( 'Agilent SB-C18' , 'stationary_phase' ) ;
@@ -763,6 +764,7 @@ function resetMenus(){
763
764
document . getElementById ( "B_column" ) . value = 5.0 ;
764
765
document . getElementById ( "C_column" ) . value = 0.05 ;
765
766
767
+ document . getElementById ( "dataTable" ) . className = "" ;
766
768
767
769
//compoundList
768
770
displayTable ( ) ;
@@ -989,8 +991,9 @@ function tableID(x,y){
989
991
return 10 * ( y + 1 ) + x
990
992
}
991
993
992
- function renderGraph ( data ) {
994
+ function renderGraph ( data , renderGraphDots ) {
993
995
log ( "Running 'renderGraph(data)'..." ) ;
996
+ console . log ( "Running 'renderGraph(data)'..." )
994
997
var masterlist = [ ] ;
995
998
//console.log(data);
996
999
for ( i = 0 ; i < data . length ; i ++ ) {
@@ -1034,7 +1037,7 @@ function renderGraph(data) {
1034
1037
new_data [ 0 ] = aggregateSignal ( data ) ;
1035
1038
1036
1039
var domainData = aggregateSignal ( data ) ;
1037
- domainData [ 0 ] . Ct = 0 ;
1040
+ // domainData[0].Ct = 0;
1038
1041
1039
1042
createDataExportFile_Full ( new_data [ 0 ] ) ;
1040
1043
@@ -1084,8 +1087,12 @@ function renderGraph(data) {
1084
1087
.text("I say a lot of things");*/
1085
1088
1086
1089
for ( i = 0 ; i < new_data . length ; i ++ ) {
1090
+ //var line = d3.line()
1091
+ // .curve(d3.curveBasis)
1092
+ // .x(function(d) { return x(d.t); })
1093
+ // .y(function(d) { return y(d.Ct); });
1094
+
1087
1095
var line = d3 . line ( )
1088
- . curve ( d3 . curveBasis )
1089
1096
. x ( function ( d ) { return x ( d . t ) ; } )
1090
1097
. y ( function ( d ) { return y ( d . Ct ) ; } ) ;
1091
1098
@@ -1098,6 +1105,57 @@ function renderGraph(data) {
1098
1105
. attr ( "stroke-linecap" , "round" )
1099
1106
. attr ( "stroke-width" , 1.5 )
1100
1107
. attr ( "d" , line ) ;
1108
+
1109
+ if ( renderGraphDots ) {
1110
+ g . append ( "g" )
1111
+ . selectAll ( "dot" )
1112
+ . data ( new_data [ i ] )
1113
+ . enter ( )
1114
+ . append ( "circle" )
1115
+ . attr ( "cx" , function ( d ) { return x ( d . t ) } )
1116
+ . attr ( "cy" , function ( d ) { return y ( d . Ct ) ; } )
1117
+ . attr ( "r" , 1.5 )
1118
+ . attr ( "fill" , ( i == 0 ? "#007aa2" : "#ff0000" ) ) ;
1119
+ }
1120
+ }
1121
+ }
1122
+
1123
+ function renderGraph_new ( data , renderGraphDots ) {
1124
+ console . log ( "Running 'renderGraph_new(data, renderGraphDots)'..." )
1125
+ var masterlist = [ ] ;
1126
+ //console.log(data);
1127
+ for ( i = 0 ; i < data . length ; i ++ ) {
1128
+ masterlist = masterlist . concat ( data [ i ] ) ;
1129
+ }
1130
+ //console.log(masterlist);
1131
+
1132
+ d3 . select ( "#graph_svg" ) . remove ( ) ; //grab the '#graph_svg' tag and remove
1133
+
1134
+ document . getElementById ( "graph" ) . innerHTML = "<svg id='graph_svg' width='1400' height='500'></svg>" ; //Create a new SVG with a width of 1400 and height of 500
1135
+
1136
+ var svg = d3 . select ( "#graph_svg" ) , //grab the '#graph_svg' tag and bind it to the variable svg
1137
+ margin = { top : 20 , right : 20 , bottom : 30 , left : 50 } , //create a JSON containing the margins
1138
+ width = 700 - margin . left - margin . right , //create a variable containing the usable width
1139
+ height = 500 - margin . top - margin . bottom , //create a variable containing the usable height
1140
+ g = svg . append ( "g" ) . attr ( "transform" , "translate(" + margin . left + "," + margin . top + ")" ) ; //grab the '#graph_svg' tag, append a 'g' tag, assign attribute 'transform'; move the contents of the grouping
1141
+
1142
+ var x = d3 . scaleLinear ( )
1143
+ . rangeRound ( [ 0 , width ] ) ; //create a variable 'x' to set the scale’s range to the specified two-element array of numbers while also enabling rounding. equivalent to: .range(range).round(true);
1144
+
1145
+ var y = d3 . scaleLinear ( )
1146
+ . rangeRound ( [ height , 0 ] ) ; //create a variable 'y' to set the scale’s range to the specified two-element array of numbers while also enabling rounding. equivalent to: .range(range).round(true);
1147
+
1148
+ //var megan = d3.scaleLinear()
1149
+ // .rangeRound([height, 0]);
1150
+
1151
+ // Determines the highest retention time
1152
+ tR_max = 0 ;
1153
+ for ( i = 0 ; i < data . length ; i ++ ) {
1154
+ tR = document . getElementById ( tableID ( 4 , i ) ) . innerHTML ;
1155
+ tR = 5 ;
1156
+ if ( tR_max < tR ) {
1157
+ tR_max = tR ;
1158
+ }
1101
1159
}
1102
1160
}
1103
1161
@@ -1169,11 +1227,19 @@ function aggregateSignal(data){
1169
1227
var signalOffset = parseFloat ( document . getElementById ( "signal_offset_general" ) . value ) ;
1170
1228
var noise = parseFloat ( document . getElementById ( "noise_general" ) . value ) ;
1171
1229
1172
- step = .01 ;
1230
+ //step = .01;
1231
+ var step = parseFloat ( ( ( 60 ) / parseFloat ( document . getElementById ( "plot_points_general" ) . value ) ) . toFixed ( 3 ) ) ;
1232
+
1233
+ document . getElementById ( "plot_points_general_detectorFrequency" ) . innerHTML = ( 1 / ( ( 60 / document . getElementById ( "plot_points_general" ) . value ) * 60 ) ) . toFixed ( 3 ) + " Hz" ;
1234
+
1235
+
1236
+ //var timeStart = 0;
1237
+ var timeStart = parseFloat ( ( parseFloat ( document . getElementById ( "initial_time_general" ) . value ) / ( 60 ) ) . toFixed ( 3 ) ) ;
1173
1238
aggregate_signal = [ ] ;
1174
1239
1175
- for ( j = 0 ; j < max_t ; j += step ) {
1176
- index = Math . round ( j / step ) ;
1240
+ var index = 0 ;
1241
+ for ( j = timeStart ; j < max_t ; j += step ) { //j = 0; j < max_t ; j += step
1242
+ //index = Math.round(j/step);
1177
1243
x_targ = j ;
1178
1244
signal = 0 ;
1179
1245
for ( k = 0 ; k < data . length ; k ++ ) {
@@ -1188,6 +1254,8 @@ function aggregateSignal(data){
1188
1254
"Ct" : signal + signalOffset + noiseValue ,
1189
1255
"c" : "steelblue"
1190
1256
}
1257
+
1258
+ index += 1 ;
1191
1259
}
1192
1260
1193
1261
//aggregate_signal[0].Ct = 0;
@@ -1592,7 +1660,7 @@ function isocraticElutionMode(t0, T, phi, N, tau, Vinj, F, solvent, compoundList
1592
1660
1593
1661
var W = parseFloat ( ( ( Vinj / 1000000 ) * ( M [ i ] ) ) . toFixed ( 15 ) ) ;
1594
1662
//W *= 1000000;
1595
- var t = 0 ; // (parseFloat(document.getElementById("initial_time_general").value))/60;
1663
+ var t = ( parseFloat ( document . getElementById ( "initial_time_general" ) . value ) ) / 60 ;
1596
1664
var j = 0 ;
1597
1665
var check = true ;
1598
1666
var loops = 0 ;
@@ -2112,7 +2180,7 @@ function optimize(){
2112
2180
2113
2181
//consolidate calculations
2114
2182
function calculatePeaks ( ) {
2115
-
2183
+ if ( document . getElementById ( "plot_points_general" ) . value < 100 || document . getElementById ( "plot_points_general" ) . value == "" ) { document . getElementById ( "plot_points_general" ) . value = 100 ; }
2116
2184
//Find Elution Mode
2117
2185
var mode ;
2118
2186
if ( document . getElementById ( "isocratic_radio" ) . checked ) {
@@ -2146,6 +2214,11 @@ function calculatePeaks() {
2146
2214
if ( document . getElementById ( "flow_rate_chrom" ) . value > 8 ) { document . getElementById ( "flow_rate_chrom" ) . value = 8 ; }
2147
2215
if ( document . getElementById ( "flow_rate_chrom" ) . value < 0.05 ) { document . getElementById ( "flow_rate_chrom" ) . value = 0.05 ; }
2148
2216
2217
+ if ( document . getElementById ( "length_column" ) . value < 1 ) { document . getElementById ( "length_column" ) . value = 1 ; }
2218
+
2219
+ if ( document . getElementById ( "inner_diameter_column" ) . value < 1 ) { document . getElementById ( "inner_diameter_column" ) . value = 1 ; }
2220
+
2221
+ if ( document . getElementById ( "injection_volume_chrom" ) . value < 0.1 ) { document . getElementById ( "injection_volume_chrom" ) . value = 0.1 ; }
2149
2222
//============================================================================================================================================
2150
2223
//Collect inputs from the user interface
2151
2224
@@ -2289,8 +2362,17 @@ function calculatePeaks() {
2289
2362
2290
2363
//============================================================================================================================================
2291
2364
//Render the graph and run final user interface updates
2292
-
2293
- renderGraph ( data ) ;
2365
+
2366
+ var renderGraphDots = document . getElementById ( "renderGraph_dots_check" ) . checked ;
2367
+ renderGraph ( data , renderGraphDots ) ;
2368
+ //var useNewRenderGraphFunction = document.getElementById("renderGraph_newFunction_check").checked;
2369
+
2370
+ /*if(useNewRenderGraphFunction){
2371
+ renderGraph_new(data, renderGraphDots);
2372
+ } else {
2373
+ renderGraph(data, renderGraphDots);
2374
+ }*/
2375
+
2294
2376
2295
2377
document . getElementById ( 'GenRandExpBtn' ) . disabled = false ;
2296
2378
0 commit comments