blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 6 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 87 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 15 values | visit_date timestamp[us]date 2016-08-04 09:00:04 2023-09-05 17:18:33 | revision_date timestamp[us]date 1998-12-11 00:15:10 2023-09-02 05:42:40 | committer_date timestamp[us]date 2005-04-26 09:58:02 2023-09-02 05:42:40 | github_id int64 436k 586M ⌀ | star_events_count int64 0 12.3k | fork_events_count int64 0 6.3k | gha_license_id stringclasses 7 values | gha_event_created_at timestamp[us]date 2012-11-16 11:45:07 2023-09-14 20:45:37 ⌀ | gha_created_at timestamp[us]date 2010-03-22 23:34:58 2023-01-07 03:47:44 ⌀ | gha_language stringclasses 36 values | src_encoding stringclasses 17 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 15 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
6d727b15d5de172d7d9fe9bd840936b4366ec272 | 3a5107b829276ce4530b98283206e13ef2bfff7c | /Solução de EDO_Método_03_Runge_Kutta.sce | 16172e177ed536a2345a78b2d2e0d558e694b2e2 | [] | no_license | daniel1sender/T-picos-de-F-sica-Computacional | 902932aaa0616171ecd7e21650cb41ed4a29ef72 | 755a3b085f2190d579fcac90d562a7668f4f60d1 | refs/heads/main | 2023-04-23T04:15:27.660423 | 2021-05-10T15:57:41 | 2021-05-10T15:57:41 | 339,199,113 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 392 | sce | Solução de EDO_Método_03_Runge_Kutta.sce | //método runge kuta
//setar as variáveis
h=0.01;
x=0:h:5;
y(1)=1;
//criar uma função f com entrada x,y
function z=f(x,y)
z=exp(x)
endfunction
//equação de recorrência
for i=1:length(x)-1
y(i+1)=y(i)+(h/2)*(f(x(i),y(i))+f(x(i)+h,y(i)+h*f(x(i),y(i))))
end
xset("window",1);//atribui a janela do gráfico o nome 1
clf(1);//vai limpar o gráfco quando mudar o código
plot (x,y)
|
2061fcd04ad000638051035a5b49cdfbed6be42f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2333/CH2/EX2.8/8.sce | 65372c28855cfb25630f56a33238bbcd69686936 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 478 | sce | 8.sce | clc
// Given that
lambda1 = 7000 // wavelength of first source in angstrom
lambda2 = 5000 // wavelength of second source in angstrom
n = 10 // Order of bright fringe for first source
// Sample Problem 8 on page no. 96
printf("\n # PROBLEM 8 # \n")
printf("\n Standard formula used \n x = D*n*lambda/d \n")
x = n*lambda1*1e-10 // Path difference in m
m = x/(lambda2*1e-10) // Order of bright fringe for second source
printf("\n Observed order will be %d.",m)
|
6fcfe77dd16fc0f0f27febbef7354fbb5fd15b24 | 1d7b0d2d2e1b23faa4bf321453d437f21afd5fe5 | /lab 6 - Sampling/scilab6_q2_sampling.sce | 25b33a1c34a7247bf1358ec0d1f6c88adb333355 | [] | no_license | aaryashah11/60002190003_SciLab | 2847a459a8a90ef07f4f17d8f18bb1be39a6c574 | 9ca078e5a8790fd0b1dea8320687e68c976a1efc | refs/heads/main | 2023-01-19T05:53:02.417751 | 2020-11-25T07:55:15 | 2020-11-25T07:55:15 | 315,696,665 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 450 | sce | scilab6_q2_sampling.sce | //question 2:
clc ;
n=0:1:25;
fs=50;
T=1/fs;
t=n*T;
x1= cos(2* %pi *t*5) ;
plot2d3(t ,x1) ;
figure;
x2= cos(2* %pi *t*45) ;
plot2d3(t ,x2) ;
figure;
x3= cos(2* %pi *t*55) ;
plot2d3(t ,x3) ;
figure;
//Case 1: 2fm = 10 ; fs=50 Hz satisfies
//Case2 : 2fm= 90 and fs=50 Hz does not satisfy [folding effect coz its MULTIPLE of 5]
//Case3: 2fm= 110 and fs=50 Hz does not satisfy [folding effect coz its multiple of 5] |
622cf16f84103d38d13b073d7d37c859b586e7c8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2240/CH4/EX3.10/EX3_10.sce | 0be260270b3e89d905ef6d742de5c122ee52a8dd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 360 | sce | EX3_10.sce | // Grob's Basic Electronics 11e
// Chapter No. 03
// Example No. 3_10
clear; clc;
// Asuming that the cost of electricity is 6 cent per kWh, how much will it cost to light a 100-W lightbulb for 30 days?
h = 24*30; // Total hours = 24 hrs * 30 days
kWh = 0.1*h; // 100W=0.1kW
Cost = kWh*0.06; // 6 cent = $0.06
disp (Cost,'Cost in $')
|
a8ce4f49fd130b15025955568fe48e40ce056639 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3831/CH13/EX13.1/Ex13_1.sce | 885776754cb8426d58365ab262db1da4bba6aeb5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 442 | sce | Ex13_1.sce | // Example 13_1
clc;funcprot(0);
// Given data
d_in=10;// Diameter of piston in inch
d_m=0.254;// Diameter of piston in m
L_in=38.0;// Stroke in inch
L_m=0.965;// Stroke in m
mg=291900;// lbf
h=10.0;// ft
m=84.0;// lbm
// Calculation
Duty=mg*h;// ft.lb
n_T=(Duty/(8.5*10^8))*100;// The thermal efficiency of this engine in %
printf("\nThe duty=%7.0f ft.lbf \nThe thermal efficiency of this engine=%0.3f percentage",Duty,n_T);
|
6ff6e313cebdbada8a662c2fb3ebbebfcea3b5df | 449d555969bfd7befe906877abab098c6e63a0e8 | /401/CH12/EX12.10/Example12_10.sce | 75c2857553dd0089f798f29dbac02efa24356c4b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 804 | sce | Example12_10.sce | //Example 12.10
//Program to estimate ratio of SNR of the coaxial system to the SNR
//of the fiber system
clear;
clc ;
close ;
//Given data
V=5; //volts - TRANSMITTER PEAK OUTPUT VOLTAGE
Zo=100; //ohms - CABLE IMPEDANCE
T=290; //Kelvin - OPERATING TEMPERATURE
lambda=0.85*10^(-6); //metre - WAVELENGTH
K=1.38*10^(-23); //J/K - BOLTZMANN's CONSTANT
n=0.7; //(*100) percent - QUANTUM EFFICIENCY
Pi=1*10^(-3); //Watts - OPTICAL POWER
h=6.626*10^(-34); //(m^2)Kg/s - PLANK's CONSTANT
c=2.998*10^8; //m/s - SPEED OF LIGHT
//Ratio SNR(coax)/SNR(fiber)
Ratio=V^2*h*c/(2*K*T*Zo*n*Pi*lambda);
//Displaying the Result in Command Window
printf("\n\n\t SNR(coax)/SNR(fiber) = %d dB.",10*log10(Ratio)); |
fcacba25ab8f3827d8e181fd911e4b84a0909b80 | 4bbc2bd7e905b75d38d36d8eefdf3e34ba805727 | /ee/contrib/MSVC2008_Patch/findmsvccompiler.sci | 0eb20ce8ec03c580739a37200d018bef0213db99 | [] | no_license | mannychang/erika2_Scicos-FLEX | 397be88001bdef59c0515652a365dbd645d60240 | 12bb5aa162fa6b6fd6601e0dacc972d7b5f508ba | refs/heads/master | 2021-02-08T17:01:20.857172 | 2012-07-10T12:18:28 | 2012-07-10T12:18:28 | 244,174,890 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,958 | sci | findmsvccompiler.sci | //-----------------------------------------------------------------------------
// Allan CORNET
// INRIA 2005
//-----------------------------------------------------------------------------
function MSCompiler=findmsvccompiler()
MSCompiler='unknown'; // unknown
if MSDOS then
ierr=-1;
ierr=execstr("MSVS80Pro=winqueryreg(''HKEY_LOCAL_MACHINE'',''Software\Microsoft\VisualStudio\8.0\Setup\VS\Pro'',''ProductDir'');","errcatch");
if (ierr == 0) then
MSCompiler='msvc80pro'; // Microsoft Visual 2005 Studio Professional
return;
else
lasterror(%T); // The error message is cleared
end
ierr=execstr("MSVS80std=winqueryreg(''HKEY_LOCAL_MACHINE'',''Software\Microsoft\VisualStudio\8.0\Setup\VS\Std'',''ProductDir'');","errcatch");
if (ierr == 0) then
MSCompiler='msvc80std'; // Microsoft Visual 2005 Studio Standard
return;
else
lasterror(%T); // The error message is cleared
end
ierr=execstr("MSVS71=winqueryreg(''HKEY_LOCAL_MACHINE'',''SOFTWARE\Microsoft\VisualStudio\7.1\Setup\VC'',''ProductDir'');","errcatch");
if (ierr == 0) then
MSCompiler='msvc71'; // Microsoft Visual Studio .NET 2003
return;
else
lasterror(%T); // The error message is cleared
end
ierr=execstr("MSVS70=winqueryreg(''HKEY_LOCAL_MACHINE'',''SOFTWARE\Microsoft\VisualStudio\7.0\Setup\VC'',''ProductDir'');","errcatch");
if (ierr == 0) then
MSCompiler='msvc70'; // Microsoft Visual Studio .NET 2002
return;
else
lasterror(%T); // The error message is cleared
end
ierr=execstr("MSVS80EXPRESS=winqueryreg(''HKEY_LOCAL_MACHINE'',''Software\Microsoft\VCExpress\8.0\Setup\VS'',''ProductDir'');","errcatch");
if (ierr == 0) then
ierr1=execstr("W2003R2SDK=winqueryreg(''HKEY_LOCAL_MACHINE'',''Software\Microsoft\MicrosoftSDK\InstalledSDKs\D2FF9F89-8AA2-4373-8A31-C838BF4DBBE1'',''Install Dir'');","errcatch");
ierr2=execstr("W2003SDK=winqueryreg(''HKEY_LOCAL_MACHINE'',''Software\Microsoft\MicrosoftSDK\InstalledSDKs\8F9E5EF3-A9A5-491B-A889-C58EFFECE8B3'',''Install Dir'');","errcatch");
ierr3=execstr("VISTASDK=winqueryreg(''HKEY_LOCAL_MACHINE'',''Software\Microsoft\Microsoft SDKs\Windows'',''CurrentInstallFolder'');","errcatch");
if ( (ierr1 == 0) | (ierr2 == 0) | (ierr3 == 0) ) then
MSCompiler='msvc80express'; // Microsoft Visual C++ Express 8.0
lasterror(%T); // The error message is cleared
return;
else
printf('\nWarning : Microsoft Visual C++ 2005 Express Edition has been detected,\nbut not Microsoft Platform SDK for Windows Server 2003 R2 or more.\nPlease install this SDK if you want to use dynamic link with scilab.\n');
lasterror(%T); // The error message is cleared
end
else
lasterror(%T); // The error message is cleared
end
ierr=execstr("MSVS90EXPRESS=winqueryreg(''HKEY_LOCAL_MACHINE'',''Software\Microsoft\VCExpress\9.0\Setup\VS'',''ProductDir'');","errcatch");
if (ierr == 0) then
ierr1=execstr("W2003R2SDK=winqueryreg(''HKEY_LOCAL_MACHINE'',''Software\Microsoft\MicrosoftSDK\InstalledSDKs\D2FF9F89-8AA2-4373-8A31-C838BF4DBBE1'',''Install Dir'');","errcatch");
ierr2=execstr("W2003SDK=winqueryreg(''HKEY_LOCAL_MACHINE'',''Software\Microsoft\MicrosoftSDK\InstalledSDKs\8F9E5EF3-A9A5-491B-A889-C58EFFECE8B3'',''Install Dir'');","errcatch");
ierr3=execstr("VISTASDK=winqueryreg(''HKEY_LOCAL_MACHINE'',''Software\Microsoft\Microsoft SDKs\Windows'',''CurrentInstallFolder'');","errcatch");
if ( (ierr1 == 0) | (ierr2 == 0) | (ierr3 == 0) ) then
MSCompiler='msvc90express'; // Microsoft Visual C++ Express 9.0
lasterror(%T); // The error message is cleared
return;
else
printf('\nWarning : Microsoft Visual C++ 2008 Express Edition has been detected,\nbut not Microsoft Platform SDK for Windows Server 2003 R2 or more.\nPlease install this SDK if you want to use dynamic link with scilab.\n');
lasterror(%T); // The error message is cleared
end
else
lasterror(%T); // The error message is cleared
end
ierr=execstr("MSVS60=winqueryreg(''HKEY_LOCAL_MACHINE'',''SOFTWARE\Microsoft\DevStudio\6.0\Products\Microsoft Visual C++'',''ProductDir'');","errcatch");
if (ierr == 0) then
MSCompiler='msvc60'; // Microsoft Visual Studio 6
return;
else
lasterror(%T); // The error message is cleared
end
ierr=execstr("MSVS50=winqueryreg(''HKEY_LOCAL_MACHINE'',''SOFTWARE\Microsoft\DevStudio\5.0\Directories'',''ProductDir'');","errcatch");
if (ierr == 0) then
MSCompiler='msvc50'; // Microsoft Visual Studio 5
return;
else
lasterror(%T); // The error message is cleared
end
else // MSDOS
MSCompiler='unknown'; // unknown
end
endfunction
//-----------------------------------------------------------------------------
|
357b9f1c6f8c32f2bdbd9a6e34404eda733e9699 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1754/CH1/EX1.13/Exa1_13.sce | 823ee865026977750e622293b1d8babaa307da77 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 316 | sce | Exa1_13.sce | //Exa 1.13
clc;
clear;
close;
//Given data
format('v',6);
R=0.90;//in A/W
Pop=1;//in mW
//Part (i)
IP=R*Pop;//in mA
disp(IP,"Power of incident light 1mW, Photocurrent in mA is :");
//Part (ii)
disp("Here IP is not proportional to Pop(for Pop>1.5mW)");
disp("Hence Photourrent can not be calculated.");
|
632bfdd46e5e3abe4e3e82ca4505946439861650 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.0/macros/robust/lmitool.sci | fc8257cc22a5cd69d997881554e06a0d9e7b03b4 | [
"MIT",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 19,114 | sci | lmitool.sci | function [solver]=lmitool(lmi_eval,vstruc,vdim)
// LMITOOL: a tool for solving LMI problems.
// input: a macro which defines the LMI's
// ouput: a macro solver which solves your problem
[LHS,RHS]=argn(0);
lmi_driver='nemirov'
if RHS==0 then
x_message('Welcome to LMITOOL, a help in solving LMI problems...')
Problems=['1: feasability problem';...
'2: (generalized) eigenvalue minimization problem']
pbtype=x_choose(Problems,'Click below to select the problem')
select pbtype
case 0
solver=[];return;
case 1
pbtype='f';
case 2
pbtype='e';
end
codes=['1: A. Nemirovski''s code';
'2: B. Lecinq''s code (not yet implemented)';
'3: L. El Ghaoui''s code (to be implemented)'];
// driv=x_choose(codes,'Select your LMI solver');
driv=0;
select driv
case 0
solver=[];lmi_eval=[];lmi_driver='nemirov';
case 1
lmi_driver= 'nemirov'
case 2
lmi_driver= 'lmi_driver'
case 3
lmi_driver= 'lmi_driver'
end
end
if RHS==0|RHS==1 then
choice=x_choose(['On-line definition?';'Read on file?'],...
'Definition of the function lmi_eval')
select choice
case 0
return;
case 1
lmi_eval=def_lmi(pbtype);
case 2
pathname=unix_g('pwd');
path=x_dialog('Edit Filename of the LMI',...
pathname+'/lmi_ex0.sci');
getf(path);lg=length(path);k=0;
// path=/directory/lmi_ex0.sci ==> lmi_func=lmi_ex
while %T
k=k+1;
if part(path,lg-k)=='/' then break;end
end
pathend=part(path,lg-k+1:lg-4);
lmi_func=pathend;lmi_eval=evstr(lmi_func);
end
end
// Now lmi_eval is defined
ww=macrovar(lmi_eval);
vlist=strcat(ww(1),',');
inputs=strcat(ww(3),',');
[out,inp,txt]=string(lmi_eval);
vlist=strcat(inp,',');
outputs=strcat(out,',');
// Feasability problem: LHS of lmi_eval=1
// Eigenvalue problem: LHS of lmi_eval=2
nw=length(outputs);
index_commas=[];
for k=1:nw
if part(outputs,k)==',' then index_commas=[index_commas,k];end
end
nbout=length(index_commas)+1;
select nbout
case 1
pbtype='f'
case 2
pbtype='e'
else
error('lmi_eval must have 1 or 2 output parameters!')
end
// Structure and dimension of variables: if not defined
// analyze lmi_eval
if RHS=0|RHS=1|RHS==2
[vstruc,vdim]=lmi_ana(lmi_eval);
end
// Calculation of the solver function
select pbtype
case 'f'
solver=def_feas(lmi_driver,lmi_eval,vstruc,vdim)
case 'e'
solver=def_eig(lmi_driver,lmi_eval,vstruc,vdim)
else
error('Undefined problem?')
end
function [lmi_eval]=def_lmi(pbtype)
// Examples of valid LMI's
select pbtype
case 'f'
comments=[ 'Defining lmi_eval: lmi evaluation function';
'lmi_eval is used for solving a feasibility problem';
'Find X1,X2,... such that:'
' Flmi1(X1,X2,..) > 0 ';
' Flmi2(X1,X2,..) > 0 ';
' .... ';
'The function lmi_eval(X1,X2,...) should evaluate';
'Flmi1, Flmi2 as a function of X1,X2,...';
'If several LMI''s are to be solved put Flmi1,Flmi2,... in a list';
'Other parameters do not need to be defined';
'Here is an example:'
'Find Q and Y such that:';
'Flmi1=-(A*Q+Q*A''+B*Y+Y''*B'') > 0';
'and';
'Flmi2=[mu2*I Y;Y'' Q] > 0';
'Q,Y are the (unknown) LMI variables (input parameters of lmi_eval)';
'outputs:';
'Flmi=list(Flmi1,Flmi2)';
'Type in your LMI(s) by editing the example text below';
'Note that lmi_eval must have one output paramater';]
txt=['function [Flmi]= lmi_eval(Q,Y)';
'[n,n]=size(A);';
'I=eye(n,n);';
'Flmi1=-(A*Q+Q*A''+B*Y+Y''*B'');';
'Flmi2=[mu2*I Y;Y'' Q];';
'Flmi=list(Flmi1,Flmi2);'];
case 'e'
comments=['Defining lmi_eval used for solving an eigenvalue problem:';
' Find X1,X2,... which ';
' minimize t such that ';
' Almi1(X1,X2,..) > 0 ';
' Almi2(X1,X2,..) > 0 ';
' .... ';
' t* Almi1(X1,X2,..) > Blmi1(X1,X2,..) ';
' t* Almi2(X1,X2,..) > Blmi2(X1,X2,..) ';
' .... ';
'Function lmi_eval must be as follows:';
'[Almi,Blmi]=lmi_eval(X1,X2,...)';
'The function lmi_eval(X1,X2,...) should evaluate';
'Almi1, Almi2 ,..., Blmi1, Blmi2,... as a function of X1,X2,...';
'If several LMI''s are to be solved put Almi1,Almi2,... in a list';
'Other parameters do not need to be defined';
'Here is an example:'
'Minimize t such that P>0 exists such that :';
'[-(A''*P+P*A+C''*C) P*B; '
' B''*P t*eye] > 0';
'P is the (unknown) LMI variable (input parameter of lmi_eval)';
'Note that lmi_eval must have two output paramaters'];
]
txt=['function [Almi,Blmi]=lmi_eval(P)';
'eps=0.00001';
'Almi=[zeros(A)+eps*eye zeros(A*B); zeros(B''*A) eye(B''*B)]';
'Blmi=[A''*P+P*A+C''*C -P*B;-B''*P zeros(B''*B)]'];
end
txt=x_dialog(comments,txt);
header=txt(1,:);[lng,un]=size(txt);
deff(part(header,10:length(header)),txt(2:lng,:));
function [vstruc,vdim]=lmi_ana(lmi_eval)
ww=macrovar(lmi_eval);
vlist=strcat(ww(1),',');
inputs=strcat(ww(3),',');
[out,inp,txt]=string(lmi_eval);
vlist=strcat(inp,',');
x_message('Analyzing the input parameters of lmi_eval ');
nv=length(vlist)
index_commas=[]
for k=1:nv
if part(vlist,k)==',' then index_commas=[index_commas,k],end
end
vnum = length(index_commas)+1;
index_commas = [0 index_commas length(vlist)+1];
vstruc=[];vdim=[];
Selection='Select structure of variable ';
Choices=['full, symmetric matrix';
'full, symmetric matrix with zero trace';
'full, rectangular matrix';
'diagonal matrix';
'scalar matrix'];
for i = 1:vnum,
vname = part(vlist,index_commas(i)+1:index_commas(i+1)-1);
vstruci=x_choose(Choices,Selection+vname);
vstruc=[vstruc,vstruci]
// get dimension of each variable
[ok,vdimi] = getvalue(['Enter dimension of variable '+vname;
'(any function of '+inputs+')'],...
['[#row #col]'],list('str',1),'size('+vname+')')
vdim=[vdim,vdimi];
end
function [solver]=def_feas(lmi_driver,lmi_eval,vstruc,vdim)
// get number of variables
ww=macrovar(lmi_eval);
vlist=strcat(ww(1),',');
inputs=strcat(ww(3),',');
if type(lmi_eval)==13 then
error('lmi_eval function must not be compiled!');
return
end
[out,inp,txt]=string(lmi_eval);
vlist=strcat(inp,',');
nv=length(vlist)
index_commas=[]
for k=1:nv
if part(vlist,k)==',' then index_commas=[index_commas,k],end
end
vnum = length(index_commas)+1;
com='/'+'/'
index_commas = [0 index_commas length(vlist)+1];
txt1=[];
for i = 1:vnum,
vname = part(vlist,index_commas(i)+1:index_commas(i+1)-1);
vstruci=vstruc(i);
txt1 = [txt1;
'struc'+vname+'='+string(vstruci)]
// get dimension of each variable
vdimi = vdim(i);
txt1 = [txt1;
'dim'+vname+'=['+vdimi+']'];
end
txt2=['nx=0';];
for i = 1:vnum,
vname = part(vlist,index_commas(i)+1:index_commas(i+1)-1);
vstrucname = 'struc'+vname;
vdimname = 'dim'+vname;
txt2 = [txt2;'['+vname+'0'+',nvar'+vname+']'+...
'=nbasis('+vdimname+','+vstrucname+',0)';
vname+'='+vname+'0';
'nx=nx+'+'nvar'+vname];
end
txt2=[txt2;
'Almi0=lmi_eval('+vlist+');';
'mstr=mstruc(Almi0);';
'bc=mcompress(Almi0)']
txt3=['Ac=[]';];
for i =1:vnum,
vname = part(vlist,index_commas(i)+1:index_commas(i+1)-1);
txt3 = [txt3;
'for i=1:nvar'+vname;
' '+vname+'=nbasis(dim'+vname+',struc'+vname+','+'i'+')';
' '+'Almi=lmi_eval('+vlist+');';
' '+'Ac=[Ac,mcompress(msub(Almi,Almi0))]';
'end;'
' '+vname+'='+vname+'0';];
end
txt4=['Qc=0*Ac;pc=0*bc';'tmin=1;tmax=1';
'params=[-1,20,1.d-6,1.d-6,1.d-6,5,5];'
'[xopt,topt,info]='+lmi_driver+...
'(Ac,bc,Qc,pc,mstr,tmin,list(tmax,zeros(nx,1)),params)';
'if info(1)<0 then warning(''LMI solver fails'');xopt=[];return;end';
'Ac=[];Qc=[];'];
// call LMI solver, depending on problem type
txt5 = ['k=0;';]
for i = 1:vnum,
vname = part(vlist,index_commas(i)+1:index_commas(i+1)-1);
txt5 = [txt5;
vname+'=[];';
'for i=1:'+'nvar'+vname;
'k=k+1;';
vname+'='+vname+'+xopt(k)*nbasis(dim'+vname+',struc'+vname+',i)';
'end']
end
headlmi='['+strcat(out,',')+']='+'lmi_eval('+strcat(inp,',')+')'
[mt,nt]=size(txt)
quote='''';quote=quote(ones(mt,1))
semi=';';semi=semi(ones(mt,1));
txtlmi_eval=['deff('+''''+headlmi+''''+',[';
quote+dblquote(txt)+quote+semi;
'])']
outputs=vlist;
txtsolver=[txtlmi_eval;
'comp(lmi_eval)';
txt1;txt2;txt3;txt4;txt5];
deff('['+outputs +']='+'solver'+'('+inputs+')',...
[txtlmi_eval;'comp(lmi_eval)';txtsolver]);
comp(solver);
comm1=' ';comm2=' ';comm3=' ';comm4=' ';comm5=' ';
n=x_choose(['Yes';'No'],'Do you want to save the solver function ?')
if n==1 then
pbname = x_dialog('Enter a problem/macro name: ','solvername');
pathname=unix_g('pwd');
fname = pathname+'/'+pbname+'.sci';
fname=x_dialog('Saving solver macro '+pbname+' in file ',fname);
unix_s('\rm -f '+fname);
header = 'function ['+outputs+']='+pbname+'('+inputs+')';
headerlmi_eval='function '+headlmi;
write(fname,[header;...
[comm1;txt1;comm2;txt2;comm3;txt3;comm4;txt4;...
comm5;txt5;
headerlmi_eval;txt]]);
// tell user what to do:
txtdo = [' To solve your problem, you need to ';
'1- load (and compile) the solver function:';
' getf('''+fname'+''',''c'')';
'2- Define '+inputs+' and run the solver function:';
' '+'['+outputs+']='+pbname+'('+inputs+')';
' ';
' Good luck! ';
'To check the results, use lmi_eval('+outputs+')';];
write(%io(2),txtdo)
end
function txt=dblquote(txt)
//Change simple quote into double quote!
quote=''''
dquote='""'
[m,n]=size(txt)
for l=1:m,
for k=1:n
tlk=txt(l,k)
sz=length(tlk)
tlk1=emptystr(1)
for i=1:sz
if part(tlk,i)==quote then
tlk1=tlk1+quote+quote
elseif part(tlk,i)==dquote then
tlk1=tlk1+dquote+dquote
else
tlk1=tlk1+part(tlk,i)
end
end
txt(l,k)=tlk1
end
end
function [MXi,m] = nbasis(msize,struc,k)
// function [Xk,m] = basis(msize,struc,k)
// Forms a basis of the space of block-diagonal matrices.
// inputs:
// msize a 2xl integer vector.
// struc an integer vector.
// choice
// outputs:
// Xk where {Xk} forms a basis of a subspace of
// nxq matrices, where n = sum(msize(1)), q = sum(msize(2)).
// for each i, i = 1,...,l,
// if struc(i) = 1, the i-th block of X is that of full, symmetric
// matrices of dimension msize(i,1)xmsize(i,1).
// if struc = 2, the subspace is that of full, symmetric
// matrices of dimension msize(1)xmsize(1), with
// Tr(X) = 0.
// if struc = 3, the subspace is that of full, rectangular
// matrices of dimension msize(1)xmsize(2).
// m dimension of the subspace.
// see also: vec2mat, matrix.
// NOTE: this file has yet to be completed to more general structures.
// find size needed
n = msize(1);
q = msize(2);
[r,l] = size(msize);
l = length(struc);
// case of full, symmetric matrices
if struc == 1,
if k==0 then
m = n*(n+1)/2;
MXi=zeros(n,q);
return
end
m = n*(n+1)/2;
z = zeros(m,1);
i=k;
xi = z; xi(i) = 1;
MXi = vec2mat(xi,1,n);
end
// case of full, symmetric matrices with zero trace
if struc == 2,
if k==0 then
m=n*(n+1)/2-1;
MXi=zeros(n,q);
return
end
m = n*(n+1)/2;
z = zeros(m,1);
if k=1 then
MXi = zeros(n,n); MXi(1,1) = 1;
return
end
i=k;
MX1 = zeros(n,n); MX1(1,1) = 1;
xi = z; xi(i) = 1;
MXi = vec2mat(xi,1,n);
MXi = MXi-sum(diag(MXi))*MX1;
m = m-1;
end
// case of full, rectangular matrices
if struc == 3,
if k==0 then
m=n*q;
MXi=zeros(n,q);
return
end
m = n*q;
z = zeros(m,1);
i=k;
xi = z; xi(i) = 1;
MXi = matrix(xi,n,q);
end
//diagonal matrices
if struc == 4,
if k==0 then
m=n;
MXi=zeros(n,q);
return
end
m=n;
MXi = zeros(n,q);
MXi(k,k) = 1;
end
//scalar matrices
if struc == 5,;
if k==0 then
m=1;
MXi=zeros(n,q);
return
end
m=1;
MXi = eye(n,q);
end
function m=mstruc(list_lmis)
if typeof(list_lmis)='usual' then
[m,m]=size(list_lmis);
return;
end
if typeof(list_lmis)='list' then
m=[];
for lmi=list_lmis
[mk,mk]=size(lmi);
m=[m,mk];
end
end
function w=mcompress(list_lmis)
if typeof(list_lmis)='usual' then
w=compress(list_lmis);
return;
end
if typeof(list_lmis)='list' then
w=[];
for lmi=list_lmis
w=[w,compress(lmi)];
end
end
function lmisd=msub(lmis1,lmis2)
if typeof(lmis1)='usual' then
lmisd=lmis1-lmis2;
return;
end
if typeof(lmis1)='list' then
k=length(lmis1);
lmisd=list();
for i=1:k
lmisd(i)=lmis1(i)-lmis2(i);
end
end
function AA=compress(A)
//For A square and symmetric AA is vector:
// [A(1,1),A(2,1),A(2,2),...,A(q,1),...A(q,q),...]
//!
if norm(A-A','fro')>1.d-5 then
error('non symmetric matrix')
end
[m,n]=size(A)
AA=[]
for l=1:m,AA=[AA A(l,1:l)],end
function A=uncompress(AA,mod)
//Rebuilds A square symmetric or antsymmetric from AA
// mode : 's' : symmetric
// 'a' : skew-symmetric
// [A(1,1),A(2,1),A(2,2),...,A(q,1),...A(q,q),...]
//!
nn=prod(size(AA))
m=maxi(real(roots(poly([-2*nn 1 1],'x','c'))))
s=1;if part(mod,1)=='a' then s=-1,end
A=[]
ptr=1
for l=1:m
A(l,1:l)=AA(ptr:ptr+l-1)
ptr=ptr+l
end
A=A+s*tril(A,-1)'
function A = vec2mat(x,choice,r)
// function A = vec2mat(x,choice,r)
// VEC2MAT: Matrix representation of a vector.
// inputs:
// x vector.
// choice integer (default: 0).
// r integer vector such that
// n = sum(r*r) = length(x) if choice = 0,
// n = sum(r*(r-1)/2) = length(x) if choice < 0,
// n = sum(r*(r+1)/2) = length(x) otherwise.
// output:
// A nxn matrix containing x column-wise in
// block-diagonal structure (each block being of
// size ri). If choice > 0, A is symmetric, if
// choice < 0, it is skew-symmetric.
// See also:
// mat2vec
[nargout,nargin]=argn(0);
l = length(x);
if nargin <= 1, choice = 0; end
if nargin <= 2,
if choice == 0,
r = fix( sqrt(l) );
elseif choice > 0,
r = fix( .5*(-1+sqrt(1+8*l)) );
else
r = fix( .5*(1+sqrt(1+8*l)) );
end
end
A = [];
p = length(r);
x = x(:);
// symmetric case
if choice > 0,
rx = r.*(r+ones(r))/2;
for i = 1:p,
Ai = [];
index = sum(rx(1:i-1));
index = 1+index:index+rx(i);
xi = x(index);
for j = 1:r(i),
Ai(1:j,j) = xi(1+j*(j-1)/2:j*(j+1)/2);
end
indi = sum(r(1:i-1));
indi = 1+indi:indi+r(i);
A(indi,indi) = Ai;
end
A = triu(A)+triu(A,1)';
// skew-symmetric case
elseif choice < 0,
rx = r.*(r-ones(r))/2;
for i = 1:p,
Ai = [];
index = sum(rx(1:i-1));
index = 1+index:index+rx(i);
xi = x(index);
for j = 2:r(i),
Ai(1:(j-1),j) = xi(1+(j-1)*(j-2)/2:j*(j-1)/2);
end
Ai(r(i),r(i)) = 0;
indi = sum(r(1:i-1));
indi = 1+indi:indi+r(i);
A(indi,indi) = Ai;
end
A = triu(A)-triu(A,1)';
// general case
else
rx = r.*r;
for i = 1:p,
index = sum(rx(1:i-1));
index = 1+index:index+rx(i);
xi = x(index);
Ai = zeros(r(i));
Ai(:) = xi;
A = [A Ai];
end
end
function [solver]=def_eig(lmi_driver,lmi_eval,vstruc,vdim)
// get number of variables
ww=macrovar(lmi_eval);
vlist=strcat(ww(1),',');
inputs=strcat(ww(3),',');
[out,inp,txt]=string(lmi_eval);
vlist=strcat(inp,',');
nv=length(vlist)
index_commas=[]
for k=1:nv
if part(vlist,k)==',' then index_commas=[index_commas,k],end
end
vnum = length(index_commas)+1;
com='/'+'/'
index_commas = [0 index_commas length(vlist)+1];
txt1=[];
for i = 1:vnum,
vname = part(vlist,index_commas(i)+1:index_commas(i+1)-1);
vstruci=vstruc(i);
txt1 = [txt1;
'struc'+vname+'='+string(vstruci)]
// get dimension of each variable
vdimi = vdim(i);
txt1 = [txt1;
'dim'+vname+'=['+vdimi+']'];
end
txt2=['nx=0';];
for i = 1:vnum,
vname = part(vlist,index_commas(i)+1:index_commas(i+1)-1);
vstrucname = 'struc'+vname;
vdimname = 'dim'+vname;
txt2 = [txt2;'['+vname+'0'+',nvar'+vname+']'+...
'=nbasis('+vdimname+','+vstrucname+',0)';
vname+'='+vname+'0';
'nx=nx+'+'nvar'+vname];
end
txt2=[txt2;
'[Almi0,Blmi0]=lmi_eval('+vlist+');';
'mstr=mstruc(Almi0);';
'bc=mcompress(Almi0);pc=mcompress(Blmi0);']
txt3=['Ac=[];Qc=[]';];
for i =1:vnum,
vname = part(vlist,index_commas(i)+1:index_commas(i+1)-1);
txt3 = [txt3;
'for i=1:nvar'+vname;
' '+vname+'=nbasis(dim'+vname+',struc'+vname+','+'i'+')';
' '+'[Almi,Blmi]=lmi_eval('+vlist+');';
' '+'Ac=[Ac,mcompress(msub(Almi,Almi0))];';
' '+'Qc=[Qc,mcompress(msub(Blmi,Blmi0))];';
'end;'
' '+vname+'='+vname+'0';];
end
txt4=['tmin=-1000;tmax=10000';
'params=[-1,20,1.d-6,1.d-6,1.d-6,5,5];'
'[xopt,topt,info]='+lmi_driver+...
'(Ac,bc,Qc,pc,mstr,tmin,list(tmax,zeros(nx,1)),params)';
'if info(1) < 0 then warning(''LMI solver fails!''), xopt=[];return;end';
'Ac=[];Qc=[];'];
// call LMI solver, depending on problem type
txt5 = ['k=0;';]
for i = 1:vnum,
vname = part(vlist,index_commas(i)+1:index_commas(i+1)-1);
txt5 = [txt5;
vname+'=[];';
'for i=1:'+'nvar'+vname;
'k=k+1;';
vname+'='+vname+'+xopt(k)*nbasis(dim'+vname+',struc'+vname+',i)';
'end']
end
headlmi='['+strcat(out,',')+']='+'lmi_eval('+strcat(inp,',')+')'
[mt,nt]=size(txt)
quote='''';quote=quote(ones(mt,1))
semi=';';semi=semi(ones(mt,1));
txtlmi_eval=['deff('+''''+headlmi+''''+',[';
quote+dblquote(txt)+quote+semi;
'])']
outputs=vlist+',topt';
txtsolver=[txtlmi_eval;
'comp(lmi_eval)';
txt1;txt2;txt3;txt4;txt5];
deff('['+outputs +']='+'solver'+'('+inputs+')',...
[txtlmi_eval;'comp(lmi_eval)';txtsolver]);
comp(solver);
comm1=' ';comm2=' ';comm3=' ';comm4=' ';comm5=' ';
n=x_choose(['Yes';'No'],'Do you want to save the solver macro ?')
if n==1 then
pbname = x_dialog('Enter a problem/macro name: ','solvername');
pathname=unix_g('pwd');
fname = pathname+'/'+pbname+'.sci';
fname=x_dialog('Saving solver macro '+pbname+' in file ',fname);
unix_s('\rm -f '+fname);
header = 'function ['+outputs+']='+pbname+'('+inputs+')';
headerlmi_eval='function '+headlmi;
write(fname,[header;...
[comm1;txt1;comm2;txt2;comm3;txt3;comm4;txt4;...
comm5;txt5;
headerlmi_eval;txt]]);
// tell user what to do:
txtdo = [' To solve your problem, you need to ';
'1- load (and compile) the solver function:';
' getf('''+fname'+''',''c'')';
'2- Define '+inputs+' and run the solver function:';
' '+'['+outputs+']='+pbname+'('+inputs+')';
' ';
' Good luck! ';
'To check the results, use lmi_eval('+outputs+')';];
write(%io(2),txtdo)
end
|
e4c99e60a50fb87feacebcc782ba92a260a38c36 | 3cbee2296fd6b54f80587eead83813d4c878e06a | /sci2blif/sci2blif_added_blocks/peakdet_block.sce | ee3753609d1a098ef08db6dd01285e4b2091e02d | [] | no_license | nikhil-soraba/rasp30 | 872afa4ad0820b8ca3ea4f232c4168193acbd854 | 936c6438de595f9ac30d5619a887419c5bae2b0f | refs/heads/master | 2021-01-12T15:19:09.899590 | 2016-10-31T03:23:48 | 2016-10-31T03:23:48 | 71,756,442 | 0 | 0 | null | 2016-10-24T05:58:57 | 2016-10-24T05:58:56 | null | UTF-8 | Scilab | false | false | 1,234 | sce | peakdet_block.sce | //************************* Peak Detector ******************************
if (blk_name.entries(bl) =='peakdet_block') then
mputl("# PEAK DETECTOR",fd_w);
for ss=1:scs_m.objs(bl).model.ipar(1)
cap_str= ".subckt peak_detector in[0]=net"+string(blk(blk_objs(bl),2))+'_'+ string(ss)+" in[1]=net" + string(blk(blk_objs(bl),3))+'_'+ string(ss) + " out=net"+ string(blk(blk_objs(bl),2+numofip))+'_'...
+ string(ss) + " #peak_detector_fg[0] =0&ota_bias[0] =" +string(sprintf('%1.12f',scs_m.objs(blk_objs(bl)).model.rpar(ss)));
capcap = scs_m.objs(blk_objs(bl)).model.rpar(scs_m.objs(blk_objs(bl)).model.ipar(1)+ss)
select capcap
case 1 then cap_str= cap_str +"&c4_cap_1x[0] =0";
case 2 then cap_str= cap_str +"&c4_cap_2x[0] =0";
case 3 then cap_str= cap_str +"&c4_cap_3x[0] =0";
case 4 then cap_str= cap_str +"&c4_cap_3x[0] =0"+"&c4_cap_1x[0] =0";
case 5 then cap_str= cap_str +"&c4_cap_3x[0] =0"+"&c4_cap_2x[0] =0";
case 6 then cap_str= cap_str +"&c4_cap_3x[0] =0"+"&c4_cap_2x[0] =0"+"&c4_cap_1x[0] =0";
else error("Capacitor for Peak Detector cannot be compiled.");
end
mputl(cap_str,fd_w);
mputl(" ",fd_w);
end
end
|
d190e820ba327cd2c2202f90f9553d64108972b7 | d465fcea94a1198464d7f8a912244e8a6dcf41f9 | /system/kiks_setmode.sci | e0442041a5e641f9a4ce95cbb404f948bd6896dc | [] | no_license | manasdas17/kiks-scilab | 4f4064ed7619cad9e2117a6c0040a51056c938ee | 37dc68914547c9d0f423008d44e973ba296de67b | refs/heads/master | 2021-01-15T14:18:21.918789 | 2009-05-11T05:43:11 | 2009-05-11T05:43:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 667 | sci | kiks_setmode.sci | function [] = kiks_setmode(%mode)
// Number of arguments in function call
[%nargout,%nargin] = argn(0)
// Display mode
mode(0);
// Display warning for floating point exception
ieee(1);
global("KIKS_ACTIVE_MODE")
if %nargin then
KIKS_ACTIVE_MODE = 1;
try
disp("Keyboard control transferred to KiKS.");
while %t // ! L.8: mtlb(KIKS_SESSIONACTIVE) can be replaced by KIKS_SESSIONACTIVE() or KIKS_SESSIONACTIVE whether KIKS_SESSIONACTIVE is an M-file or not
if mtlb(KIKS_SESSIONACTIVE) then break;end;
xpause(1000*0.01);
end;
catch
disp("Keyboard control returned to Matlab.");
end;
else
KIKS_ACTIVE_MODE = [];
end;
endfunction
|
53661bc41b433ad2f67f09131668120b82ec492a | 449d555969bfd7befe906877abab098c6e63a0e8 | /548/DEPENDENCIES/5_10_data.sci | db2cfaa26c3f3a42b81dd23775ffb8f4ba69435c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 278 | sci | 5_10_data.sci | //consider a NACA-0012 airfoil
Cpomin=-0.43;//minimum pressure coefficient on the surface of airfoil at low speed from figure of Cp vs x/c given in question.
M=linspace(0.4,0.9,6);//Mach number over which we have to calculate Cp critical.
y=1.4;//specific heat ratio for air. |
e5f37653ba5d7326f558b280561cbdc01bea983d | 8b9a8f57e173e7b4f3e0697bb8fa4391992830c1 | /Assignment_4/Signed/CSA8bitsigned.tst | cf61e4d0bc0038758e9c89b85c7ceaf8d1901ad7 | [] | no_license | AtharvaC1511/ComputerSystemDesign | 9bdcdd5178e55f21c9c23cc105feb6f1cdf47cf6 | e3d9bdcb961aa6d2f13c58532bb89908dda70d3b | refs/heads/main | 2023-06-25T19:04:51.971391 | 2021-07-19T14:24:00 | 2021-07-19T14:24:00 | 387,486,807 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 742 | tst | CSA8bitsigned.tst | load CSA8bitsigned.hdl,
output-file CSA8bitsigned.out,
compare-to CSA8bitsigned.cmp,
output-list X%B1.8.1 Y%B1.8.1 P%B1.8.1 OF%B1.1.1;
//X=15 and Y=5 give 75 and thus no overflow
set X %B00000101,
set Y %B00001111,
eval,
output;
//X=18 and Y=-6 give -108 and thus no overflow
set X %B00010010,
set Y %B11111010,
eval,
output;
//X=-17 and Y=7 give -119 and thus no overflow
set X %B11101111,
set Y %B00000111,
eval,
output;
//X=-19 and Y=-5 give -95 and thus no overflow
set X %B11101101,
set Y %B11111011,
eval,
output;
set X %B01011111,
set Y %B00110110,
eval,
output;
//X=-39 and Y=-18 give -576 and thus overflow
set X %B11011001,
set Y %B11101110,
eval,
output;
|
d4a1812940bc40873442063a58577c348343b947 | 449d555969bfd7befe906877abab098c6e63a0e8 | /587/CH6/EX6.1/example6_1.sce | 04ba743223d2ec1f09459ee8a88316c80fe881eb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,129 | sce | example6_1.sce | clear;
clc;
//Example6.1[Temperature Rise of Oil is a Journal Bearing]
//Given:-
k=0.145;//[W/m.K]
mu=0.8374;//[kg/m.s]or[N.s/m^2]
T1=20;//Temperature of both the plates[degree Celcius]
t=0.002;//Thickness of oil film between the plates[m]
v=12;//Velocity with which plates move[m/s]
//Solution (a):-
//Relation between velocity and temperature variation
disp("T(y)=T0+(mu*(v^2)/(2*k))[(y/L)-((y/L)^2)]")
//Solution(b):-
//The location of maximum temperature is determined by setting dT/dy=0 and solving for y
//(mu*(v^2)/(2*k*L))*(1-(2*y/L))=0
L=1;//Random initialisation of variable L, where L is length of plates
y=L/2;
//T_max=T(L/2)
T_max=T1+((mu*(v^2)/(2*k))*(((L/2)/L)-(((L/2)^2)/(L^2))));
disp("degree Celcius",ceil(T_max),"Maximum temperature occurs at mid plane and its value is")
//heat flux q0=-kdt/dy|y=0;=-kmu*v^2/(2*k*L)
q0=-(mu*k*(v^2)/(2*k*t))/1000;//Heat flux from one plate [kW/m^2]
qL=-((k*mu*(v^2))*(1-2)/(2*k*t*1000));//Heat flux from another plate[kW/m^2]
disp("kW/m^2",qL,"Heat fluxes at the two plates are equal in magnitude but opposite in sign and the value of magnitude is")
|
acc6f5a9e2f13550900fdb4ddd82cec840fc05b5 | 1573c4954e822b3538692bce853eb35e55f1bb3b | /DSP Functions/allpasslp2hp/test_11.sce | 04881f68755d0cbc3e56515cdbfc583ce83037c4 | [] | no_license | shreniknambiar/FOSSEE-DSP-Toolbox | 1f498499c1bb18b626b77ff037905e51eee9b601 | aec8e1cea8d49e75686743bb5b7d814d3ca38801 | refs/heads/master | 2020-12-10T03:28:37.484363 | 2017-06-27T17:47:15 | 2017-06-27T17:47:15 | 95,582,974 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 269 | sce | test_11.sce | // Test # 11 : Valid input test case #1
exec('./allpasslp2hp.sci',-1);
[n,d]=allpasslp2hp(0.3,0.6);
disp(d);
disp(n);
//
//Scilab Output
//d= 1 -0.1755705
//n= 0.1755705 -1
//Matlab Output
//d = 1.0000 -0.1756
//n = 0.1756 -1.0000
|
ba1ea4687d57d02db5e0e044bca52e0218d73125 | a3629d03db989d1960fcdb953d9c4534276d5071 | /pain_adjust_capsaicin.sce | e386ceb3bc1ec9ecbba968bd0bbe477ce8921706 | [] | no_license | katforkmann/TestGitBingellab | 09eaa4bedf5d5b5d5c7bc23cfc631fdc95e68e6d | fbe0bd541ba8ed401934207cfa9d193106669c43 | refs/heads/master | 2021-06-23T03:47:47.486446 | 2021-06-06T16:15:24 | 2021-06-06T16:15:24 | 161,762,836 | 0 | 1 | null | 2021-06-06T16:15:24 | 2018-12-14T09:34:40 | Scilab | UTF-8 | Scilab | false | false | 7,548 | sce | pain_adjust_capsaicin.sce | #==========================================
#------------SDL header part---------------
#==========================================
# Before you run this script you should run the ain theshold procedure programmed in the thermode: 3x ramp-increase from 20* until it gets painfull
# The average threshold is then used for this calibration procedure which applies 2x11 different temperatures for 2,5 sec and rates the painlevel with VAS scales.
# Output is then run trhough an R script to determine VAS 40 and VAS80. For relief 20* will be used.
# changes by marvdsch (jan 2018)
# Removed redundancies in the scrip like defenition of nothing stimuli
#
#-------
# TO DO
#-------
scenario = "pain_adjust_capsaicin";
pcl_file = "pain_adjust_capsaicin.pcl";
#scenario_type = fMRI_emulation;
#scenario_type = fMRI;
#pulse_code = 222; # stimmt der Pulse-Code so?
#pulses_per_scan = 1;
#scan_period = 2600; #only during "scenario_type = fMRI_emulation" - auskommentieren, wenn tatsrt
no_logfile = false;
response_matching = simple_matching;
active_buttons = 6;
button_codes = 1000, 2000, 3000, 4000, 5000, 6000;
# 1 = space, 2 = <-- , 3 = --> 4 = enter, 5 = <-- (up), 6 = --> (up)
# 1 = Leertaste, # 2 = linke Maustaste, # 3 = rechte Maustaste, # 4 = mittlere Maustaste, # 5 = linke Maustaste hoch, # 6 = rechte Maustaste hoch
default_font_size = 40;
default_text_color = 255,255,255;
default_background_color = 0, 0 ,0;
###diese 3 Zeilen auskommentieren, wenn ohne ports!
response_port_output = false;
write_codes = true;
pulse_width = 200;
stimulus_properties = name, string, resp_type, number, resp_time, number;
event_code_delimiter = ":";
begin;
/*
$rt_begin = 0;
$rt_end = 2000;
$dur_trial = 30000;
$dur_iti = 2000; #jitter??
$dur_anticipation_pain = 1000;
$dur_pain = 1500;
$dur_pause_trial = 3000; # evtl hier runter gehen mit der zeit
*/
#$dur_trial = 4500;
$dur_pause_vas_trial = 2000;
$dur_iti = 1000;
$dur_anticipation_pain = 1000;
$dur_pain = 2500; #2500 +500 for pause;
$time_pain_event = 1001; # evtl hier runter gehen mit der zeit
$dur_pause_event = 500; # evtl hier runter gehen mit der zeit
$time_pause_event = 3502; # evtl hier runter gehen mit der zeit
#==========================================
#-----------------SDL part-----------------
#==========================================
#==========================================
#--------------Stimulus Part---------------
#==========================================
#--------------
# Figures
#--------------
# Geometrische Figuren
picture{bitmap { filename = "stimuli\\Quadrat.jpg"; };x=0; y=100; }Bild_1;
picture{bitmap { filename = "stimuli\\Rechteck.jpg"; }; x=0;y=100;}Bild_2;
picture{bitmap { filename = "stimuli\\Raute.jpg"; }; x=0;y=100;}Bild_3;
picture{bitmap { filename = "stimuli\\Empty.jpg"; }; x=0;y=100;} Empty;
# braucht man das extra?? ja in der vas skala
bitmap { filename = "stimuli\\Quadrat.jpg"; } Figure_1;
bitmap { filename = "stimuli\\Rechteck.jpg"; } Figure_2;
bitmap { filename = "stimuli\\Raute.jpg"; } Figure_3;
bitmap { filename = "stimuli\\Instr_PainAdjust.jpg"; } INSTR_1;
#--------------
# Trials
#--------------
trial {
trial_duration = forever;
trial_type = specific_response;
terminator_button = 1;
picture {
bitmap INSTR_1;
x = 0; y = 0;
};
}INSTRUCTION_TRIAL;
#--------------
# weisses Fixationskreuz
#--------------
picture{
text{
caption = "+";
font_size = 48;
};
x = 0;
y = 0;
}CROSSHAIR;
#--------------
# Anticipation pain trial
#--------------
/*
trial{
trial_duration = $dur_trial;
stimulus_event{
nothing {}; #black screen;
time = 0;
duration = $dur_anticipation_pain;
code = "ANTICIPATION_PAIN";
}ANTICIPATION_US_EVENT;
stimulus_event{
nothing {};
time = $dur_anticipation_pain;
duration = $dur_pain;
code = "PAIN";
port_code = 255; ## Achtung Port code einstellen!
}US_EVENT;
}ANTICIPATION_US_TRIAL;
*/
trial{
trial_duration = stimuli_length; #$dur_trial; With stimili_length you do not need to define the trial duration in pcl
stimulus_event{
picture {};
#picture PAUSE;
time = 0;
duration = $dur_anticipation_pain;
code = "ANTICIPATION_PAIN";
}ANTICIPATION_US_EVENT;
stimulus_event{
#nothing {};
picture CROSSHAIR;
#time = $dur_anticipation_pain;
time = $time_pain_event;
duration = $dur_pain;
code = "PAIN";
port_code = 255; ## Achtung Port code einstellen!
}US_EVENT;
stimulus_event{
picture{};
#picture PAUSE;
time = $time_pause_event;
duration = $dur_pause_event;
code = "PAUSE";
}PAUSE_EVENT;
}ANTICIPATION_US_TRIAL;
#--------------
# VAS_PAUSE_TRIAL
#--------------
/*
# set_duration(vas_jitter) - ins input-file schreiben
trial{
trial_duration = $dur_pause_vas_trial;
stimulus_event{
picture {};#DEFAULT;
code = "PAUSE_VAS";
}PAUSE_VAS_EVENT;
}PAUSE_VAS_TRIAL;
*/
#--------------
# ITI trial
#--------------
trial{
trial_duration = stimuli_length;
stimulus_event{
picture {};
duration = $dur_iti;
code = "ITI";
}ITI_EVENT;
}ITI_TRIAL;
#==================================================
#----------------VAS Stimulus Part-----------------
#==================================================
# define picture parts
# --------------------
box{
height = 10;
width = 10;
color = 255, 0, 0;
}Item;
box{
height = 10;
width = 10;
color = 255, 255, 255;
}Delim;
text{
caption = "LeftLabel";
font_color = 255, 255 ,255;
font_size = 14;
text_align = align_center;
}LLabel;
text{
caption = "MiddleLabel";
font_color = 255,255,255;
font_size = 14;
text_align = align_center;
}MLabel;
text{
caption = "RightLabel";
font_color = 255,255,255;
font_size = 14;
text_align = align_center;
}RLabel;
text {
caption = "Title";
font_color = 255,255,255;
font_size = 18;
text_align = align_center;
}STitle;
# assemble picture parts (numbered 1 to 5) into picture
# -----------------------------------------------------
picture{
box Delim; x = -100; y = 0;
box Delim; x = -80; y = 0;
box Delim; x = 100; y = 0;
text LLabel; x = -100; y = 30;
text MLabel; x = -80; y = 30;
text RLabel; x = 100; y = 30;
text STitle; x = 0; y = 50;
}VAS_Scale;
#==================================================
#------------------VAS Trial Part------------------
#==================================================
trial{
trial_duration = forever;
trial_type = first_response;
all_responses = true;
stimulus_event{
picture VAS_Scale;
code = "VAS";
}FirstResponse_event;
}FirstResponseScaling;
trial{
trial_duration = 100;
stimulus_event{
picture VAS_Scale;
}Scale_event;
}Scaling;
# WriteToLogFile is used for writing vascores to the terminal by changing the code
trial{
trial_duration = 100;
stimulus_event{
picture {};#DEFAULT;
code = "SCORE:";
}LogEvent;
}WriteToLogFile;
|
80481b9e6ab07734648ff2267eb49cc7d7dfe37a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2153/CH3/EX3.33/ex_3_33.sce | 95d56384a9e8e1559392da8d07b8b35d1653d6d6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 203 | sce | ex_3_33.sce | //Example 3.33 : number of per order
clc;
clear;
close;
//given data :
format('v',5)
theta=90;//in degree
lamda=1.54;// in angstrum
a=sind(theta)
d=1.181;
n=(2*d*a)/lamda;
disp(n,"number of order,n = ")
|
893fe29e5f94ed0c41f0f7b23c86f7d9412f284d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2732/CH9/EX9.11/Ex9_11.sce | 7efe34041c652de0fb985c52da2ddfed5a0a775c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,320 | sce | Ex9_11.sce | clc
//initialization of variables
clear
w=10 //cm
s=2.8 //m
P=1 //tonne
Ft=1.4 //cm
Wt=0.8 //cm
Ix=13989.5 //cm^4
Z=699.5 //cm^3
// calculations
BM= 2.8
T=P*1000*8.21
SF=P*1000
BS=BM*10^5/(Z)
sigmaXA=BS*18.6/20
K=w*Ft*19.3+18.6*Wt*9.3
tau_xy_C=SF/(Ix*Wt)*K
tau_xy_A=tau_xy_C*(w*Ft*19.3)/K
tau_xy_B=tau_xy_A*0.5*Wt/w
sigmaXB=sigmaXA*19.3/20
tau_max=3*Ft*8210/(w*Ft^3+37.2*Wt^3)
tau_A=3*Wt*8210/(w*Ft^3+37.2*Wt^3)
//For point A
Shear=tau_xy_A-tau_A
sigma_x=sigmaXA
sigma_y=0
tau_xy=Shear
sigma_1=(sigma_x+sigma_y)/2+sqrt((1/2*(sigma_x-sigma_y))^2+tau_xy^2)
sigma_2=(sigma_x+sigma_y)/2-sqrt((1/2*(sigma_x-sigma_y))^2+tau_xy^2)
printf('For point A')
printf('\n Total shear= %.1f kg/cm^2 ',Shear)
printf('\n Bending stress = %d kg/cm^2 (Compr.)',sigma_x)
printf('\n Principal stresses are %d (tension), %d (comp.) kg/cm^2 ',sigma_1,sigma_2)
//For point B
printf('\n FOr point B')
printf('\n Bending shear stress is %.2f k/cm^2',tau_xy_B)
sigmaXB=BS*19.3/20
sigma_x=sigmaXB
sigma_y=0
tau_xy=tau_max
sigma_1=(sigma_x+sigma_y)/2+sqrt((1/2*(sigma_x-sigma_y))^2+tau_xy^2)
sigma_2=(sigma_x+sigma_y)/2-sqrt((1/2*(sigma_x-sigma_y))^2+tau_xy^2)
printf('\n Principal stresses are %d (tension), %d (comp.) kg/cm^2 ',sigma_1,sigma_2)
// Answers in the text are approximations
|
45ac301c3917b372443272562eabd6c9753dd639 | 449d555969bfd7befe906877abab098c6e63a0e8 | /842/CH5/EX5.5/Example5_5.sce | e9ee44b328e9db2f8c29a34ec3bc432f091904e4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 414 | sce | Example5_5.sce | //clear//
//Example5.5:Discrete Time Fourier Transform:x[n]= cos(nWo)
clear;
clc;
close;
N = 5;
Wo = 2*%pi/N;
W = [-Wo,0,Wo];
XW =[%pi,0,%pi];
//
figure
a = gca();
a.y_location ="origin";
a.x_location ="origin";
plot2d3('gnn',W,XW,2);
poly1 = a.children(1).children(1);
poly1.thickness = 3;
xlabel(' W');
title('DTFT of cos(nWo)')
disp(Wo)
|
7f81520ce779b573f47b121c43155321b357f8b3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3557/CH8/EX8.2/Ex8_2.sce | 46d7adf891c069d2487112eb8b71c0e355d49c96 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 273 | sce | Ex8_2.sce | //Example 8.2//
Y=1;// dimensionless geometry factor
YS=1460//MPa //MegaPascal // overall stress applied at failure
b=0.5;//Y.S //given
Kic=98;//MPa sqrt(m) //fracture toughness
a=(Kic^2)/((%pi)*(b*YS)^2)
mprintf("a = %e m = 5.74 mm (As 1milli = 10^-3 )",a)
|
9c2d72271eaa2c7519063d4c9efc197871226f8d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1332/CH9/EX9.8/9_8.sce | 79e5f435fe143a50c9b6c7e6270eeef2528a2a54 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 591 | sce | 9_8.sce | //Example 9.8
//Recursive Least-Square Method
//Page no. 308
clc;clear;close;
A0=[3,0;0,3;3,3];
B0=[2;2;2];
A1=[6,3];B1=[6];
A0T=A0';
G0=A0T*A0;
disp(G0,'G0=')
G0_1=inv(G0);
disp(G0_1,'Inverse of G0=')
X0=G0_1*A0T*B0;
disp(X0,'X0=')
//by recursive least square algorithm
G1=G0+A1'*A1;
disp(G1,'G1=');
G1_1=inv(G1);
disp(G1_1,'Inverse of G1')
X1=X0+G1_1*A1'*(B1-A1*X0);
disp(X1,'X1=')
//verification
A=[3,0;0,3;3,3;6,3];
B=[2;2;2;6];
AT=A';
G=AT*A;
disp(G,'G=')
G_1=inv(G);
disp(G_1,'Inverse of G=')
X=G_1*AT*B;
disp(X,'X=')
disp('Thus X and X1 are Same') |
e7fa052cf26ade2769fac8448ef4589f301e5659 | 35b3c26034566650ea1b58b878226284f680b072 | /chips/DMUX.tst | 18786bd9c31ad24ed9251931d2702b0417ac86cc | [] | no_license | kisom/tecs | ab4d2c042ccf43441be86e17ec262e22d56c2728 | c6e44a2b219df25537066243fcdc7da7ea29f4da | refs/heads/master | 2016-09-05T13:26:06.444756 | 2014-02-10T08:18:41 | 2014-02-10T08:18:41 | 1,688,413 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 465 | tst | DMUX.tst | // This file is part of the materials accompanying the book
// "The Elements of Computing Systems" by Nisan and Schocken,
// MIT Press. Book site: www.idc.ac.il/tecs
// File name: projects/01/DMux.tst
load DMUX.hdl,
output-file DMUX.out,
compare-to DMUX.cmp,
output-list in%B3.1.3 sel%B3.1.3 a%B3.1.3 b%B3.1.3;
set in 0,
set sel 0,
eval,
output;
set sel 1,
eval,
output;
set in 1,
set sel 0,
eval,
output;
set sel 1,
eval,
output;
|
b17e5b5072f820725cbb7623f998a89697dfcfc9 | 9950cacf99a8df48d35907fc69d7e8ee3db0cfd0 | /001057787_hw_3 (1)/Assignment3/vocoder.sce | ef57c7df4cd17205ab226b147b836fc056d75071 | [] | no_license | Classwork-Org/HW_SW_Course | 1960457d6dd6f366bbcb94bf2fa6b89d99e1bbb8 | 62d380f3b69d62eb8ee8e70941d9506bf8f1e4a1 | refs/heads/master | 2023-05-20T22:35:23.723637 | 2021-06-11T06:32:12 | 2021-06-11T06:32:12 | 375,926,906 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 12,576 | sce | vocoder.sce | <!DOCTYPE SCE>
<sce>
<project>vocoder.sce</project>
<compiler>
<option name="libpath" ></option>
<option name="libs" >-xl src/common/pack.o</option>
<option name="incpath" >src/common</option>
<option name="importpath" >src:src/common:src/lp_analysis:src/open_loop:src/closed_loop:src/codebook:src/update:src/processing:.</option>
<option name="defines" ></option>
<option name="undefines" ></option>
<option verbosity="0" name="options" warning="0" > -v</option>
</compiler>
<simulator>
<option type="0" name="tracing" debug="False" calls="False" ></option>
<option type="2" name="terminal" >xterm -title %e -e</option>
<option name="logging" enabled="False" >.log</option>
<option name="command" >time ./%e src/speechfiles/spch_unx.inp nodtx.bit nodtx && diff -s src/speechfiles/nodtx_good.bit nodtx.bit</option>
</simulator>
<models>
<item type="" name="vocoderSpec.sir" >
<item input="vocoderArch.in.sir" type="scar,vocoderSpec,-b,-m,-c,-w,-i,/Users/Grad/asultan/Documents/hwsw/Assignment3/vocoderArch.in.sir,-o,/Users/Grad/asultan/Documents/hwsw/Assignment3/vocoderArch.sir" level="0x700L" name="vocoderArch.sir" >
<item input="vocoderSched.in.sir" type="scar,vocoderArch,-s,-i,/Users/Grad/asultan/Documents/hwsw/Assignment3/vocoderSched.in.sir,-o,/Users/Grad/asultan/Documents/hwsw/Assignment3/vocoderArch.sched.tmp.sir;scos,vocoderArch,-v,-i,/Users/Grad/asultan/Documents/hwsw/Assignment3/vocoderArch.sched.tmp.sir,-o,/Users/Grad/asultan/Documents/hwsw/Assignment3/vocoderSched.sir" level="0x1f00L" name="vocoderSched.sir" >
<item input="vocoderNet.in.sir" type="scnr,vocoderSched,-v,-O,-falign,-fmerge,-i,/Users/Grad/asultan/Documents/hwsw/Assignment3/vocoderNet.in.sir,-o,/Users/Grad/asultan/Documents/hwsw/Assignment3/vocoderNet.sir" level="0x71f00L" name="vocoderNet.sir" >
<item input="vocoderPam.in.sir" type="sccr,vocoderNet,-v,-O,-i,/Users/Grad/asultan/Documents/hwsw/Assignment3/vocoderPam.in.sir,-o,/Users/Grad/asultan/Documents/hwsw/Assignment3/vocoderPam.sir" level="0x3071f00L" name="vocoderPam.sir" />
<item input="vocoderTlm.in.sir" type="sccr,vocoderNet,-v,-t,-O,-i,/Users/Grad/asultan/Documents/hwsw/Assignment3/vocoderTlm.in.sir,-o,/Users/Grad/asultan/Documents/hwsw/Assignment3/vocoderTlm.sir" level="0x1071f00L" name="vocoderTlm.sir" />
</item>
</item>
</item>
</item>
</models>
<imports>
<item name="F_gamma" />
<item name="arg_handler" />
<item name="array_op" />
<item name="autocorr" />
<item name="az_lsp" />
<item name="basic_func" />
<item name="basic_op" />
<item name="build_cn_code" />
<item name="build_code" />
<item name="c_double_handshake" />
<item name="closed_loop" />
<item name="cn_encoding" />
<item name="cod_12k2" />
<item name="code_10i40_35bits" />
<item name="codebook" />
<item name="codebook_cn" />
<item name="coder" />
<item name="compute_CN_excitation_gain" />
<item name="convolve" />
<item name="copy" />
<item name="cor_h" />
<item name="cor_h_x" />
<item name="enc_lag6" />
<item name="ex_syn_upd_sh" />
<item name="excitation" />
<item name="filter_and_scale" />
<item name="find_az" />
<item name="find_targetvec" />
<item name="g_code" />
<item name="g_pitch" />
<item name="get_minmax" />
<item name="homing_test" />
<item name="i_receiver" />
<item name="i_sender" />
<item name="i_tranceiver" />
<item name="imp_resp" />
<item name="int_lpc" />
<item name="lag_wind" />
<item name="levinson" />
<item name="lp_analysis" />
<item name="lsp_az" />
<item name="monitor" />
<item name="no_speech_upd" />
<item name="nodtx_setflags" />
<item name="ol_lag_est" />
<item name="open_loop" />
<item name="par_weight" />
<item name="period_upd" />
<item name="pitch_contr" />
<item name="pitch_fr6" />
<item name="pitch_ol" />
<item name="post_process" />
<item name="pre_process" />
<item name="pred_lt_6" />
<item name="prefilter" />
<item name="prm2bits" />
<item name="q_gain_code" />
<item name="q_gain_pitch" />
<item name="q_p" />
<item name="q_plsf_5" />
<item name="q_plsf_and_intlpc" />
<item name="reset" />
<item name="residu" />
<item name="search_10i40" />
<item name="set_sign" />
<item name="shift_signals" />
<item name="sid_codeword_encode" />
<item name="std_includes" />
<item name="stimulus" />
<item name="subframes" />
<item name="syn_filt" />
<item name="tx_dtx" />
<item name="upd_mem" />
<item name="update" />
<item name="vad_comp" />
<item name="vad_lp" />
<item name="vocoder" />
<item name="weight_ai" />
<item name="c_handshake" />
<item name="dsp56600_0" />
<item name="i_receive" />
<item name="i_send" />
<item name="stdHW" />
<item name="OSNone" />
<item name="i_os_api" />
<item name="c_mutex" />
<item name="dsp56600bf_0" />
<item name="dsp566portA_2_0" />
<item name="i_semaphore" />
</imports>
<sources>
<item name="/ECEnet/Apps1/sce/latest/inc/bits/pthreadtypes.h" />
<item name="/ECEnet/Apps1/sce/latest/inc/sim.sh" />
<item name="/ECEnet/Apps1/sce/latest/inc/sim/bit.sh" />
<item name="/ECEnet/Apps1/sce/latest/inc/sim/longlong.sh" />
<item name="/ECEnet/Apps1/sce/latest/inc/sim/sim.sh" />
<item name="/ECEnet/Apps1/sce/latest/inc/sim/time.sh" />
<item name="/usr/include/_G_config.h" />
<item name="/usr/include/alloca.h" />
<item name="/usr/include/bits/sigset.h" />
<item name="/usr/include/bits/sys_errlist.h" />
<item name="/usr/include/bits/time.h" />
<item name="/usr/include/bits/types.h" />
<item name="/usr/include/libio.h" />
<item name="/usr/include/stdio.h" />
<item name="/usr/include/stdlib.h" />
<item name="/usr/include/string.h" />
<item name="/usr/include/sys/select.h" />
<item name="/usr/include/sys/types.h" />
<item name="/usr/include/time.h" />
<item name="/usr/include/wchar.h" />
<item name="/usr/lib/gcc/x86_64-redhat-linux/4.4.7/include/stddef.h" />
<item name="/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stdarg.h" />
<item name="/usr/lib/gcc/x86_64-redhat-linux/4.8.5/include/stddef.h" />
<item name="c_double_handshake.sc" />
<item name="i_receiver.sc" />
<item name="i_sender.sc" />
<item name="i_tranceiver.sc" />
<item name="src/EFR_Coder_public.sc" />
<item name="src/arg_handler.sc" />
<item name="src/closed_loop/closed_loop.sc" />
<item name="src/closed_loop/compute_CN_excitation_gain.sc" />
<item name="src/closed_loop/convolve.sc" />
<item name="src/closed_loop/enc_lag6.sc" />
<item name="src/closed_loop/find_targetvec.sc" />
<item name="src/closed_loop/g_pitch.sc" />
<item name="src/closed_loop/imp_resp.sc" />
<item name="src/closed_loop/par_weight.sc" />
<item name="src/closed_loop/pitch_fr6.sc" />
<item name="src/closed_loop/pred_lt_6.sc" />
<item name="src/closed_loop/q_gain_pitch.sc" />
<item name="src/cod_12k2.sc" />
<item name="src/codebook/build_cn_code.sc" />
<item name="src/codebook/build_code.sc" />
<item name="src/codebook/code_10i40_35bits.sc" />
<item name="src/codebook/codebook.sc" />
<item name="src/codebook/codebook_cn.sc" />
<item name="src/codebook/cor_h.sc" />
<item name="src/codebook/cor_h_x.sc" />
<item name="src/codebook/g_code.sc" />
<item name="src/codebook/pitch_contr.sc" />
<item name="src/codebook/prefilter.sc" />
<item name="src/codebook/q_p.sc" />
<item name="src/codebook/search_10i40.sc" />
<item name="src/codebook/set_sign.sc" />
<item name="src/coder.sc" />
<item name="src/common/F_gamma.sc" />
<item name="src/common/array_op.sc" />
<item name="src/common/basic_func.sc" />
<item name="src/common/basic_op.sc" />
<item name="src/common/copy.sc" />
<item name="src/common/lsp_az.sc" />
<item name="src/common/reset.sc" />
<item name="src/common/residu.sc" />
<item name="src/common/std_includes.sc" />
<item name="src/common/syn_filt.sc" />
<item name="src/common/typedef.sh" />
<item name="src/common/weight_ai.sc" />
<item name="src/lp_analysis/autocorr.sc" />
<item name="src/lp_analysis/az_lsp.sc" />
<item name="src/lp_analysis/find_az.sc" />
<item name="src/lp_analysis/int_lpc.sc" />
<item name="src/lp_analysis/lag_wind.sc" />
<item name="src/lp_analysis/levinson.sc" />
<item name="src/lp_analysis/lp_analysis.sc" />
<item name="src/lp_analysis/lp_analysis.tab" />
<item name="src/lp_analysis/no_speech_upd.sc" />
<item name="src/lp_analysis/nodtx_setflags.sc" />
<item name="src/lp_analysis/q_plsf_5.sc" />
<item name="src/lp_analysis/q_plsf_5.tab" />
<item name="src/lp_analysis/q_plsf_and_intlpc.sc" />
<item name="src/lp_analysis/tx_dtx.sc" />
<item name="src/lp_analysis/vad_comp.sc" />
<item name="src/lp_analysis/vad_lp.sc" />
<item name="src/monitor.sc" />
<item name="src/open_loop/get_minmax.sc" />
<item name="src/open_loop/ol_lag_est.sc" />
<item name="src/open_loop/open_loop.sc" />
<item name="src/open_loop/period_upd.sc" />
<item name="src/open_loop/pitch_ol.sc" />
<item name="src/processing/cn_encoding.sc" />
<item name="src/processing/filter_and_scale.sc" />
<item name="src/processing/homing_test.sc" />
<item name="src/processing/post_process.sc" />
<item name="src/processing/pre_process.sc" />
<item name="src/processing/prm2bits.sc" />
<item name="src/processing/sid_codeword_encode.sc" />
<item name="src/stimulus.sc" />
<item name="src/subframes.sc" />
<item name="src/update/ex_syn_upd_sh.sc" />
<item name="src/update/excitation.sc" />
<item name="src/update/q_gain_code.sc" />
<item name="src/update/shift_signals.sc" />
<item name="src/update/upd_mem.sc" />
<item name="src/update/update.sc" />
<item name="src/vocoder.sc" />
<item name="testbench.sc" />
<item name="/ECEnet/Apps1/sce/latest/share/sce/db/processors/dsp/dsp56600.sc" />
<item name="c_handshake.sc" />
<item name="i_receive.sc" />
<item name="i_send.sc" />
<item name="stdHW.sc" />
<item name="/ECEnet/Apps1/sce/latest/share/sce/db/processors/dsp/dsp56600os.sc" />
<item name="OSNone.sc" />
<item name="global.sh" />
<item name="i_os_api.sc" />
<item name="/ECEnet/Apps1/sce/latest/share/sce/db/busses/processor/dsp566portA.sc" />
<item name="/ECEnet/Apps1/sce/latest/share/sce/db/processors/dsp/dsp56600bf.sc" />
<item name="c_mutex.sc" />
<item name="i_semaphore.sc" />
<item name="/Users/Grad/asultan/Documents/hwsw/Assignment3/vocoderArch.si" />
</sources>
<metrics>
<option name="types" >bit[13],short int[10],pthread_condattr_t,int[6],__fsid_t,pthread_mutexattr_t,short int[512],int[40],short int,fd_set,short int[57],short int[240],void*,short int[95],void,short int[61],short int[1024],char[4],int[9],short int[50],unsigned short int[7],char[32],pthread_rwlock_t,short int[6],char[20],short int[320],unsigned long long int,short int[25],short int[1600],struct _IO_marker,short int[8],char[1],unsigned short int,short int[16],event,__sigset_t,short int[65],div_t,int[27],ldiv_t,short int[314],_G_fpos_t,pthread_barrier_t,short int[24],short int[4][11],unsigned char,long int[16],short int[3],unsigned int,short int[40],short int[64],unsigned long int,enum __codecvt_result,pthread_attr_t,long int,short int[33],float,char[40],int[2],struct __pthread_internal_list,short int[244],char[48],long double,struct random_data,char[56],short int[256],__mbstate_t,struct drand48_data,_G_fpos64_t,long long int,short int[9],struct timespec,short int[49],pthread_barrierattr_t,short int[2],struct timeval,unsigned short int[3],double,short int[303],int[36],char[8],pthread_cond_t,int,short int[80],char,struct _IO_FILE,lldiv_t,short int[5],bool,char[21],short int[11],struct _fp,short int[32],short int[28],pthread_rwlockattr_t,unsigned long int[16],short int[160],short int[7][10],short int[4],pthread_mutex_t,unsigned char[4],unsigned char[3],unsigned char[484],unsigned char[2],unsigned char[182],signal unsigned bit[1],unsigned bit[16],signal unsigned bit[16],unsigned bit[2],signal unsigned bit[24],unsigned bit[24],unsigned bit[4],unsigned char[1],unsigned bit[8],signal unsigned bit[4],unsigned bit[1]</option>
<option name="operations" >Convolut,Copy,Div_32,Get_lsp_pol,Inv_sqrt,L_Comp,L_Extract,L_abs,L_add,L_add_c,L_deposit_h,L_deposit_l,L_mac,L_macNs,L_msu,L_mult,L_negate,L_shl,L_shr,L_shr_r,L_sub,Log2,Lsp_Az,Mpy_32,Mpy_32_16,Pow2,Set_zero,abs_s,add,arg_handler,clear_carry,clear_overflow,div_s,extract_h,extract_l,gmed5,interpolate_CN_param,mac_r,msu_r,mult,mult_r,negate,norm_l,norm_s,overflow,round,saturate,shl,shr,shr_r,sub</option>
</metrics>
</sce>
|
45bd42355e8f4ffd45b2eb7f6909d2fbc82a9706 | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /prog_assembly/libs/scilab_code/target_program_graph.sce | 003b926aa5fb2dcb279dc57a9a3304df1270ee13 | [] | no_license | jhasler/rasp30 | 9a7c2431d56c879a18b50c2d43e487d413ceccb0 | 3612de44eaa10babd7298d2e0a7cddf4a4b761f6 | refs/heads/master | 2023-05-25T08:21:31.003675 | 2023-05-11T16:19:59 | 2023-05-11T16:19:59 | 62,917,238 | 3 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 4,976 | sce | target_program_graph.sce | time_scale=1e-5; // Time unit : 10us
clear data_02; data_02=read_tar_pgm_result('data'+info_name+'2.hex',m_graph,time_scale);
clear data_03; data_03=read_tar_pgm_result('data'+info_name+'3.hex',m_graph,time_scale);
clear data_04; data_04=read_tar_pgm_result('data'+info_name+'4.hex',m_graph,time_scale);
clear data_05; data_05=read_tar_pgm_result('data'+info_name+'5.hex',m_graph,time_scale);
global target_current_difference;
data_02_size = size(data_02); data_03_size = size(data_03); data_04_size = size(data_04); data_05_size = size(data_05);
data_03(:,2)=data_03(:,2)+data_02(data_02_size(1,1),2); data_04(:,2)=data_04(:,2)+data_03(data_03_size(1,1),2); data_05(:,2)=data_05(:,2)+data_04(data_04_size(1,1),2);
data=[data_02;data_03;data_04;data_05]; fprintfMat("target_program_ADC"+info_name+fname+".data", data, "%5.15f");
//for i=3:m_graph
// data(:,i)=exp(polyval(p1,data(:,i),S1))/kapa_constant_or_not;
//end
for i=3:m_graph
data(:,i)=diodeADC_v2i(diodeADC_h2v(data(:,i),chip_num,brdtype),chip_num,brdtype)/kapa_constant_or_not;
end
fprintfMat("target_program_Current"+info_name+fname+".data", data, "%5.15f");
clear legend_target_list; legend_target_list = ('a');
if showprog == 1 then
scf(info_win_num1);
clf(info_win_num1);
j=1;
for i=3:m_graph
temp=modulo(i,7)+1;
plot2d("nl", data(:,2), data(:,i), style=temp);
p = get("hdl"); p.children.mark_mode = "on"; p.children.mark_style = 9; p.children.thickness = 3; p.children.mark_foreground = temp;
legend_target_list(j,1)='Row. ' + string(target_list(j,1)) + ', Col. ' + string(target_list(j,2));
j=j+1;
end
legend(legend_target_list(:,1),"in_lower_right"); // "in_upper_left" "in_lower_right"
xtitle("","time [s]", "Id [A]");
a=gca();a.data_bounds(1,1)=0;a.data_bounds(1,2)=1D-12;a.data_bounds(2,1)=a.data_bounds(2,1)*2;a.data_bounds(2,2)=1D-03;
clear final_current;
final_current(1,:)=data(data_02_size(1),3:data_02_size(2));
final_current(2,:)=data(data_02_size(1)+data_03_size(1),3:data_02_size(2));
final_current(3,:)=data(data_02_size(1)+data_03_size(1)+data_04_size(1),3:data_02_size(2));
final_current(4,:)=data(data_02_size(1)+data_03_size(1)+data_04_size(1)+data_05_size(1),3:data_02_size(2));
//a_2=data_02_size(1)+data_03_size(1)+data_04_size(1)+data_05_size(1);
//a_3=a_2-31;
//clear a_4;
//for i=3:data_02_size(2)
// a_4(i-2)=mean(data(a_3:a_2,i));
//end
//final_current(4,:)=a_4';
clear target_current;
target_current(1,:)=target_list(:,3)';
target_current(2,:)=target_list(:,3)';
target_current(3,:)=target_list(:,3)';
target_current(4,:)=target_list(:,3)';
clear current_compare; clear current_compare_perc;
current_compare(1,:)=target_current(1,:)-final_current(1,:);
current_compare(2,:)=target_current(2,:)-final_current(2,:);
current_compare(3,:)=target_current(3,:)-final_current(3,:);
current_compare(4,:)=target_current(4,:)-final_current(4,:);
for i=1:n_graph
current_compare_perc(1,i)=100 * (current_compare(1,i) / target_current(1,i));
current_compare_perc(2,i)=100 * (current_compare(2,i) / target_current(2,i));
current_compare_perc(3,i)=100 * (current_compare(3,i) / target_current(3,i));
current_compare_perc(4,i)=100 * (current_compare(4,i) / target_current(4,i));
end
target_current_difference=target_current(4,:)-final_current(4,:);
disp('Error in nA from target current')
disp(target_current_difference*1e9)
scf(info_win_num2);
clf(info_win_num2);
j=1;
for i=1:n_graph
temp=modulo(i,7)+1;
plot2d("ln", target_current(2,i), current_compare_perc(2,i));p=get("hdl");p.children.mark_style=8;p.children.thickness=3;p.children.mark_foreground=temp;p.children.line_mode = 'off';
plot2d("ln", target_current(3,i), current_compare_perc(3,i));p=get("hdl");p.children.mark_style=2;p.children.thickness=3;p.children.mark_foreground=temp;p.children.line_mode = 'off';
plot2d("ln", target_current(4,i), current_compare_perc(4,i));p=get("hdl");p.children.mark_style=9;p.children.thickness=3;p.children.mark_foreground=temp;p.children.line_mode = 'off';
legend_target_list(j,1)='Row. ' + string(target_list(j,1)) + ', Col. ' + string(target_list(j,2));
j=j+1;
end
xtitle("","target current [A]", "errer [%]"); a=gca(); a.data_bounds=[1E-12 -20; 1E-3 100];
scf(info_win_num3);
clf(info_win_num3);
j=1;
for i=1:n_graph
temp=modulo(i,7)+1;
plot2d("ln", target_current(4,i), current_compare_perc(4,i));p=get("hdl");p.children.mark_style=9;p.children.thickness=3;p.children.mark_foreground=temp;p.children.line_mode = 'off';
legend_target_list(j,1)='Row. ' + string(target_list(j,1)) + ', Col. ' + string(target_list(j,2));
j=j+1;
end
xtitle("","target current [A]", "errer [%]"); a=gca(); a.data_bounds=[1E-12 -5.0; 1E-3 5.0];
end
|
21d2aa3eb8ea5da3eca1d2fc8934ffb707720435 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2207/CH6/EX6.9.1/ex_6_9_1.sce | d690dac54dbe298a85a099c68a873c5a1a715773 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 373 | sce | ex_6_9_1.sce | //Example 6.9.1 : pulse width and output voltage
clc;
clear;
close;
//given data :
v=220;//in volts
vo=660;//in volts
toff=100;//in micro seconds
ton=((vo*toff)/v)-toff;//in micro secondsT=ton+toff;//in micro seconds
T=ton+toff;
f=(1/T);//in Hz
Vo=((v)/(1-(f*(ton/2))));//in volts
disp(ton,"pulse width (ton) in micro seconds is")
disp(Vo,"new output voltage in volts is")
|
aa4856677cdc337473d6ee8462ac6ed65c4bbc70 | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH17/EX17.08/17_08.sce | b57466b0aeaef660612b16a5a9f91e80e41f852a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 927 | sce | 17_08.sce | //Problem 17.08: A coil of inductance 0.04 H and resistance 10 ohm is connected to a 120 V, d.c. supply. Determine (a) the final value of current, (b) the time constant of the circuit, (c) the value of current after a time equal to the time constant from the instant the supply voltage is connected, (d) the expected time for the current to rise to within 1% of its final value.
//initializing the variables:
L = 0.04; // in Henry
R = 10; // in ohms
V = 120; // in Volts
//calculation:
tou = L/R
t1 = tou
I = V/R
i1 = I*(1 - %e^(-1*t1/tou))
i2 = 0.01*I
t2 = -1*tou*log(i2/I)
printf("\ = \n\n Result \n\n")
printf("\n (a) the final value of current is %.0f A",I)
printf("\n (b)time constant of the circuit is %.3f sec",tou)
printf("\n (c) value of current after a time equal to the time constant is %.2f A",i1)
printf("\n (d)the expected time for the current to rise to within 0.01 times of its final value is %.2f sec",t2) |
59bd7294d64aaddfa38ade53ad2c5710de0ce0d4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1055/CH10/EX10.2/ch10_2.sce | 31a56a23dd6c0ded931dc4202738f4e055b4b65f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 310 | sce | ch10_2.sce | // Determine the settings of the tap changers required to maintain the voltage of load bus bar
clear
clc;
l1=150;
tstr=1;
load2=72.65;
R=30;
P=(l1*(10^6))/3;
X=80;
Q=(load2*(10^6))/3;
Vs=(230*(10^3))/sqrt(3);
Vr=Vs;
ts2=1/(1-(((R*P)+(X*Q))/(Vs*Vr)));
ts=sqrt(ts2);
mprintf("ts=%.2f p.u\n",ts);
|
f8859bd26d4900cd8ea611e54627444420f61e50 | da5b40d917ec2982828bd9bdf06b18b7bf189f26 | /sim/scripts/compHSFlash.tst | 523c6d0711ac4f8787afe38707a2c7917c3f9ded | [] | no_license | psy007/NNPC-CHEMICAL-SIM- | 4bddfc1012e0bc60c5ec6307149174bcd04398f9 | 8fb4c90180dc96be66f7ca05a30e59a8735fc072 | refs/heads/master | 2020-04-12T15:37:04.174834 | 2019-02-06T10:10:20 | 2019-02-06T10:10:20 | 162,587,144 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 857 | tst | compHSFlash.tst | units VMG
/LiquidPhases = 2
$thermo = VirtualMaterials.Advanced_Peng-Robinson
/ -> $thermo
commonproperties VapFrac T P MoleFlow MassFlow Energy H S MolecularWeight MassDensity Cp ThermalConductivity Viscosity molarV ZFactor
displayproperties VapFrac T P MoleFlow MassFlow Energy H S MolecularWeight MassDensity Cp ThermalConductivity Viscosity molarV ZFactor
/thermo + METHANE
S1 = Stream.Stream_Material()
'/S1.In.T' = 300
'/S1.In.P' = 100
'/S1.In.MoleFlow' = 1
'/S1.In.Fraction' = 1
CP1 = Compressor.Compressor()
/S1.Out -> /CP1.In
S2 = Stream.Stream_Material()
/CP1.Out -> /S2.In
cd /CP1.Efficiency
'/CP1.Efficiency.Generic' = .75
cd /
/CP1.InQ.Energy = 10000
CP1.Out
#Small change,
/CP1.InQ.Energy = 10010
CP1.Out
#Large change
/CP1.InQ.Energy = 1000
CP1.Out
#Now spec outside
'/S1.In.T' =
'/S1.In.P' =
'/S2.In.T' = 400
'/S2.In.P' = 270
CP1.In
|
8710f2e60a32d1803ff5b74f3bdc647348ae17ca | 449d555969bfd7befe906877abab098c6e63a0e8 | /182/CH5/EX5.2/Example5_2.sce | 8987b11e190eaaaf3512566be60fea0e9d96f1f5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 727 | sce | Example5_2.sce | // To find the collector and base voltages
// example 5-2 in page 121
clc;
// Given data
R1=15e+3; R2=27e+3; Rc1=2.7e+3; R11=R1; R21=R2; //resistance values in Ohm where R11=R1' and R21=R2'
Vc2=0.2;// collector voltage of on transistor in volt
Vce=Vc2;//collector-emitter saturation voltage in volt
Vbb=-5;//dc power supply in volt
Vcc=5;//dc power supply in volt
//calculations
Vr1r2=Vc2-Vbb;//voltage across Ri and R2 in volt
Vr1=(R1/(R1+R2))*Vr1r2;// voltage across R1 resistor in volt
Vb1=Vc2-Vr1;// base voltage
printf("Vb1=%.1f V\n",Vb1);
//with Q1 off
Vrc1=(Rc1/(Rc1+R11+R21))*(Vcc-Vbb);
Vc1=Vcc-Vrc1;// collector voltage in volt
printf("Vc1=%.1f V",Vc1);
//result
//Vb1=-1.657143 V
//Vc1=4.395973 V |
b4ff58b05339904f0b08d1cc89d832d15ce7c360 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2672/CH7/EX7.4/Ex7_4.sce | d30dd36014b843c7fa637d306204b0474f5d0248 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 176 | sce | Ex7_4.sce | //Ex_7_4
clc;
clear;
close;
format('v',6);
//given data :
IB=20;///micro A(Base Current)
IC=5;//mA(Collector Current)
Beta=IC*1000/IB;//unitless
disp(Beta,"Beta=");
|
8ef0e2d743088d86f2889febdc701cab070b5014 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1586/CH14/EX14.6/EXP14_6.sce | ced8c6a474696f60e62310f696d1205d74491719 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 444 | sce | EXP14_6.sce | clc;funcprot(0);//EXAMPLE 14.6
// Initialisation of Variables
%A=10;.......//Percentage of Alloy in Cu-Al alloy
%M=9.4;.......//Percentage of Martensite present in Cu-Al alloy
%Fe=15.6;......//Percentage of Ferrite present in Cu-Al alloy
//CALCULATIONS
%a=((%A-%M)/(%Fe-%M))*100;....//Percentage of Austenite forms at 400 degree celsius in Cu-Al alloy
disp(%a,"Percentage of Austenite forms at 400 degree celsius in Cu-Al alloy")
|
e62e3ec41cd76814a5f3684f66e366223474a791 | d1efd578361cc6ad60e7bf00b4803eef4a9d1e9d | /Bookstore/Bookstore.tst | 8f6c176c75d3fc69f13aec29d463c4da6160900d | [] | no_license | sbroadaway/test | fa52bce286cc0a013b249394c74798ea2207a000 | 319ebe6f8a04a7945a391ae4fdc932ae42f05fe7 | refs/heads/master | 2020-06-03T16:58:18.708235 | 2015-06-30T20:33:56 | 2015-06-30T20:33:56 | 24,150,144 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 416,546 | tst | Bookstore.tst | <?xml version="1.0" encoding="UTF-8"?>
<SOAtestProject xmlVersion="5" productVersion="9.4.4" servicePackVersion="4">
<TestSuite className="webtool.test.TestSuite" version="43.15.2">
<DebugAssets className="webtool.test.debug.DebugAssets" version="1">
</DebugAssets>
<ReportingSettings className="webtool.test.ReportingSettings" version="1.1">
<TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3">
</TestGRSSettings>
</ReportingSettings>
<environmentConfig>true</environmentConfig>
<EnvironmentConfiguration className="webtool.environment.EnvironmentConfiguration" version="1">
<environmentsSize>1</environmentsSize>
<Environment className="webtool.environment.Environment" version="1">
<name>localhost:8080</name>
<active>true</active>
<variablesSize>2</variablesSize>
<EnvironmentVariable className="webtool.environment.EnvironmentVariable" version="3">
<maskValue>AgAAACBXyFDAs/8XgQQIi9Oy/FFe5HXbmLzK0eBxfIQIDGPtpg==</maskValue>
<value>AgAAAFDOqB2RW8t/uBUB4C1yyN8+99GV9MTlGHYHuAORRtZRM3C5ei/1fC8m0Ve9eqkjhUe7AUwEzBDAV2CpnZxQWUsho7Nmmwm+MKyuut31pUc8QA==</value>
<name>ENDPOINT</name>
</EnvironmentVariable>
<EnvironmentVariable className="webtool.environment.EnvironmentVariable" version="3">
<maskValue>AgAAACC28s5v6E4tBmIWA/WKNRorP5GfR4irx+ziKjVcgmLvSg==</maskValue>
<value>AgAAAFC86uXFGxtaoznu6MWX2USU/CZssLwOGdEZnygKdQe3D/EO0w2feURqso74Pp8EusEUnNzSKVzlWx5oCCTltJgUAXEFB4ARrnZAs8uRx6mpIg==</value>
<name>WSDL</name>
</EnvironmentVariable>
</Environment>
</EnvironmentConfiguration>
<enabled>true</enabled>
<name>Test Suite</name>
<TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.4">
<groupss size="7">
<PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="0" version="1.2">
<name>addItemToCart</name>
</PerformanceGroup>
<PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="1" version="1.2">
<id>1</id>
<name>addNewItemToInventory</name>
</PerformanceGroup>
<PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="2" version="1.2">
<id>2</id>
<name>getItemById</name>
</PerformanceGroup>
<PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="3" version="1.2">
<id>3</id>
<name>getItemByTitle</name>
</PerformanceGroup>
<PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="4" version="1.2">
<id>4</id>
<name>getItemsInCart</name>
</PerformanceGroup>
<PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="5" version="1.2">
<id>5</id>
<name>submitOrder</name>
</PerformanceGroup>
<PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="6" version="1.2">
<id>6</id>
<name>updateItemInCart</name>
</PerformanceGroup>
</groupss>
<profiless size="0">
</profiless>
</TestSuitePerformanceOptions>
<rootTestSuite>true</rootTestSuite>
<AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.2">
<showAllIterations>true</showAllIterations>
</AdvancedExecutionOptions>
<TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1">
</TestSuiteLoadTestOptions>
<SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1">
</SetupTeardownOptions>
<browserOptions>true</browserOptions>
<TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.13">
<InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4">
</InheritingAuthentication>
<DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1">
</DefaultCustomHeadlessOption>
<DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1">
<CompositeBrowserType className="com.parasoft.util.CompositeBrowserType" version="1.1.1">
<browserTypes size="3">
<SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="0" version="1.1.1">
<typeValue>0</typeValue>
</SingleBrowserType>
<SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="1" version="1.1.1">
<typeValue>1</typeValue>
</SingleBrowserType>
<SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="2" version="1.1.1">
<typeValue>3</typeValue>
</SingleBrowserType>
</browserTypes>
</CompositeBrowserType>
</DefaultCustomBrowserType>
</TestSuiteBrowserTestingOptions>
<TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.2">
<WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1">
<DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1">
</DefaultCustomWsdl>
<DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1">
</DefaultCustomEndpoint>
</WsdlEndpointOptions>
<SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.5">
<ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1">
</ResetExistingCookiesPreferenceProviderImpl>
<DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1">
</DefaultResetExistingCookies>
<RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1">
</RequestHeaderConstrainProviderImpl>
<DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1">
</DefaultCustomConstrain>
<DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1">
</DefaultCustomEncoding>
<DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1">
</DefaultCustomTimeout>
<DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1">
</DefaultCustomSoapVersion>
<DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1">
</DefaultCustomAttachment>
<DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1">
</DefaultCustomTransport>
</SOAPRPCToolOptions>
</TestSuiteSoapClientOptions>
<profileMappingID>0</profileMappingID>
<maxProfileMappingID>2</maxProfileMappingID>
<PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1">
</PropertyOwnerImpl>
<nextIdentifier>10</nextIdentifier>
<testsSize>1</testsSize>
<TestSuite className="webtool.test.TestSuite" version="43.15.2">
<DebugAssets className="webtool.test.debug.DebugAssets" version="1">
</DebugAssets>
<ReportingSettings className="webtool.test.ReportingSettings" version="1.1">
<TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3">
</TestGRSSettings>
</ReportingSettings>
<testLogic>true</testLogic>
<TestLogic className="webtool.test.logic.TestLogic" version="1.7">
<TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2">
</TestExecutionDelay>
<TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2">
</TestExecutionDelay>
<TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2">
</TestDependencyLogic>
</TestLogic>
<testID>1</testID>
<enabled>true</enabled>
<name>CartServicePort</name>
<TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.4">
<profiless size="0">
</profiless>
</TestSuitePerformanceOptions>
<AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.2">
<showAllIterations>true</showAllIterations>
</AdvancedExecutionOptions>
<TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1">
</TestSuiteLoadTestOptions>
<SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1">
</SetupTeardownOptions>
<browserOptions>true</browserOptions>
<TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.13">
<InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4">
</InheritingAuthentication>
<DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1">
</DefaultCustomHeadlessOption>
<DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1">
<CompositeBrowserType className="com.parasoft.util.CompositeBrowserType" version="1.1.1">
<browserTypes size="3">
<SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="0" version="1.1.1">
<typeValue>0</typeValue>
</SingleBrowserType>
<SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="1" version="1.1.1">
<typeValue>1</typeValue>
</SingleBrowserType>
<SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="2" version="1.1.1">
<typeValue>3</typeValue>
</SingleBrowserType>
</browserTypes>
</CompositeBrowserType>
</DefaultCustomBrowserType>
</TestSuiteBrowserTestingOptions>
<TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.2">
<WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1">
<DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1">
<useDefault>false</useDefault>
<wsdl>http://localhost:8080/parabank/services/store-01?wsdl</wsdl>
</DefaultCustomWsdl>
<DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1">
<useDefault>false</useDefault>
<endpoint>${ENDPOINT}</endpoint>
</DefaultCustomEndpoint>
</WsdlEndpointOptions>
<SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.5">
<ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1">
</ResetExistingCookiesPreferenceProviderImpl>
<DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1">
</DefaultResetExistingCookies>
<RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1">
</RequestHeaderConstrainProviderImpl>
<DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1">
</DefaultCustomConstrain>
<DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1">
</DefaultCustomEncoding>
<DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1">
</DefaultCustomTimeout>
<DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1">
<useDefault>false</useDefault>
</DefaultCustomSoapVersion>
<DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1">
</DefaultCustomAttachment>
<DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1">
</DefaultCustomTransport>
</SOAPRPCToolOptions>
</TestSuiteSoapClientOptions>
<profileMappingID>1</profileMappingID>
<PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1">
</PropertyOwnerImpl>
<testsSize>7</testsSize>
<SOAPRPCToolTest className="webtool.soap.SOAPRPCToolTest" version="3.4.15.2">
<DebugAssets className="webtool.test.debug.DebugAssets" version="1">
</DebugAssets>
<ReportingSettings className="webtool.test.ReportingSettings" version="1.1">
<TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3">
</TestGRSSettings>
</ReportingSettings>
<testLogic>true</testLogic>
<TestLogic className="webtool.test.logic.TestLogic" version="1.7">
<TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2">
</TestExecutionDelay>
<TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2">
</TestExecutionDelay>
<TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2">
</TestDependencyLogic>
</TestLogic>
<testID>4</testID>
<enabled>true</enabled>
<name>addItemToCart</name>
<performanceGroup>0</performanceGroup>
<SOAPRPCTool className="webtool.soap.SOAPRPCTool" version="v.2.45.14">
<iconName>SOAPClient</iconName>
<name>addItemToCart</name>
<hasServiceInfo>true</hasServiceInfo>
<ServiceInfo className="webtool.tool.ServiceInfo" version="1.2">
<StandardServiceDescriptor className="com.parasoft.service.catalog.impl.StandardServiceDescriptor" version="1.1">
<location>http://localhost:8080/parabank/services/store-01?wsdl</location>
</StandardServiceDescriptor>
</ServiceInfo>
<SOAPOutputProviderImpl className="webtool.soap.SOAPOutputProviderImpl" version="1.1.1">
</SOAPOutputProviderImpl>
<DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1">
</DefaultCustomConstrain>
<LocationObject className="webtool.wsdl.LocationObject" version="2">
</LocationObject>
<notes>Test client for operation "addItemToCart" in "http://localhost:8080/parabank/services/store-01?wsdl".</notes>
<WsdlProperties className="webtool.soap.WsdlProperties" version="1.1">
<LocationObject className="webtool.wsdl.LocationObject" version="2">
<SOAPClient_WSDLLocation>${WSDL}</SOAPClient_WSDLLocation>
</LocationObject>
</WsdlProperties>
<DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1">
</DefaultCustomEncoding>
<EndpointProperties className="webtool.soap.EndpointProperties" version="1.4">
<DefaultEndpointType className="webtool.soap.DefaultEndpointType" version="1.1.1">
</DefaultEndpointType>
<UDDIEndpointType className="webtool.soap.UDDIEndpointType" version="1.1.1">
<SimpleValue className="webtool.data.SimpleValue" version="2.3">
</SimpleValue>
</UDDIEndpointType>
<CustomEndpointType className="webtool.soap.CustomEndpointType" version="1.1.1">
<SimpleValue className="webtool.data.SimpleValue" version="2.3">
<SOAPClient_CustomEndpoint>${ENDPOINT}</SOAPClient_CustomEndpoint>
</SimpleValue>
</CustomEndpointType>
<WsdlEndpointType className="webtool.soap.WsdlEndpointType" version="1.1.1">
<SimpleValue className="webtool.data.SimpleValue" version="2.3">
<value>http://localhost:8080/parabank/services/store-01</value>
</SimpleValue>
</WsdlEndpointType>
<mode>2</mode>
</EndpointProperties>
<DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1">
</DefaultCustomTimeout>
<DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1">
</DefaultCustomSoapVersion>
<DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1">
</DefaultCustomAttachment>
<MIMEOutputProvider className="webtool.soap.mime.MIMEOutputProvider" version="3.4.1">
<AttachmentOutputProvider className="webtool.soap.mime.AttachmentOutputProvider" version="3.2">
<menuName>Attachment</menuName>
<name>Response Attachment</name>
</AttachmentOutputProvider>
</MIMEOutputProvider>
<MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2">
<HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1">
<menuName>Transport Header</menuName>
<name>Request Transport Header</name>
</HTTPNamedToolOutputProvider>
<HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1">
<menuName>Transport Header</menuName>
<name>Response Transport Header</name>
</HTTPNamedToolOutputProvider>
<NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1">
<menuName>SOAP Envelope</menuName>
<name>Request SOAP Envelope</name>
</NamedXMLToolOutputProvider>
<HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1">
<m_name>Traffic Stream</m_name>
</HTTPOutputProvider>
<ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1">
<outputToolsSize>1</outputToolsSize>
<TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14">
<iconName>TrafficViewer</iconName>
<name>Traffic Viewer</name>
</TrafficViewer>
<name>Traffic Object</name>
</ObjectOutputProvider>
</MessagingOutputProvider>
<CallContainer className="webtool.soap.CallContainer" version="22">
<TransportProperties className="webtool.messaging.TransportProperties" version="11">
<ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1">
<size>12</size>
<SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.12">
<CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="3">
<OAuthConfiguration className="webtool.security.oauth.OAuthConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<OAuthSignRequestConfiguration className="webtool.security.oauth.OAuthSignRequestConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthSignRequestConfiguration>
<OAuthGetRequestTokenConfiguration className="webtool.security.oauth.OAuthGetRequestTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetRequestTokenConfiguration>
<OAuthGetAccessTokenConfiguration className="webtool.security.oauth.OAuthGetAccessTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetAccessTokenConfiguration>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
</OAuthConfiguration>
<method>POST</method>
<ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2">
<ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1">
</ResetExistingCookiesPreferenceProviderImpl>
<DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1">
</DefaultResetExistingCookies>
</ApplyableResetExistingCookiesConfiguration>
<ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1">
</ClientSideSSLProperties>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
<Authentication className="webtool.security.Authentication" version="2.4">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Service</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Username</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Password</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</Authentication>
</CommonHTTPProperties>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
<bool>true</bool>
</ApplyableBooleanConfiguration>
<SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<sendSoapAction>true</sendSoapAction>
</SOAPActionProperties>
</SoapClientHTTPProperties>
<SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.12">
<CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="3">
<OAuthConfiguration className="webtool.security.oauth.OAuthConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<OAuthSignRequestConfiguration className="webtool.security.oauth.OAuthSignRequestConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthSignRequestConfiguration>
<OAuthGetRequestTokenConfiguration className="webtool.security.oauth.OAuthGetRequestTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetRequestTokenConfiguration>
<OAuthGetAccessTokenConfiguration className="webtool.security.oauth.OAuthGetAccessTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetAccessTokenConfiguration>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
</OAuthConfiguration>
<method>POST</method>
<ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2">
<ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1">
</ResetExistingCookiesPreferenceProviderImpl>
<DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1">
</DefaultResetExistingCookies>
</ApplyableResetExistingCookiesConfiguration>
<ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1">
</ClientSideSSLProperties>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
<Authentication className="webtool.security.Authentication" version="2.4">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Service</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Username</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Password</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</Authentication>
</CommonHTTPProperties>
<protocol>1</protocol>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
<bool>true</bool>
</ApplyableBooleanConfiguration>
<SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<sendSoapAction>true</sendSoapAction>
</SOAPActionProperties>
</SoapClientHTTPProperties>
<SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5">
<protocol>7</protocol>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</SoapClientWcfProperties>
<SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5">
<protocol>8</protocol>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</SoapClientWcfProperties>
<JNDIProperties className="webtool.messaging.JNDIProperties" version="19">
<ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2">
<string>readUTF()</string>
</ApplyableStringEnumerationConfiguration>
<JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1">
</JMSStubResponseCorrelation>
<JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>JMSCorrelationID</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
<valuesSize>1</valuesSize>
<ScriptedValue className="webtool.data.ScriptedValue" version="1.1">
<UserMethod className="com.parasoft.scripting.UserMethod" version="2.2">
<code>true</code>
<ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1">
<ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6">
<useText>true</useText>
<ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3">
</ScriptingTextInput>
</ScriptingInput>
<ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1">
</ScriptEngineIdentifier>
</ScriptCode>
<methodId>true</methodId>
<ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1">
</ScriptMethodIdentifier>
</UserMethod>
</ScriptedValue>
</MultiValue>
</NameValuePair>
</JMSResponseCorrelation>
<QueueProperties className="webtool.messaging.QueueProperties" version="1.1">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>JMSDestination</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>JMS_RequestQueue</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
<valuesSize>1</valuesSize>
<ScriptedValue className="webtool.data.ScriptedValue" version="1.1">
<UserMethod className="com.parasoft.scripting.UserMethod" version="2.2">
<code>true</code>
<ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1">
<ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6">
<useText>true</useText>
<ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3">
</ScriptingTextInput>
</ScriptingInput>
<ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1">
</ScriptEngineIdentifier>
</ScriptCode>
<methodId>true</methodId>
<ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1">
</ScriptMethodIdentifier>
</UserMethod>
</ScriptedValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>JMSReplyTo</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>JMS_ResponseQueue</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
<valuesSize>1</valuesSize>
<ScriptedValue className="webtool.data.ScriptedValue" version="1.1">
<UserMethod className="com.parasoft.scripting.UserMethod" version="2.2">
<code>true</code>
<ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1">
<ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6">
<useText>true</useText>
<ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3">
</ScriptingTextInput>
</ScriptingInput>
<ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1">
</ScriptEngineIdentifier>
</ScriptCode>
<methodId>true</methodId>
<ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1">
</ScriptMethodIdentifier>
</UserMethod>
</ScriptedValue>
</MultiValue>
</NameValuePair>
</QueueProperties>
<ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2">
<string>javax.jms.TextMessage</string>
</ApplyableStringEnumerationConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
<bool>true</bool>
</ApplyableBooleanConfiguration>
<JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Connection Factory</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>MQ_JMS_MANAGER</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Initial Context</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>com.sun.jndi.fscontext.RefFSContextFactory</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Provider URL</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>file:/C:/JNDI-Directory</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<Authentication className="webtool.security.Authentication" version="2.4">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Service</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Username</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Password</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</Authentication>
</JMSConnectionProperties>
<useSync>true</useSync>
</JNDIProperties>
<SonicMQJNDIProperties className="webtool.messaging.SonicMQJNDIProperties" version="2.19">
<ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2">
<string>readUTF()</string>
</ApplyableStringEnumerationConfiguration>
<JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1">
</JMSStubResponseCorrelation>
<JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>JMSCorrelationID</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
<valuesSize>1</valuesSize>
<ScriptedValue className="webtool.data.ScriptedValue" version="1.1">
<UserMethod className="com.parasoft.scripting.UserMethod" version="2.2">
<code>true</code>
<ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1">
<ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6">
<useText>true</useText>
<ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3">
</ScriptingTextInput>
</ScriptingInput>
<ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1">
</ScriptEngineIdentifier>
</ScriptCode>
<methodId>true</methodId>
<ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1">
</ScriptMethodIdentifier>
</UserMethod>
</ScriptedValue>
</MultiValue>
</NameValuePair>
</JMSResponseCorrelation>
<QueueProperties className="webtool.messaging.QueueProperties" version="1.1">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>JMSDestination</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>JMS_RequestQueue</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
<valuesSize>1</valuesSize>
<ScriptedValue className="webtool.data.ScriptedValue" version="1.1">
<UserMethod className="com.parasoft.scripting.UserMethod" version="2.2">
<code>true</code>
<ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1">
<ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6">
<useText>true</useText>
<ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3">
</ScriptingTextInput>
</ScriptingInput>
<ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1">
</ScriptEngineIdentifier>
</ScriptCode>
<methodId>true</methodId>
<ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1">
</ScriptMethodIdentifier>
</UserMethod>
</ScriptedValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>JMSReplyTo</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>JMS_ResponseQueue</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
<valuesSize>1</valuesSize>
<ScriptedValue className="webtool.data.ScriptedValue" version="1.1">
<UserMethod className="com.parasoft.scripting.UserMethod" version="2.2">
<code>true</code>
<ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1">
<ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6">
<useText>true</useText>
<ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3">
</ScriptingTextInput>
</ScriptingInput>
<ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1">
</ScriptEngineIdentifier>
</ScriptCode>
<methodId>true</methodId>
<ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1">
</ScriptMethodIdentifier>
</UserMethod>
</ScriptedValue>
</MultiValue>
</NameValuePair>
</QueueProperties>
<ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2">
<string>progress.message.jclient.MultipartMessage</string>
</ApplyableStringEnumerationConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
<bool>true</bool>
</ApplyableBooleanConfiguration>
<JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4">
<initialContextPropsSize>2</initialContextPropsSize>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>java.naming.security.credentials</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>Administrator</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>java.naming.security.principal</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>Administrator</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Connection Factory</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>ConnectionFactory</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Initial Context</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>com.sonicsw.jndi.mfcontext.MFContextFactory</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Provider URL</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>tcp://[hostname]:2506</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<Authentication className="webtool.security.Authentication" version="2.4">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Service</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Username</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>Administrator</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Password</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</Authentication>
</JMSConnectionProperties>
<useSync>true</useSync>
<ApplyableStringConfiguration className="com.parasoft.gui.ApplyableStringConfiguration" version="1.2.2">
<string>part1</string>
</ApplyableStringConfiguration>
</SonicMQJNDIProperties>
<MQProperties className="webtool.messaging.MQProperties" version="12">
<ApplyableMQRFH2FieldsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2FieldsConfiguration" version="1.1.2">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Version</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Encoding</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>CodedCharSetId</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Format</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Flags</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>NameValueCodedCharSetId</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</ApplyableMQRFH2FieldsConfiguration>
<ApplyableMQRFH2MiscOptionsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2MiscOptionsConfiguration" version="1.1.2">
</ApplyableMQRFH2MiscOptionsConfiguration>
<ApplyableMcdFolderConfiguration className="webtool.messaging.mq.ApplyableMcdFolderConfiguration" version="1.1.2">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Message Service Domain</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Message Set</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Message Type</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Output Format</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</ApplyableMcdFolderConfiguration>
<ApplyablePscFolderConfiguration className="webtool.messaging.mq.ApplyablePscFolderConfiguration" version="1.2.2">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>SubIdentity</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>QName</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>QMgrName</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>SubPoint</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Filter</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>SubName</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>SubUserData</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</ApplyablePscFolderConfiguration>
<ApplyableUsrFolderConfiguration className="webtool.messaging.mq.ApplyableUsrFolderConfiguration" version="1.2.2">
</ApplyableUsrFolderConfiguration>
<ApplyableJmsFolderConfiguration className="webtool.messaging.mq.ApplyableJmsFolderConfiguration" version="1.1.2">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Destination</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Reply To</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Timestamp</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Expiration</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Correlation Id</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Priority</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Delivery Mode</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</ApplyableJmsFolderConfiguration>
<ApplyableMQQueueManagerPropertiesConfiguration className="webtool.messaging.mq.ApplyableMQQueueManagerPropertiesConfiguration" version="1.1.2">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>CCSID</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</ApplyableMQQueueManagerPropertiesConfiguration>
<ApplyableMQSSLConfiguration className="webtool.messaging.mq.ApplyableMQSSLConfiguration" version="1.2.1">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Peer Name</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<EnumNameValuePair className="webtool.data.EnumNameValuePair" version="3.3.2">
<name>CipherSuite</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<items size="8">
<item index="1">SSL_RSA_WITH_NULL_MD5</item>
<item index="2">SSL_RSA_WITH_NULL_SHA</item>
<item index="3">SSL_RSA_EXPORT_WITH_RC4_40_MD5</item>
<item index="4">SSL_RSA_WITH_RC4_128_MD5</item>
<item index="5">SSL_RSA_WITH_RC4_128_SHA</item>
<item index="6">SSL_RSA_WITH_DES_CBC_SHA</item>
<item index="7">SSL_RSA_WITH_3DES_EDE_CBC_SHA</item>
</items>
</EnumNameValuePair>
</ApplyableMQSSLConfiguration>
<MQConnectionProperties className="webtool.messaging.MQConnectionProperties" version="1.3">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Put Manager Id</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Get Manager Id</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Channel</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>CHANNEL1</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Host</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>host</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Port</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>1414</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Queue Manager</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>queue.manager.1</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Put Queue</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>PutQueue</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Get Queue</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>GetQueue</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Message ID</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>Message ID</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<Authentication className="webtool.security.Authentication" version="2.4">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Service</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Username</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Password</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</Authentication>
</MQConnectionProperties>
<ApplyablePMOConfiguration className="webtool.messaging.mq.ApplyablePMOConfiguration" version="1.1.1.2">
<value>4</value>
</ApplyablePMOConfiguration>
<ApplyableOOPutConfiguration className="webtool.messaging.mq.ApplyableOOPutConfiguration" version="1.1.1.2">
<value>16</value>
</ApplyableOOPutConfiguration>
<ApplyableGMOConfiguration className="webtool.messaging.mq.ApplyableGMOConfiguration" version="1.1.1.2">
<value>5</value>
</ApplyableGMOConfiguration>
<ApplyableOOGetConfiguration className="webtool.messaging.mq.ApplyableOOGetConfiguration" version="1.1.1.2">
<value>1</value>
</ApplyableOOGetConfiguration>
<GMOMatchConfiguration className="webtool.messaging.mq.GMOMatchConfiguration" version="1.2.1.2">
<value>3</value>
</GMOMatchConfiguration>
<ApplyableQueueManagerConfiguration className="webtool.messaging.mq.ApplyableQueueManagerConfiguration" version="1.1.1.2">
</ApplyableQueueManagerConfiguration>
<ApplyableMDReportConfiguration className="webtool.messaging.mq.ApplyableMDReportConfiguration" version="1.1.1.2">
</ApplyableMDReportConfiguration>
<ApplyableMiscPMConfiguration className="webtool.messaging.mq.ApplyableMiscPMConfiguration" version="1.5.2">
<MQMessageType className="webtool.messaging.MQMessageType" version="1.1">
</MQMessageType>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Application ID data</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Correlation ID</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Expiry (in tenths of a second)</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>-1</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Message sequence number</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Reply queue manager name</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Reply queue name</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Put application name</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Originating application data</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>User ID</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</ApplyableMiscPMConfiguration>
<ApplyableMiscGMConfiguration className="webtool.messaging.mq.ApplyableMiscGMConfiguration" version="1.3.2">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Correlation Id</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Wait Interval(in milliseconds)</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>-1</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</ApplyableMiscGMConfiguration>
<ApplyableMethodConfiguration className="webtool.gui.ApplyableMethodConfiguration" version="1.1.2">
<UserMethod className="com.parasoft.scripting.UserMethod" version="2.2">
<code>true</code>
<ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1">
<ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6">
<useText>true</useText>
<ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3">
</ScriptingTextInput>
</ScriptingInput>
<ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1">
</ScriptEngineIdentifier>
</ScriptCode>
<methodId>true</methodId>
<ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1">
</ScriptMethodIdentifier>
</UserMethod>
</ApplyableMethodConfiguration>
</MQProperties>
<RMIProperties className="webtool.messaging.RMIProperties" version="1">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Host</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>Host</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Port</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>Port</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Binding</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>Binding</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Remote Interface</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>Remote Interface</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Method Name</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>Method Name</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</RMIProperties>
<SMTPConnectionProperties className="webtool.messaging.SMTPConnectionProperties" version="3">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Port</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>25</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>SMTP Host</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Username</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Password</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
<password>AgAAAAA=</password>
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>From Email</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>To Email</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Subject</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</SMTPConnectionProperties>
<TIBCOProperties className="webtool.messaging.TIBCOProperties" version="3">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Time Limit</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>0</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>DAEMON</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>DAEMON</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Send Subject</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>Send Subject</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Reply Field Name</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>Reply Field Name</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Send Field Name</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>Send Field Name</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Reply Field Name</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
<value>Reply Field Name</value>
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</TIBCOProperties>
<NoneTransportProperties className="webtool.messaging.NoneTransportProperties" version="1">
</NoneTransportProperties>
<CustomTransportProperties className="webtool.messaging.CustomTransportProperties" version="1">
</CustomTransportProperties>
</ProtocolPropertiesManager>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
<inverted>true</inverted>
</ApplyableBooleanConfiguration>
</TransportProperties>
<soapCall>true</soapCall>
<SoapCall className="webtool.soap.SoapCall" version="11">
<soapMethod>true</soapMethod>
<SoapMethod className="webtool.soap.SoapMethod" version="19">
<longName>addItemToCart</longName>
<faults size="1">
<fault index="0">Exception</fault>
</faults>
<portTypeNamespace>http://bookstore.parasoft.com/</portTypeNamespace>
<outputName>addItemToCartResponse</outputName>
<OperationStyleUseProperties className="webtool.soap.OperationStyleUseProperties" version="1.2">
<targetObjectURI>http://bookstore.parasoft.com/</targetObjectURI>
<encodingStyleURI></encodingStyleURI>
</OperationStyleUseProperties>
<portTypeName>Bookstore</portTypeName>
<SOAPServiceAddress className="com.parasoft.ws.wsdl.SOAPServiceAddress" version="1.5">
<portName>CartServicePort</portName>
<address>http://localhost:8080/parabank/services/store-01</address>
</SOAPServiceAddress>
<returnParam>true</returnParam>
<SoapParameter className="webtool.soap.SoapParameter" version="10">
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
<writeType>true</writeType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>1</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<localName>addItemToCartResponse</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>2</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>addItemToCartResponse</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>3</hash>
<paramTypesSize>1</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>4</hash>
<minOccurs>0</minOccurs>
<localName>itemAdded</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>5</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>displayOrder</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>6</hash>
<paramTypesSize>2</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>7</hash>
<localName>cartId</localName>
<IntegerType className="webtool.soap.IntegerType" version="2.2.3">
<hash>8</hash>
</IntegerType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>9</hash>
<minOccurs>0</minOccurs>
<localName>item</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>10</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>order</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>11</hash>
<paramTypesSize>2</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>12</hash>
<minOccurs>0</minOccurs>
<localName>book</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>13</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>book</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>14</hash>
<paramTypesSize>9</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>15</hash>
<localName>id</localName>
<IntegerType className="webtool.soap.IntegerType" version="2">
<hash>8</hash>
</IntegerType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>16</hash>
<minOccurs>0</minOccurs>
<localName>name</localName>
<StringType className="webtool.soap.StringType" version="2.5.3">
<hash>17</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>18</hash>
<minOccurs>0</minOccurs>
<localName>price</localName>
<DecimalType className="webtool.soap.DecimalType" version="2.2.3">
<hash>19</hash>
</DecimalType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>20</hash>
<localName>stockQuantity</localName>
<IntegerType className="webtool.soap.IntegerType" version="2">
<hash>8</hash>
</IntegerType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>21</hash>
<minOccurs>0</minOccurs>
<maxOccurs>-1</maxOccurs>
<nillable>true</nillable>
<localName>authors</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>17</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>22</hash>
<minOccurs>0</minOccurs>
<localName>description</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>17</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>23</hash>
<minOccurs>0</minOccurs>
<localName>ISBN</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>17</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>24</hash>
<minOccurs>0</minOccurs>
<localName>publicationDate</localName>
<DateTimeType className="webtool.soap.DateTimeType" version="2.2.3">
<hash>25</hash>
</DateTimeType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>26</hash>
<minOccurs>0</minOccurs>
<localName>publisher</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>17</hash>
</StringType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>27</hash>
<localName>quantity</localName>
<IntegerType className="webtool.soap.IntegerType" version="2">
<hash>8</hash>
</IntegerType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
<size>1</size>
<ComplexValue className="webtool.soap.ComplexValue" version="1.10.12">
<compositorValue>true</compositorValue>
<CompositorValue className="webtool.soap.CompositorValue" version="1.3.12">
<CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1">
<setSize>1</setSize>
<CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1">
<valuesSize>1</valuesSize>
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
</ElementValue>
</CompositorValueSet>
</CompositorValueSetCollectionSet>
</CompositorValue>
</ComplexValue>
</ElementValue>
<name>parameters</name>
</SoapParameter>
<inputName>addItemToCart</inputName>
<methodName>addItemToCart</methodName>
<returnType>{http://bookstore.parasoft.com/}addItemToCartResponse</returnType>
<soapParametersSize>1</soapParametersSize>
<SoapParameter className="webtool.soap.SoapParameter" version="10">
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
<writeType>true</writeType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>1</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<localName>addItemToCart</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>2</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>addItemToCart</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>3</hash>
<paramTypesSize>3</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>4</hash>
<minOccurs>0</minOccurs>
<localName>cartId</localName>
<IntegerType className="webtool.soap.IntegerType" version="2.2.3">
<hash>5</hash>
</IntegerType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>6</hash>
<localName>itemId</localName>
<IntegerType className="webtool.soap.IntegerType" version="2">
<hash>5</hash>
</IntegerType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>7</hash>
<localName>quantity</localName>
<IntegerType className="webtool.soap.IntegerType" version="2">
<hash>5</hash>
</IntegerType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
<size>1</size>
<ComplexValue className="webtool.soap.ComplexValue" version="1.10.12">
<compositorValue>true</compositorValue>
<CompositorValue className="webtool.soap.CompositorValue" version="1.3.12">
<CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1">
<setSize>1</setSize>
<CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1">
<valuesSize>3</valuesSize>
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
</ElementValue>
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
<size>1</size>
<IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.12">
<value>0</value>
</IntegerValue>
</ElementValue>
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
<size>1</size>
<IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.12">
<value>0</value>
</IntegerValue>
</ElementValue>
</CompositorValueSet>
</CompositorValueSetCollectionSet>
</CompositorValue>
</ComplexValue>
</ElementValue>
<name>parameters</name>
</SoapParameter>
</SoapMethod>
<inputMode>2</inputMode>
<inputUsable>true</inputUsable>
<InputUsable className="webtool.tool.InputUsable" version="5">
<use>1</use>
<TextUsable className="webtool.packet.TextUsable" version="4">
<SOAPClient_LiteralMessage><?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<SOAP-ENV:Body>
<addItemToCart xmlns="http://bookstore.parasoft.com/">
<itemId xmlns="">0</itemId>
<quantity xmlns="">0</quantity>
</addItemToCart>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope></SOAPClient_LiteralMessage>
<type>text/xml</type>
</TextUsable>
<InputUsableDataSource className="webtool.tool.InputUsableDataSource" version="1">
</InputUsableDataSource>
</InputUsable>
<userMethod>true</userMethod>
<UserMethod className="com.parasoft.scripting.UserMethod" version="2.2">
<code>true</code>
<ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1">
<ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6">
<useText>true</useText>
<ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3">
</ScriptingTextInput>
</ScriptingInput>
<ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1">
</ScriptEngineIdentifier>
</ScriptCode>
<methodId>true</methodId>
<ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1">
</ScriptMethodIdentifier>
</UserMethod>
<xmlBuilder>true</xmlBuilder>
<XMLBuilder className="webtool.xml.builder.XMLBuilder" version="5.5">
<XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.5">
<value></value>
<name>Envelope</name>
<namespace>true</namespace>
<prefix>SOAP-ENV</prefix>
<uri>http://schemas.xmlsoap.org/soap/envelope/</uri>
<childNodesSize>4</childNodesSize>
<XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.5">
<prefix>SOAP-ENV</prefix>
<uri>http://schemas.xmlsoap.org/soap/envelope/</uri>
</XMLNamespaceNode>
<XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.5">
<prefix>xsd</prefix>
<uri>http://www.w3.org/2001/XMLSchema</uri>
</XMLNamespaceNode>
<XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.5">
<prefix>xsi</prefix>
<uri>http://www.w3.org/2001/XMLSchema-instance</uri>
</XMLNamespaceNode>
<XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.5">
<value></value>
<name>Body</name>
<namespace>true</namespace>
<prefix>SOAP-ENV</prefix>
<uri>http://schemas.xmlsoap.org/soap/envelope/</uri>
<childNodesSize>1</childNodesSize>
<XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.5">
<value></value>
<name>addItemToCart</name>
<namespace>true</namespace>
<uri>http://bookstore.parasoft.com/</uri>
<childNodesSize>3</childNodesSize>
<XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.5">
<uri>http://bookstore.parasoft.com/</uri>
</XMLNamespaceNode>
<XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.5">
<value>0</value>
<name>itemId</name>
<childNodesSize>1</childNodesSize>
<XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.5">
</XMLNamespaceNode>
</XMLElementNode>
<XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.5">
<value>0</value>
<name>quantity</name>
<childNodesSize>1</childNodesSize>
<XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.5">
</XMLNamespaceNode>
</XMLElementNode>
</XMLElementNode>
</XMLElementNode>
</XMLElementNode>
</XMLBuilder>
</SoapCall>
</CallContainer>
<responseFormat>2</responseFormat>
<mimeType>text/plain</mimeType>
</SOAPRPCTool>
</SOAPRPCToolTest>
<SOAPRPCToolTest className="webtool.soap.SOAPRPCToolTest" version="3.4.15.2">
<DebugAssets className="webtool.test.debug.DebugAssets" version="1">
</DebugAssets>
<ReportingSettings className="webtool.test.ReportingSettings" version="1.1">
<TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3">
</TestGRSSettings>
</ReportingSettings>
<testLogic>true</testLogic>
<TestLogic className="webtool.test.logic.TestLogic" version="1.7">
<TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2">
</TestExecutionDelay>
<TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2">
</TestExecutionDelay>
<TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2">
</TestDependencyLogic>
</TestLogic>
<testID>2</testID>
<enabled>true</enabled>
<name>addNewItemToInventory</name>
<performanceGroup>1</performanceGroup>
<SOAPRPCTool className="webtool.soap.SOAPRPCTool" version="v.2.45.14">
<iconName>SOAPClient</iconName>
<name>addNewItemToInventory</name>
<hasServiceInfo>true</hasServiceInfo>
<ServiceInfo className="webtool.tool.ServiceInfo" version="1.2">
<StandardServiceDescriptor className="com.parasoft.service.catalog.impl.StandardServiceDescriptor" version="1.1">
<location>http://localhost:8080/parabank/services/store-01?wsdl</location>
</StandardServiceDescriptor>
</ServiceInfo>
<SOAPOutputProviderImpl className="webtool.soap.SOAPOutputProviderImpl" version="1.1.1">
</SOAPOutputProviderImpl>
<DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1">
</DefaultCustomConstrain>
<LocationObject className="webtool.wsdl.LocationObject" version="2">
</LocationObject>
<notes>Test client for operation "addNewItemToInventory" in "http://localhost:8080/parabank/services/store-01?wsdl".</notes>
<WsdlProperties className="webtool.soap.WsdlProperties" version="1.1">
<LocationObject className="webtool.wsdl.LocationObject" version="2">
<SOAPClient_WSDLLocation>${WSDL}</SOAPClient_WSDLLocation>
</LocationObject>
</WsdlProperties>
<DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1">
</DefaultCustomEncoding>
<EndpointProperties className="webtool.soap.EndpointProperties" version="1.4">
<DefaultEndpointType className="webtool.soap.DefaultEndpointType" version="1.1.1">
</DefaultEndpointType>
<UDDIEndpointType className="webtool.soap.UDDIEndpointType" version="1.1.1">
<SimpleValue className="webtool.data.SimpleValue" version="2.3">
</SimpleValue>
</UDDIEndpointType>
<CustomEndpointType className="webtool.soap.CustomEndpointType" version="1.1.1">
<SimpleValue className="webtool.data.SimpleValue" version="2.3">
<SOAPClient_CustomEndpoint>${ENDPOINT}</SOAPClient_CustomEndpoint>
</SimpleValue>
</CustomEndpointType>
<WsdlEndpointType className="webtool.soap.WsdlEndpointType" version="1.1.1">
<SimpleValue className="webtool.data.SimpleValue" version="2.3">
<value>http://localhost:8080/parabank/services/store-01</value>
</SimpleValue>
</WsdlEndpointType>
<mode>2</mode>
</EndpointProperties>
<DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1">
</DefaultCustomTimeout>
<DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1">
</DefaultCustomSoapVersion>
<DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1">
</DefaultCustomAttachment>
<MIMEOutputProvider className="webtool.soap.mime.MIMEOutputProvider" version="3.4.1">
<AttachmentOutputProvider className="webtool.soap.mime.AttachmentOutputProvider" version="3.2">
<menuName>Attachment</menuName>
<name>Response Attachment</name>
</AttachmentOutputProvider>
</MIMEOutputProvider>
<MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2">
<HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1">
<menuName>Transport Header</menuName>
<name>Request Transport Header</name>
</HTTPNamedToolOutputProvider>
<HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1">
<menuName>Transport Header</menuName>
<name>Response Transport Header</name>
</HTTPNamedToolOutputProvider>
<NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1">
<menuName>SOAP Envelope</menuName>
<name>Request SOAP Envelope</name>
</NamedXMLToolOutputProvider>
<HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1">
<m_name>Traffic Stream</m_name>
</HTTPOutputProvider>
<ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1">
<outputToolsSize>1</outputToolsSize>
<TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14">
<iconName>TrafficViewer</iconName>
<name>Traffic Viewer</name>
</TrafficViewer>
<name>Traffic Object</name>
</ObjectOutputProvider>
</MessagingOutputProvider>
<CallContainer className="webtool.soap.CallContainer" version="22">
<TransportProperties className="webtool.messaging.TransportProperties" version="11">
<ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1">
<size>4</size>
<SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.12">
<CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="3">
<OAuthConfiguration className="webtool.security.oauth.OAuthConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<OAuthSignRequestConfiguration className="webtool.security.oauth.OAuthSignRequestConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthSignRequestConfiguration>
<OAuthGetRequestTokenConfiguration className="webtool.security.oauth.OAuthGetRequestTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetRequestTokenConfiguration>
<OAuthGetAccessTokenConfiguration className="webtool.security.oauth.OAuthGetAccessTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetAccessTokenConfiguration>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
</OAuthConfiguration>
<method>POST</method>
<ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2">
<ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1">
</ResetExistingCookiesPreferenceProviderImpl>
<DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1">
</DefaultResetExistingCookies>
</ApplyableResetExistingCookiesConfiguration>
<ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1">
</ClientSideSSLProperties>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
<Authentication className="webtool.security.Authentication" version="2.4">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Service</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Username</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Password</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</Authentication>
</CommonHTTPProperties>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
<bool>true</bool>
</ApplyableBooleanConfiguration>
<SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<sendSoapAction>true</sendSoapAction>
</SOAPActionProperties>
</SoapClientHTTPProperties>
<SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.12">
<CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="3">
<OAuthConfiguration className="webtool.security.oauth.OAuthConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<OAuthSignRequestConfiguration className="webtool.security.oauth.OAuthSignRequestConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthSignRequestConfiguration>
<OAuthGetRequestTokenConfiguration className="webtool.security.oauth.OAuthGetRequestTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetRequestTokenConfiguration>
<OAuthGetAccessTokenConfiguration className="webtool.security.oauth.OAuthGetAccessTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetAccessTokenConfiguration>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
</OAuthConfiguration>
<method>POST</method>
<ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2">
<ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1">
</ResetExistingCookiesPreferenceProviderImpl>
<DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1">
</DefaultResetExistingCookies>
</ApplyableResetExistingCookiesConfiguration>
<ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1">
</ClientSideSSLProperties>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
<Authentication className="webtool.security.Authentication" version="2.4">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Service</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Username</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Password</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</Authentication>
</CommonHTTPProperties>
<protocol>1</protocol>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
<bool>true</bool>
</ApplyableBooleanConfiguration>
<SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<sendSoapAction>true</sendSoapAction>
</SOAPActionProperties>
</SoapClientHTTPProperties>
<SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5">
<protocol>7</protocol>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</SoapClientWcfProperties>
<SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5">
<protocol>8</protocol>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</SoapClientWcfProperties>
</ProtocolPropertiesManager>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
<inverted>true</inverted>
</ApplyableBooleanConfiguration>
</TransportProperties>
<soapCall>true</soapCall>
<SoapCall className="webtool.soap.SoapCall" version="11">
<soapMethod>true</soapMethod>
<SoapMethod className="webtool.soap.SoapMethod" version="19">
<longName>addNewItemToInventory</longName>
<faults size="1">
<fault index="0">Exception</fault>
</faults>
<portTypeNamespace>http://bookstore.parasoft.com/</portTypeNamespace>
<outputName>addNewItemToInventoryResponse</outputName>
<OperationStyleUseProperties className="webtool.soap.OperationStyleUseProperties" version="1.2">
<targetObjectURI>http://bookstore.parasoft.com/</targetObjectURI>
<encodingStyleURI></encodingStyleURI>
</OperationStyleUseProperties>
<portTypeName>Bookstore</portTypeName>
<SOAPServiceAddress className="com.parasoft.ws.wsdl.SOAPServiceAddress" version="1.5">
<portName>CartServicePort</portName>
<address>http://localhost:8080/parabank/services/store-01</address>
</SOAPServiceAddress>
<returnParam>true</returnParam>
<SoapParameter className="webtool.soap.SoapParameter" version="10">
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
<writeType>true</writeType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>1</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<localName>addNewItemToInventoryResponse</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>2</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>addNewItemToInventoryResponse</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>3</hash>
<paramTypesSize>1</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>4</hash>
<minOccurs>0</minOccurs>
<localName>book</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>5</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>book</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>6</hash>
<paramTypesSize>9</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>7</hash>
<localName>id</localName>
<IntegerType className="webtool.soap.IntegerType" version="2.2.3">
<hash>8</hash>
</IntegerType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>9</hash>
<minOccurs>0</minOccurs>
<localName>name</localName>
<StringType className="webtool.soap.StringType" version="2.5.3">
<hash>10</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>11</hash>
<minOccurs>0</minOccurs>
<localName>price</localName>
<DecimalType className="webtool.soap.DecimalType" version="2.2.3">
<hash>12</hash>
</DecimalType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>13</hash>
<localName>stockQuantity</localName>
<IntegerType className="webtool.soap.IntegerType" version="2">
<hash>8</hash>
</IntegerType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>14</hash>
<minOccurs>0</minOccurs>
<maxOccurs>-1</maxOccurs>
<nillable>true</nillable>
<localName>authors</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>10</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>15</hash>
<minOccurs>0</minOccurs>
<localName>description</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>10</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>16</hash>
<minOccurs>0</minOccurs>
<localName>ISBN</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>10</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>17</hash>
<minOccurs>0</minOccurs>
<localName>publicationDate</localName>
<DateTimeType className="webtool.soap.DateTimeType" version="2.2.3">
<hash>18</hash>
</DateTimeType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>19</hash>
<minOccurs>0</minOccurs>
<localName>publisher</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>10</hash>
</StringType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
<size>1</size>
<ComplexValue className="webtool.soap.ComplexValue" version="1.10.12">
<compositorValue>true</compositorValue>
<CompositorValue className="webtool.soap.CompositorValue" version="1.3.12">
<CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1">
<setSize>1</setSize>
<CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1">
<valuesSize>1</valuesSize>
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
</ElementValue>
</CompositorValueSet>
</CompositorValueSetCollectionSet>
</CompositorValue>
</ComplexValue>
</ElementValue>
<name>parameters</name>
</SoapParameter>
<inputName>addNewItemToInventory</inputName>
<methodName>addNewItemToInventory</methodName>
<returnType>{http://bookstore.parasoft.com/}addNewItemToInventoryResponse</returnType>
<soapParametersSize>1</soapParametersSize>
<SoapParameter className="webtool.soap.SoapParameter" version="10">
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
<writeType>true</writeType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>1</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<localName>addNewItemToInventory</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>2</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>addNewItemToInventory</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>3</hash>
<paramTypesSize>1</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>4</hash>
<minOccurs>0</minOccurs>
<localName>book</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>5</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>book</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>6</hash>
<paramTypesSize>9</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>7</hash>
<localName>id</localName>
<IntegerType className="webtool.soap.IntegerType" version="2.2.3">
<hash>8</hash>
</IntegerType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>9</hash>
<minOccurs>0</minOccurs>
<localName>name</localName>
<StringType className="webtool.soap.StringType" version="2.5.3">
<hash>10</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>11</hash>
<minOccurs>0</minOccurs>
<localName>price</localName>
<DecimalType className="webtool.soap.DecimalType" version="2.2.3">
<hash>12</hash>
</DecimalType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>13</hash>
<localName>stockQuantity</localName>
<IntegerType className="webtool.soap.IntegerType" version="2">
<hash>8</hash>
</IntegerType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>14</hash>
<minOccurs>0</minOccurs>
<maxOccurs>-1</maxOccurs>
<nillable>true</nillable>
<localName>authors</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>10</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>15</hash>
<minOccurs>0</minOccurs>
<localName>description</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>10</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>16</hash>
<minOccurs>0</minOccurs>
<localName>ISBN</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>10</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>17</hash>
<minOccurs>0</minOccurs>
<localName>publicationDate</localName>
<DateTimeType className="webtool.soap.DateTimeType" version="2.2.3">
<hash>18</hash>
</DateTimeType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>19</hash>
<minOccurs>0</minOccurs>
<localName>publisher</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>10</hash>
</StringType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
<size>1</size>
<ComplexValue className="webtool.soap.ComplexValue" version="1.10.12">
<compositorValue>true</compositorValue>
<CompositorValue className="webtool.soap.CompositorValue" version="1.3.12">
<CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1">
<setSize>1</setSize>
<CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1">
<valuesSize>1</valuesSize>
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
</ElementValue>
</CompositorValueSet>
</CompositorValueSetCollectionSet>
</CompositorValue>
</ComplexValue>
</ElementValue>
<name>parameters</name>
</SoapParameter>
</SoapMethod>
<inputMode>1</inputMode>
</SoapCall>
</CallContainer>
<responseFormat>2</responseFormat>
<mimeType>text/plain</mimeType>
</SOAPRPCTool>
</SOAPRPCToolTest>
<SOAPRPCToolTest className="webtool.soap.SOAPRPCToolTest" version="3.4.15.2">
<DebugAssets className="webtool.test.debug.DebugAssets" version="1">
</DebugAssets>
<ReportingSettings className="webtool.test.ReportingSettings" version="1.1">
<TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3">
</TestGRSSettings>
</ReportingSettings>
<testLogic>true</testLogic>
<TestLogic className="webtool.test.logic.TestLogic" version="1.7">
<TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2">
</TestExecutionDelay>
<TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2">
</TestExecutionDelay>
<TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2">
</TestDependencyLogic>
</TestLogic>
<testID>7</testID>
<enabled>true</enabled>
<name>getItemById</name>
<performanceGroup>2</performanceGroup>
<SOAPRPCTool className="webtool.soap.SOAPRPCTool" version="v.2.45.14">
<iconName>SOAPClient</iconName>
<name>getItemById</name>
<hasServiceInfo>true</hasServiceInfo>
<ServiceInfo className="webtool.tool.ServiceInfo" version="1.2">
<StandardServiceDescriptor className="com.parasoft.service.catalog.impl.StandardServiceDescriptor" version="1.1">
<location>http://localhost:8080/parabank/services/store-01?wsdl</location>
</StandardServiceDescriptor>
</ServiceInfo>
<SOAPOutputProviderImpl className="webtool.soap.SOAPOutputProviderImpl" version="1.1.1">
</SOAPOutputProviderImpl>
<DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1">
</DefaultCustomConstrain>
<LocationObject className="webtool.wsdl.LocationObject" version="2">
</LocationObject>
<notes>Test client for operation "getItemById" in "http://localhost:8080/parabank/services/store-01?wsdl".</notes>
<WsdlProperties className="webtool.soap.WsdlProperties" version="1.1">
<LocationObject className="webtool.wsdl.LocationObject" version="2">
<SOAPClient_WSDLLocation>${WSDL}</SOAPClient_WSDLLocation>
</LocationObject>
</WsdlProperties>
<DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1">
</DefaultCustomEncoding>
<EndpointProperties className="webtool.soap.EndpointProperties" version="1.4">
<DefaultEndpointType className="webtool.soap.DefaultEndpointType" version="1.1.1">
</DefaultEndpointType>
<UDDIEndpointType className="webtool.soap.UDDIEndpointType" version="1.1.1">
<SimpleValue className="webtool.data.SimpleValue" version="2.3">
</SimpleValue>
</UDDIEndpointType>
<CustomEndpointType className="webtool.soap.CustomEndpointType" version="1.1.1">
<SimpleValue className="webtool.data.SimpleValue" version="2.3">
<SOAPClient_CustomEndpoint>${ENDPOINT}</SOAPClient_CustomEndpoint>
</SimpleValue>
</CustomEndpointType>
<WsdlEndpointType className="webtool.soap.WsdlEndpointType" version="1.1.1">
<SimpleValue className="webtool.data.SimpleValue" version="2.3">
<value>http://localhost:8080/parabank/services/store-01</value>
</SimpleValue>
</WsdlEndpointType>
<mode>2</mode>
</EndpointProperties>
<DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1">
</DefaultCustomTimeout>
<DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1">
</DefaultCustomSoapVersion>
<DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1">
</DefaultCustomAttachment>
<MIMEOutputProvider className="webtool.soap.mime.MIMEOutputProvider" version="3.4.1">
<AttachmentOutputProvider className="webtool.soap.mime.AttachmentOutputProvider" version="3.2">
<menuName>Attachment</menuName>
<name>Response Attachment</name>
</AttachmentOutputProvider>
</MIMEOutputProvider>
<MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2">
<HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1">
<menuName>Transport Header</menuName>
<name>Request Transport Header</name>
</HTTPNamedToolOutputProvider>
<HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1">
<menuName>Transport Header</menuName>
<name>Response Transport Header</name>
</HTTPNamedToolOutputProvider>
<NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1">
<menuName>SOAP Envelope</menuName>
<name>Request SOAP Envelope</name>
</NamedXMLToolOutputProvider>
<HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1">
<m_name>Traffic Stream</m_name>
</HTTPOutputProvider>
<ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1">
<outputToolsSize>1</outputToolsSize>
<TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14">
<iconName>TrafficViewer</iconName>
<name>Traffic Viewer</name>
</TrafficViewer>
<name>Traffic Object</name>
</ObjectOutputProvider>
</MessagingOutputProvider>
<CallContainer className="webtool.soap.CallContainer" version="22">
<TransportProperties className="webtool.messaging.TransportProperties" version="11">
<ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1">
<size>4</size>
<SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.12">
<CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="3">
<OAuthConfiguration className="webtool.security.oauth.OAuthConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<OAuthSignRequestConfiguration className="webtool.security.oauth.OAuthSignRequestConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthSignRequestConfiguration>
<OAuthGetRequestTokenConfiguration className="webtool.security.oauth.OAuthGetRequestTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetRequestTokenConfiguration>
<OAuthGetAccessTokenConfiguration className="webtool.security.oauth.OAuthGetAccessTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetAccessTokenConfiguration>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
</OAuthConfiguration>
<method>POST</method>
<ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2">
<ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1">
</ResetExistingCookiesPreferenceProviderImpl>
<DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1">
</DefaultResetExistingCookies>
</ApplyableResetExistingCookiesConfiguration>
<ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1">
</ClientSideSSLProperties>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
<Authentication className="webtool.security.Authentication" version="2.4">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Service</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Username</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Password</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</Authentication>
</CommonHTTPProperties>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
<bool>true</bool>
</ApplyableBooleanConfiguration>
<SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<sendSoapAction>true</sendSoapAction>
</SOAPActionProperties>
</SoapClientHTTPProperties>
<SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.12">
<CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="3">
<OAuthConfiguration className="webtool.security.oauth.OAuthConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<OAuthSignRequestConfiguration className="webtool.security.oauth.OAuthSignRequestConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthSignRequestConfiguration>
<OAuthGetRequestTokenConfiguration className="webtool.security.oauth.OAuthGetRequestTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetRequestTokenConfiguration>
<OAuthGetAccessTokenConfiguration className="webtool.security.oauth.OAuthGetAccessTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetAccessTokenConfiguration>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
</OAuthConfiguration>
<method>POST</method>
<ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2">
<ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1">
</ResetExistingCookiesPreferenceProviderImpl>
<DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1">
</DefaultResetExistingCookies>
</ApplyableResetExistingCookiesConfiguration>
<ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1">
</ClientSideSSLProperties>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
<Authentication className="webtool.security.Authentication" version="2.4">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Service</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Username</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Password</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</Authentication>
</CommonHTTPProperties>
<protocol>1</protocol>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
<bool>true</bool>
</ApplyableBooleanConfiguration>
<SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<sendSoapAction>true</sendSoapAction>
</SOAPActionProperties>
</SoapClientHTTPProperties>
<SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5">
<protocol>7</protocol>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</SoapClientWcfProperties>
<SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5">
<protocol>8</protocol>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</SoapClientWcfProperties>
</ProtocolPropertiesManager>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
<inverted>true</inverted>
</ApplyableBooleanConfiguration>
</TransportProperties>
<soapCall>true</soapCall>
<SoapCall className="webtool.soap.SoapCall" version="11">
<soapMethod>true</soapMethod>
<SoapMethod className="webtool.soap.SoapMethod" version="19">
<longName>getItemById</longName>
<faults size="1">
<fault index="0">Exception</fault>
</faults>
<portTypeNamespace>http://bookstore.parasoft.com/</portTypeNamespace>
<outputName>getItemByIdResponse</outputName>
<OperationStyleUseProperties className="webtool.soap.OperationStyleUseProperties" version="1.2">
<targetObjectURI>http://bookstore.parasoft.com/</targetObjectURI>
<encodingStyleURI></encodingStyleURI>
</OperationStyleUseProperties>
<portTypeName>Bookstore</portTypeName>
<SOAPServiceAddress className="com.parasoft.ws.wsdl.SOAPServiceAddress" version="1.5">
<portName>CartServicePort</portName>
<address>http://localhost:8080/parabank/services/store-01</address>
</SOAPServiceAddress>
<returnParam>true</returnParam>
<SoapParameter className="webtool.soap.SoapParameter" version="10">
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
<writeType>true</writeType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>1</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<localName>getItemByIdResponse</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>2</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>getItemByIdResponse</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>3</hash>
<paramTypesSize>1</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>4</hash>
<minOccurs>0</minOccurs>
<localName>book</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>5</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>book</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>6</hash>
<paramTypesSize>9</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>7</hash>
<localName>id</localName>
<IntegerType className="webtool.soap.IntegerType" version="2.2.3">
<hash>8</hash>
</IntegerType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>9</hash>
<minOccurs>0</minOccurs>
<localName>name</localName>
<StringType className="webtool.soap.StringType" version="2.5.3">
<hash>10</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>11</hash>
<minOccurs>0</minOccurs>
<localName>price</localName>
<DecimalType className="webtool.soap.DecimalType" version="2.2.3">
<hash>12</hash>
</DecimalType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>13</hash>
<localName>stockQuantity</localName>
<IntegerType className="webtool.soap.IntegerType" version="2">
<hash>8</hash>
</IntegerType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>14</hash>
<minOccurs>0</minOccurs>
<maxOccurs>-1</maxOccurs>
<nillable>true</nillable>
<localName>authors</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>10</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>15</hash>
<minOccurs>0</minOccurs>
<localName>description</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>10</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>16</hash>
<minOccurs>0</minOccurs>
<localName>ISBN</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>10</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>17</hash>
<minOccurs>0</minOccurs>
<localName>publicationDate</localName>
<DateTimeType className="webtool.soap.DateTimeType" version="2.2.3">
<hash>18</hash>
</DateTimeType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>19</hash>
<minOccurs>0</minOccurs>
<localName>publisher</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>10</hash>
</StringType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
<size>1</size>
<ComplexValue className="webtool.soap.ComplexValue" version="1.10.12">
<compositorValue>true</compositorValue>
<CompositorValue className="webtool.soap.CompositorValue" version="1.3.12">
<CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1">
<setSize>1</setSize>
<CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1">
<valuesSize>1</valuesSize>
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
</ElementValue>
</CompositorValueSet>
</CompositorValueSetCollectionSet>
</CompositorValue>
</ComplexValue>
</ElementValue>
<name>parameters</name>
</SoapParameter>
<inputName>getItemById</inputName>
<methodName>getItemById</methodName>
<returnType>{http://bookstore.parasoft.com/}getItemByIdResponse</returnType>
<soapParametersSize>1</soapParametersSize>
<SoapParameter className="webtool.soap.SoapParameter" version="10">
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
<writeType>true</writeType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>1</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<localName>getItemById</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>2</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>getItemById</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>3</hash>
<paramTypesSize>1</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>4</hash>
<localName>id</localName>
<IntegerType className="webtool.soap.IntegerType" version="2.2.3">
<hash>5</hash>
</IntegerType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
<size>1</size>
<ComplexValue className="webtool.soap.ComplexValue" version="1.10.12">
<compositorValue>true</compositorValue>
<CompositorValue className="webtool.soap.CompositorValue" version="1.3.12">
<CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1">
<setSize>1</setSize>
<CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1">
<valuesSize>1</valuesSize>
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
<size>1</size>
<IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.12">
<value>0</value>
</IntegerValue>
</ElementValue>
</CompositorValueSet>
</CompositorValueSetCollectionSet>
</CompositorValue>
</ComplexValue>
</ElementValue>
<name>parameters</name>
</SoapParameter>
</SoapMethod>
<inputMode>1</inputMode>
</SoapCall>
</CallContainer>
<responseFormat>2</responseFormat>
<mimeType>text/plain</mimeType>
</SOAPRPCTool>
</SOAPRPCToolTest>
<SOAPRPCToolTest className="webtool.soap.SOAPRPCToolTest" version="3.4.15.2">
<DebugAssets className="webtool.test.debug.DebugAssets" version="1">
</DebugAssets>
<ReportingSettings className="webtool.test.ReportingSettings" version="1.1">
<TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3">
</TestGRSSettings>
</ReportingSettings>
<testLogic>true</testLogic>
<TestLogic className="webtool.test.logic.TestLogic" version="1.7">
<TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2">
</TestExecutionDelay>
<TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2">
</TestExecutionDelay>
<TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2">
</TestDependencyLogic>
</TestLogic>
<testID>6</testID>
<enabled>true</enabled>
<name>getItemByTitle</name>
<performanceGroup>3</performanceGroup>
<SOAPRPCTool className="webtool.soap.SOAPRPCTool" version="v.2.45.14">
<iconName>SOAPClient</iconName>
<name>getItemByTitle</name>
<hasServiceInfo>true</hasServiceInfo>
<ServiceInfo className="webtool.tool.ServiceInfo" version="1.2">
<StandardServiceDescriptor className="com.parasoft.service.catalog.impl.StandardServiceDescriptor" version="1.1">
<location>http://localhost:8080/parabank/services/store-01?wsdl</location>
</StandardServiceDescriptor>
</ServiceInfo>
<SOAPOutputProviderImpl className="webtool.soap.SOAPOutputProviderImpl" version="1.1.1">
</SOAPOutputProviderImpl>
<DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1">
</DefaultCustomConstrain>
<LocationObject className="webtool.wsdl.LocationObject" version="2">
</LocationObject>
<notes>Test client for operation "getItemByTitle" in "http://localhost:8080/parabank/services/store-01?wsdl".</notes>
<WsdlProperties className="webtool.soap.WsdlProperties" version="1.1">
<LocationObject className="webtool.wsdl.LocationObject" version="2">
<SOAPClient_WSDLLocation>${WSDL}</SOAPClient_WSDLLocation>
</LocationObject>
</WsdlProperties>
<DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1">
</DefaultCustomEncoding>
<EndpointProperties className="webtool.soap.EndpointProperties" version="1.4">
<DefaultEndpointType className="webtool.soap.DefaultEndpointType" version="1.1.1">
</DefaultEndpointType>
<UDDIEndpointType className="webtool.soap.UDDIEndpointType" version="1.1.1">
<SimpleValue className="webtool.data.SimpleValue" version="2.3">
</SimpleValue>
</UDDIEndpointType>
<CustomEndpointType className="webtool.soap.CustomEndpointType" version="1.1.1">
<SimpleValue className="webtool.data.SimpleValue" version="2.3">
<SOAPClient_CustomEndpoint>${ENDPOINT}</SOAPClient_CustomEndpoint>
</SimpleValue>
</CustomEndpointType>
<WsdlEndpointType className="webtool.soap.WsdlEndpointType" version="1.1.1">
<SimpleValue className="webtool.data.SimpleValue" version="2.3">
<value>http://localhost:8080/parabank/services/store-01</value>
</SimpleValue>
</WsdlEndpointType>
<mode>2</mode>
</EndpointProperties>
<DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1">
</DefaultCustomTimeout>
<DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1">
</DefaultCustomSoapVersion>
<DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1">
</DefaultCustomAttachment>
<MIMEOutputProvider className="webtool.soap.mime.MIMEOutputProvider" version="3.4.1">
<AttachmentOutputProvider className="webtool.soap.mime.AttachmentOutputProvider" version="3.2">
<menuName>Attachment</menuName>
<name>Response Attachment</name>
</AttachmentOutputProvider>
</MIMEOutputProvider>
<MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2">
<HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1">
<menuName>Transport Header</menuName>
<name>Request Transport Header</name>
</HTTPNamedToolOutputProvider>
<HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1">
<menuName>Transport Header</menuName>
<name>Response Transport Header</name>
</HTTPNamedToolOutputProvider>
<NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1">
<menuName>SOAP Envelope</menuName>
<name>Request SOAP Envelope</name>
</NamedXMLToolOutputProvider>
<HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1">
<m_name>Traffic Stream</m_name>
</HTTPOutputProvider>
<ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1">
<outputToolsSize>1</outputToolsSize>
<TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14">
<iconName>TrafficViewer</iconName>
<name>Traffic Viewer</name>
</TrafficViewer>
<name>Traffic Object</name>
</ObjectOutputProvider>
</MessagingOutputProvider>
<CallContainer className="webtool.soap.CallContainer" version="22">
<TransportProperties className="webtool.messaging.TransportProperties" version="11">
<ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1">
<size>4</size>
<SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.12">
<CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="3">
<OAuthConfiguration className="webtool.security.oauth.OAuthConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<OAuthSignRequestConfiguration className="webtool.security.oauth.OAuthSignRequestConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthSignRequestConfiguration>
<OAuthGetRequestTokenConfiguration className="webtool.security.oauth.OAuthGetRequestTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetRequestTokenConfiguration>
<OAuthGetAccessTokenConfiguration className="webtool.security.oauth.OAuthGetAccessTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetAccessTokenConfiguration>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
</OAuthConfiguration>
<method>POST</method>
<ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2">
<ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1">
</ResetExistingCookiesPreferenceProviderImpl>
<DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1">
</DefaultResetExistingCookies>
</ApplyableResetExistingCookiesConfiguration>
<ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1">
</ClientSideSSLProperties>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
<Authentication className="webtool.security.Authentication" version="2.4">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Service</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Username</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Password</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</Authentication>
</CommonHTTPProperties>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
<bool>true</bool>
</ApplyableBooleanConfiguration>
<SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<sendSoapAction>true</sendSoapAction>
</SOAPActionProperties>
</SoapClientHTTPProperties>
<SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.12">
<CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="3">
<OAuthConfiguration className="webtool.security.oauth.OAuthConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<OAuthSignRequestConfiguration className="webtool.security.oauth.OAuthSignRequestConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthSignRequestConfiguration>
<OAuthGetRequestTokenConfiguration className="webtool.security.oauth.OAuthGetRequestTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetRequestTokenConfiguration>
<OAuthGetAccessTokenConfiguration className="webtool.security.oauth.OAuthGetAccessTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetAccessTokenConfiguration>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
</OAuthConfiguration>
<method>POST</method>
<ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2">
<ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1">
</ResetExistingCookiesPreferenceProviderImpl>
<DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1">
</DefaultResetExistingCookies>
</ApplyableResetExistingCookiesConfiguration>
<ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1">
</ClientSideSSLProperties>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
<Authentication className="webtool.security.Authentication" version="2.4">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Service</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Username</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Password</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</Authentication>
</CommonHTTPProperties>
<protocol>1</protocol>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
<bool>true</bool>
</ApplyableBooleanConfiguration>
<SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<sendSoapAction>true</sendSoapAction>
</SOAPActionProperties>
</SoapClientHTTPProperties>
<SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5">
<protocol>7</protocol>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</SoapClientWcfProperties>
<SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5">
<protocol>8</protocol>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</SoapClientWcfProperties>
</ProtocolPropertiesManager>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
<inverted>true</inverted>
</ApplyableBooleanConfiguration>
</TransportProperties>
<soapCall>true</soapCall>
<SoapCall className="webtool.soap.SoapCall" version="11">
<soapMethod>true</soapMethod>
<SoapMethod className="webtool.soap.SoapMethod" version="19">
<longName>getItemByTitle</longName>
<faults size="1">
<fault index="0">Exception</fault>
</faults>
<portTypeNamespace>http://bookstore.parasoft.com/</portTypeNamespace>
<outputName>getItemByTitleResponse</outputName>
<OperationStyleUseProperties className="webtool.soap.OperationStyleUseProperties" version="1.2">
<targetObjectURI>http://bookstore.parasoft.com/</targetObjectURI>
<encodingStyleURI></encodingStyleURI>
</OperationStyleUseProperties>
<portTypeName>Bookstore</portTypeName>
<SOAPServiceAddress className="com.parasoft.ws.wsdl.SOAPServiceAddress" version="1.5">
<portName>CartServicePort</portName>
<address>http://localhost:8080/parabank/services/store-01</address>
</SOAPServiceAddress>
<returnParam>true</returnParam>
<SoapParameter className="webtool.soap.SoapParameter" version="10">
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
<writeType>true</writeType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>1</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<localName>getItemByTitleResponse</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>2</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>getItemByTitleResponse</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>3</hash>
<paramTypesSize>1</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>4</hash>
<minOccurs>0</minOccurs>
<maxOccurs>-1</maxOccurs>
<localName>book</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>5</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>book</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>6</hash>
<paramTypesSize>9</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>7</hash>
<localName>id</localName>
<IntegerType className="webtool.soap.IntegerType" version="2.2.3">
<hash>8</hash>
</IntegerType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>9</hash>
<minOccurs>0</minOccurs>
<localName>name</localName>
<StringType className="webtool.soap.StringType" version="2.5.3">
<hash>10</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>11</hash>
<minOccurs>0</minOccurs>
<localName>price</localName>
<DecimalType className="webtool.soap.DecimalType" version="2.2.3">
<hash>12</hash>
</DecimalType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>13</hash>
<localName>stockQuantity</localName>
<IntegerType className="webtool.soap.IntegerType" version="2">
<hash>8</hash>
</IntegerType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>14</hash>
<minOccurs>0</minOccurs>
<maxOccurs>-1</maxOccurs>
<nillable>true</nillable>
<localName>authors</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>10</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>15</hash>
<minOccurs>0</minOccurs>
<localName>description</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>10</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>16</hash>
<minOccurs>0</minOccurs>
<localName>ISBN</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>10</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>17</hash>
<minOccurs>0</minOccurs>
<localName>publicationDate</localName>
<DateTimeType className="webtool.soap.DateTimeType" version="2.2.3">
<hash>18</hash>
</DateTimeType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>19</hash>
<minOccurs>0</minOccurs>
<localName>publisher</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>10</hash>
</StringType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
<size>1</size>
<ComplexValue className="webtool.soap.ComplexValue" version="1.10.12">
<compositorValue>true</compositorValue>
<CompositorValue className="webtool.soap.CompositorValue" version="1.3.12">
<CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1">
<setSize>1</setSize>
<CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1">
<valuesSize>1</valuesSize>
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
</ElementValue>
</CompositorValueSet>
</CompositorValueSetCollectionSet>
</CompositorValue>
</ComplexValue>
</ElementValue>
<name>parameters</name>
</SoapParameter>
<inputName>getItemByTitle</inputName>
<methodName>getItemByTitle</methodName>
<returnType>{http://bookstore.parasoft.com/}getItemByTitleResponse</returnType>
<soapParametersSize>1</soapParametersSize>
<SoapParameter className="webtool.soap.SoapParameter" version="10">
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
<writeType>true</writeType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>1</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<localName>getItemByTitle</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>2</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>getItemByTitle</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>3</hash>
<paramTypesSize>1</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>4</hash>
<minOccurs>0</minOccurs>
<localName>titleKeyword</localName>
<StringType className="webtool.soap.StringType" version="2.5.3">
<hash>5</hash>
</StringType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
<size>1</size>
<ComplexValue className="webtool.soap.ComplexValue" version="1.10.12">
<compositorValue>true</compositorValue>
<CompositorValue className="webtool.soap.CompositorValue" version="1.3.12">
<CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1">
<setSize>1</setSize>
<CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1">
<valuesSize>1</valuesSize>
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
</ElementValue>
</CompositorValueSet>
</CompositorValueSetCollectionSet>
</CompositorValue>
</ComplexValue>
</ElementValue>
<name>parameters</name>
</SoapParameter>
</SoapMethod>
<inputMode>1</inputMode>
</SoapCall>
</CallContainer>
<responseFormat>2</responseFormat>
<mimeType>text/plain</mimeType>
</SOAPRPCTool>
</SOAPRPCToolTest>
<SOAPRPCToolTest className="webtool.soap.SOAPRPCToolTest" version="3.4.15.2">
<DebugAssets className="webtool.test.debug.DebugAssets" version="1">
</DebugAssets>
<ReportingSettings className="webtool.test.ReportingSettings" version="1.1">
<TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3">
</TestGRSSettings>
</ReportingSettings>
<testLogic>true</testLogic>
<TestLogic className="webtool.test.logic.TestLogic" version="1.7">
<TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2">
</TestExecutionDelay>
<TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2">
</TestExecutionDelay>
<TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2">
</TestDependencyLogic>
</TestLogic>
<testID>5</testID>
<enabled>true</enabled>
<name>getItemsInCart</name>
<performanceGroup>4</performanceGroup>
<SOAPRPCTool className="webtool.soap.SOAPRPCTool" version="v.2.45.14">
<iconName>SOAPClient</iconName>
<name>getItemsInCart</name>
<hasServiceInfo>true</hasServiceInfo>
<ServiceInfo className="webtool.tool.ServiceInfo" version="1.2">
<StandardServiceDescriptor className="com.parasoft.service.catalog.impl.StandardServiceDescriptor" version="1.1">
<location>http://localhost:8080/parabank/services/store-01?wsdl</location>
</StandardServiceDescriptor>
</ServiceInfo>
<SOAPOutputProviderImpl className="webtool.soap.SOAPOutputProviderImpl" version="1.1.1">
</SOAPOutputProviderImpl>
<DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1">
</DefaultCustomConstrain>
<LocationObject className="webtool.wsdl.LocationObject" version="2">
</LocationObject>
<notes>Test client for operation "getItemsInCart" in "http://localhost:8080/parabank/services/store-01?wsdl".</notes>
<WsdlProperties className="webtool.soap.WsdlProperties" version="1.1">
<LocationObject className="webtool.wsdl.LocationObject" version="2">
<SOAPClient_WSDLLocation>${WSDL}</SOAPClient_WSDLLocation>
</LocationObject>
</WsdlProperties>
<DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1">
</DefaultCustomEncoding>
<EndpointProperties className="webtool.soap.EndpointProperties" version="1.4">
<DefaultEndpointType className="webtool.soap.DefaultEndpointType" version="1.1.1">
</DefaultEndpointType>
<UDDIEndpointType className="webtool.soap.UDDIEndpointType" version="1.1.1">
<SimpleValue className="webtool.data.SimpleValue" version="2.3">
</SimpleValue>
</UDDIEndpointType>
<CustomEndpointType className="webtool.soap.CustomEndpointType" version="1.1.1">
<SimpleValue className="webtool.data.SimpleValue" version="2.3">
<SOAPClient_CustomEndpoint>${ENDPOINT}</SOAPClient_CustomEndpoint>
</SimpleValue>
</CustomEndpointType>
<WsdlEndpointType className="webtool.soap.WsdlEndpointType" version="1.1.1">
<SimpleValue className="webtool.data.SimpleValue" version="2.3">
<value>http://localhost:8080/parabank/services/store-01</value>
</SimpleValue>
</WsdlEndpointType>
<mode>2</mode>
</EndpointProperties>
<DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1">
</DefaultCustomTimeout>
<DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1">
</DefaultCustomSoapVersion>
<DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1">
</DefaultCustomAttachment>
<MIMEOutputProvider className="webtool.soap.mime.MIMEOutputProvider" version="3.4.1">
<AttachmentOutputProvider className="webtool.soap.mime.AttachmentOutputProvider" version="3.2">
<menuName>Attachment</menuName>
<name>Response Attachment</name>
</AttachmentOutputProvider>
</MIMEOutputProvider>
<MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2">
<HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1">
<menuName>Transport Header</menuName>
<name>Request Transport Header</name>
</HTTPNamedToolOutputProvider>
<HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1">
<menuName>Transport Header</menuName>
<name>Response Transport Header</name>
</HTTPNamedToolOutputProvider>
<NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1">
<menuName>SOAP Envelope</menuName>
<name>Request SOAP Envelope</name>
</NamedXMLToolOutputProvider>
<HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1">
<m_name>Traffic Stream</m_name>
</HTTPOutputProvider>
<ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1">
<outputToolsSize>1</outputToolsSize>
<TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14">
<iconName>TrafficViewer</iconName>
<name>Traffic Viewer</name>
</TrafficViewer>
<name>Traffic Object</name>
</ObjectOutputProvider>
</MessagingOutputProvider>
<CallContainer className="webtool.soap.CallContainer" version="22">
<TransportProperties className="webtool.messaging.TransportProperties" version="11">
<ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1">
<size>4</size>
<SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.12">
<CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="3">
<OAuthConfiguration className="webtool.security.oauth.OAuthConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<OAuthSignRequestConfiguration className="webtool.security.oauth.OAuthSignRequestConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthSignRequestConfiguration>
<OAuthGetRequestTokenConfiguration className="webtool.security.oauth.OAuthGetRequestTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetRequestTokenConfiguration>
<OAuthGetAccessTokenConfiguration className="webtool.security.oauth.OAuthGetAccessTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetAccessTokenConfiguration>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
</OAuthConfiguration>
<method>POST</method>
<ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2">
<ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1">
</ResetExistingCookiesPreferenceProviderImpl>
<DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1">
</DefaultResetExistingCookies>
</ApplyableResetExistingCookiesConfiguration>
<ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1">
</ClientSideSSLProperties>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
<Authentication className="webtool.security.Authentication" version="2.4">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Service</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Username</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Password</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</Authentication>
</CommonHTTPProperties>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
<bool>true</bool>
</ApplyableBooleanConfiguration>
<SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<sendSoapAction>true</sendSoapAction>
</SOAPActionProperties>
</SoapClientHTTPProperties>
<SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.12">
<CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="3">
<OAuthConfiguration className="webtool.security.oauth.OAuthConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<OAuthSignRequestConfiguration className="webtool.security.oauth.OAuthSignRequestConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthSignRequestConfiguration>
<OAuthGetRequestTokenConfiguration className="webtool.security.oauth.OAuthGetRequestTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetRequestTokenConfiguration>
<OAuthGetAccessTokenConfiguration className="webtool.security.oauth.OAuthGetAccessTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetAccessTokenConfiguration>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
</OAuthConfiguration>
<method>POST</method>
<ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2">
<ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1">
</ResetExistingCookiesPreferenceProviderImpl>
<DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1">
</DefaultResetExistingCookies>
</ApplyableResetExistingCookiesConfiguration>
<ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1">
</ClientSideSSLProperties>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
<Authentication className="webtool.security.Authentication" version="2.4">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Service</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Username</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Password</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</Authentication>
</CommonHTTPProperties>
<protocol>1</protocol>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
<bool>true</bool>
</ApplyableBooleanConfiguration>
<SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<sendSoapAction>true</sendSoapAction>
</SOAPActionProperties>
</SoapClientHTTPProperties>
<SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5">
<protocol>7</protocol>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</SoapClientWcfProperties>
<SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5">
<protocol>8</protocol>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</SoapClientWcfProperties>
</ProtocolPropertiesManager>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
<inverted>true</inverted>
</ApplyableBooleanConfiguration>
</TransportProperties>
<soapCall>true</soapCall>
<SoapCall className="webtool.soap.SoapCall" version="11">
<soapMethod>true</soapMethod>
<SoapMethod className="webtool.soap.SoapMethod" version="19">
<longName>getItemsInCart</longName>
<faults size="1">
<fault index="0">Exception</fault>
</faults>
<portTypeNamespace>http://bookstore.parasoft.com/</portTypeNamespace>
<outputName>getItemsInCartResponse</outputName>
<OperationStyleUseProperties className="webtool.soap.OperationStyleUseProperties" version="1.2">
<targetObjectURI>http://bookstore.parasoft.com/</targetObjectURI>
<encodingStyleURI></encodingStyleURI>
</OperationStyleUseProperties>
<portTypeName>Bookstore</portTypeName>
<SOAPServiceAddress className="com.parasoft.ws.wsdl.SOAPServiceAddress" version="1.5">
<portName>CartServicePort</portName>
<address>http://localhost:8080/parabank/services/store-01</address>
</SOAPServiceAddress>
<returnParam>true</returnParam>
<SoapParameter className="webtool.soap.SoapParameter" version="10">
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
<writeType>true</writeType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>1</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<localName>getItemsInCartResponse</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>2</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>getItemsInCartResponse</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>3</hash>
<paramTypesSize>1</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>4</hash>
<minOccurs>0</minOccurs>
<localName>cart</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>5</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>cartManager</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>6</hash>
<paramTypesSize>2</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>7</hash>
<localName>cartId</localName>
<IntegerType className="webtool.soap.IntegerType" version="2.2.3">
<hash>8</hash>
</IntegerType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>9</hash>
<minOccurs>0</minOccurs>
<maxOccurs>-1</maxOccurs>
<nillable>true</nillable>
<localName>item</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>10</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>order</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>11</hash>
<paramTypesSize>2</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>12</hash>
<minOccurs>0</minOccurs>
<localName>book</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>13</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>book</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>14</hash>
<paramTypesSize>9</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>15</hash>
<localName>id</localName>
<IntegerType className="webtool.soap.IntegerType" version="2">
<hash>8</hash>
</IntegerType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>16</hash>
<minOccurs>0</minOccurs>
<localName>name</localName>
<StringType className="webtool.soap.StringType" version="2.5.3">
<hash>17</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>18</hash>
<minOccurs>0</minOccurs>
<localName>price</localName>
<DecimalType className="webtool.soap.DecimalType" version="2.2.3">
<hash>19</hash>
</DecimalType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>20</hash>
<localName>stockQuantity</localName>
<IntegerType className="webtool.soap.IntegerType" version="2">
<hash>8</hash>
</IntegerType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>21</hash>
<minOccurs>0</minOccurs>
<maxOccurs>-1</maxOccurs>
<nillable>true</nillable>
<localName>authors</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>17</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>22</hash>
<minOccurs>0</minOccurs>
<localName>description</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>17</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>23</hash>
<minOccurs>0</minOccurs>
<localName>ISBN</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>17</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>24</hash>
<minOccurs>0</minOccurs>
<localName>publicationDate</localName>
<DateTimeType className="webtool.soap.DateTimeType" version="2.2.3">
<hash>25</hash>
</DateTimeType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>26</hash>
<minOccurs>0</minOccurs>
<localName>publisher</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>17</hash>
</StringType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>27</hash>
<localName>quantity</localName>
<IntegerType className="webtool.soap.IntegerType" version="2">
<hash>8</hash>
</IntegerType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
<size>1</size>
<ComplexValue className="webtool.soap.ComplexValue" version="1.10.12">
<compositorValue>true</compositorValue>
<CompositorValue className="webtool.soap.CompositorValue" version="1.3.12">
<CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1">
<setSize>1</setSize>
<CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1">
<valuesSize>1</valuesSize>
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
</ElementValue>
</CompositorValueSet>
</CompositorValueSetCollectionSet>
</CompositorValue>
</ComplexValue>
</ElementValue>
<name>parameters</name>
</SoapParameter>
<inputName>getItemsInCart</inputName>
<methodName>getItemsInCart</methodName>
<returnType>{http://bookstore.parasoft.com/}getItemsInCartResponse</returnType>
<soapParametersSize>1</soapParametersSize>
<SoapParameter className="webtool.soap.SoapParameter" version="10">
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
<writeType>true</writeType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>1</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<localName>getItemsInCart</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>2</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>getItemsInCart</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>3</hash>
<paramTypesSize>1</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>4</hash>
<localName>cartId</localName>
<IntegerType className="webtool.soap.IntegerType" version="2.2.3">
<hash>5</hash>
</IntegerType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
<size>1</size>
<ComplexValue className="webtool.soap.ComplexValue" version="1.10.12">
<compositorValue>true</compositorValue>
<CompositorValue className="webtool.soap.CompositorValue" version="1.3.12">
<CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1">
<setSize>1</setSize>
<CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1">
<valuesSize>1</valuesSize>
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
<size>1</size>
<IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.12">
<value>0</value>
</IntegerValue>
</ElementValue>
</CompositorValueSet>
</CompositorValueSetCollectionSet>
</CompositorValue>
</ComplexValue>
</ElementValue>
<name>parameters</name>
</SoapParameter>
</SoapMethod>
<inputMode>1</inputMode>
</SoapCall>
</CallContainer>
<responseFormat>2</responseFormat>
<mimeType>text/plain</mimeType>
</SOAPRPCTool>
</SOAPRPCToolTest>
<SOAPRPCToolTest className="webtool.soap.SOAPRPCToolTest" version="3.4.15.2">
<DebugAssets className="webtool.test.debug.DebugAssets" version="1">
</DebugAssets>
<ReportingSettings className="webtool.test.ReportingSettings" version="1.1">
<TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3">
</TestGRSSettings>
</ReportingSettings>
<testLogic>true</testLogic>
<TestLogic className="webtool.test.logic.TestLogic" version="1.7">
<TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2">
</TestExecutionDelay>
<TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2">
</TestExecutionDelay>
<TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2">
</TestDependencyLogic>
</TestLogic>
<testID>8</testID>
<enabled>true</enabled>
<name>submitOrder</name>
<performanceGroup>5</performanceGroup>
<SOAPRPCTool className="webtool.soap.SOAPRPCTool" version="v.2.45.14">
<iconName>SOAPClient</iconName>
<name>submitOrder</name>
<hasServiceInfo>true</hasServiceInfo>
<ServiceInfo className="webtool.tool.ServiceInfo" version="1.2">
<StandardServiceDescriptor className="com.parasoft.service.catalog.impl.StandardServiceDescriptor" version="1.1">
<location>http://localhost:8080/parabank/services/store-01?wsdl</location>
</StandardServiceDescriptor>
</ServiceInfo>
<SOAPOutputProviderImpl className="webtool.soap.SOAPOutputProviderImpl" version="1.1.1">
</SOAPOutputProviderImpl>
<DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1">
</DefaultCustomConstrain>
<LocationObject className="webtool.wsdl.LocationObject" version="2">
</LocationObject>
<notes>Test client for operation "submitOrder" in "http://localhost:8080/parabank/services/store-01?wsdl".</notes>
<WsdlProperties className="webtool.soap.WsdlProperties" version="1.1">
<LocationObject className="webtool.wsdl.LocationObject" version="2">
<SOAPClient_WSDLLocation>${WSDL}</SOAPClient_WSDLLocation>
</LocationObject>
</WsdlProperties>
<DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1">
</DefaultCustomEncoding>
<EndpointProperties className="webtool.soap.EndpointProperties" version="1.4">
<DefaultEndpointType className="webtool.soap.DefaultEndpointType" version="1.1.1">
</DefaultEndpointType>
<UDDIEndpointType className="webtool.soap.UDDIEndpointType" version="1.1.1">
<SimpleValue className="webtool.data.SimpleValue" version="2.3">
</SimpleValue>
</UDDIEndpointType>
<CustomEndpointType className="webtool.soap.CustomEndpointType" version="1.1.1">
<SimpleValue className="webtool.data.SimpleValue" version="2.3">
<SOAPClient_CustomEndpoint>${ENDPOINT}</SOAPClient_CustomEndpoint>
</SimpleValue>
</CustomEndpointType>
<WsdlEndpointType className="webtool.soap.WsdlEndpointType" version="1.1.1">
<SimpleValue className="webtool.data.SimpleValue" version="2.3">
<value>http://localhost:8080/parabank/services/store-01</value>
</SimpleValue>
</WsdlEndpointType>
<mode>2</mode>
</EndpointProperties>
<DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1">
</DefaultCustomTimeout>
<DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1">
</DefaultCustomSoapVersion>
<DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1">
</DefaultCustomAttachment>
<MIMEOutputProvider className="webtool.soap.mime.MIMEOutputProvider" version="3.4.1">
<AttachmentOutputProvider className="webtool.soap.mime.AttachmentOutputProvider" version="3.2">
<menuName>Attachment</menuName>
<name>Response Attachment</name>
</AttachmentOutputProvider>
</MIMEOutputProvider>
<MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2">
<HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1">
<menuName>Transport Header</menuName>
<name>Request Transport Header</name>
</HTTPNamedToolOutputProvider>
<HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1">
<menuName>Transport Header</menuName>
<name>Response Transport Header</name>
</HTTPNamedToolOutputProvider>
<NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1">
<menuName>SOAP Envelope</menuName>
<name>Request SOAP Envelope</name>
</NamedXMLToolOutputProvider>
<HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1">
<m_name>Traffic Stream</m_name>
</HTTPOutputProvider>
<ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1">
<outputToolsSize>1</outputToolsSize>
<TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14">
<iconName>TrafficViewer</iconName>
<name>Traffic Viewer</name>
</TrafficViewer>
<name>Traffic Object</name>
</ObjectOutputProvider>
</MessagingOutputProvider>
<CallContainer className="webtool.soap.CallContainer" version="22">
<TransportProperties className="webtool.messaging.TransportProperties" version="11">
<ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1">
<size>4</size>
<SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.12">
<CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="3">
<OAuthConfiguration className="webtool.security.oauth.OAuthConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<OAuthSignRequestConfiguration className="webtool.security.oauth.OAuthSignRequestConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthSignRequestConfiguration>
<OAuthGetRequestTokenConfiguration className="webtool.security.oauth.OAuthGetRequestTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetRequestTokenConfiguration>
<OAuthGetAccessTokenConfiguration className="webtool.security.oauth.OAuthGetAccessTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetAccessTokenConfiguration>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
</OAuthConfiguration>
<method>POST</method>
<ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2">
<ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1">
</ResetExistingCookiesPreferenceProviderImpl>
<DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1">
</DefaultResetExistingCookies>
</ApplyableResetExistingCookiesConfiguration>
<ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1">
</ClientSideSSLProperties>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
<Authentication className="webtool.security.Authentication" version="2.4">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Service</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Username</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Password</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</Authentication>
</CommonHTTPProperties>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
<bool>true</bool>
</ApplyableBooleanConfiguration>
<SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<sendSoapAction>true</sendSoapAction>
</SOAPActionProperties>
</SoapClientHTTPProperties>
<SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.12">
<CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="3">
<OAuthConfiguration className="webtool.security.oauth.OAuthConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<OAuthSignRequestConfiguration className="webtool.security.oauth.OAuthSignRequestConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthSignRequestConfiguration>
<OAuthGetRequestTokenConfiguration className="webtool.security.oauth.OAuthGetRequestTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetRequestTokenConfiguration>
<OAuthGetAccessTokenConfiguration className="webtool.security.oauth.OAuthGetAccessTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetAccessTokenConfiguration>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
</OAuthConfiguration>
<method>POST</method>
<ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2">
<ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1">
</ResetExistingCookiesPreferenceProviderImpl>
<DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1">
</DefaultResetExistingCookies>
</ApplyableResetExistingCookiesConfiguration>
<ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1">
</ClientSideSSLProperties>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
<Authentication className="webtool.security.Authentication" version="2.4">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Service</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Username</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Password</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</Authentication>
</CommonHTTPProperties>
<protocol>1</protocol>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
<bool>true</bool>
</ApplyableBooleanConfiguration>
<SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<sendSoapAction>true</sendSoapAction>
</SOAPActionProperties>
</SoapClientHTTPProperties>
<SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5">
<protocol>7</protocol>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</SoapClientWcfProperties>
<SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5">
<protocol>8</protocol>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</SoapClientWcfProperties>
</ProtocolPropertiesManager>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
<inverted>true</inverted>
</ApplyableBooleanConfiguration>
</TransportProperties>
<soapCall>true</soapCall>
<SoapCall className="webtool.soap.SoapCall" version="11">
<soapMethod>true</soapMethod>
<SoapMethod className="webtool.soap.SoapMethod" version="19">
<longName>submitOrder</longName>
<portTypeNamespace>http://bookstore.parasoft.com/</portTypeNamespace>
<outputName>submitOrderResponse</outputName>
<OperationStyleUseProperties className="webtool.soap.OperationStyleUseProperties" version="1.2">
<targetObjectURI>http://bookstore.parasoft.com/</targetObjectURI>
<encodingStyleURI></encodingStyleURI>
</OperationStyleUseProperties>
<portTypeName>Bookstore</portTypeName>
<SOAPServiceAddress className="com.parasoft.ws.wsdl.SOAPServiceAddress" version="1.5">
<portName>CartServicePort</portName>
<address>http://localhost:8080/parabank/services/store-01</address>
</SOAPServiceAddress>
<returnParam>true</returnParam>
<SoapParameter className="webtool.soap.SoapParameter" version="10">
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
<writeType>true</writeType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>1</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<localName>submitOrderResponse</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>2</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>submitOrderResponse</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>3</hash>
<paramTypesSize>1</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>4</hash>
<minOccurs>0</minOccurs>
<localName>orderInformation</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>5</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>submittedOrder</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>6</hash>
<paramTypesSize>2</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>7</hash>
<minOccurs>0</minOccurs>
<localName>orderTime</localName>
<DateTimeType className="webtool.soap.DateTimeType" version="2.2.3">
<hash>8</hash>
</DateTimeType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>9</hash>
<localName>success</localName>
<BooleanType className="webtool.soap.BooleanType" version="2.2.3">
<hash>10</hash>
</BooleanType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
<size>1</size>
<ComplexValue className="webtool.soap.ComplexValue" version="1.10.12">
<compositorValue>true</compositorValue>
<CompositorValue className="webtool.soap.CompositorValue" version="1.3.12">
<CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1">
<setSize>1</setSize>
<CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1">
<valuesSize>1</valuesSize>
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
</ElementValue>
</CompositorValueSet>
</CompositorValueSetCollectionSet>
</CompositorValue>
</ComplexValue>
</ElementValue>
<name>parameters</name>
</SoapParameter>
<inputName>submitOrder</inputName>
<methodName>submitOrder</methodName>
<returnType>{http://bookstore.parasoft.com/}submitOrderResponse</returnType>
<soapParametersSize>1</soapParametersSize>
<SoapParameter className="webtool.soap.SoapParameter" version="10">
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
<writeType>true</writeType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>1</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<localName>submitOrder</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>2</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>submitOrder</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>3</hash>
<paramTypesSize>1</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>4</hash>
<localName>cartId</localName>
<IntegerType className="webtool.soap.IntegerType" version="2.2.3">
<hash>5</hash>
</IntegerType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
<size>1</size>
<ComplexValue className="webtool.soap.ComplexValue" version="1.10.12">
<compositorValue>true</compositorValue>
<CompositorValue className="webtool.soap.CompositorValue" version="1.3.12">
<CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1">
<setSize>1</setSize>
<CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1">
<valuesSize>1</valuesSize>
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
<size>1</size>
<IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.12">
<value>0</value>
</IntegerValue>
</ElementValue>
</CompositorValueSet>
</CompositorValueSetCollectionSet>
</CompositorValue>
</ComplexValue>
</ElementValue>
<name>parameters</name>
</SoapParameter>
</SoapMethod>
<inputMode>1</inputMode>
</SoapCall>
</CallContainer>
<responseFormat>2</responseFormat>
<mimeType>text/plain</mimeType>
</SOAPRPCTool>
</SOAPRPCToolTest>
<SOAPRPCToolTest className="webtool.soap.SOAPRPCToolTest" version="3.4.15.2">
<DebugAssets className="webtool.test.debug.DebugAssets" version="1">
</DebugAssets>
<ReportingSettings className="webtool.test.ReportingSettings" version="1.1">
<TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3">
</TestGRSSettings>
</ReportingSettings>
<testLogic>true</testLogic>
<TestLogic className="webtool.test.logic.TestLogic" version="1.7">
<TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2">
</TestExecutionDelay>
<TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2">
</TestExecutionDelay>
<TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2">
</TestDependencyLogic>
</TestLogic>
<testID>3</testID>
<enabled>true</enabled>
<name>updateItemInCart</name>
<performanceGroup>6</performanceGroup>
<SOAPRPCTool className="webtool.soap.SOAPRPCTool" version="v.2.45.14">
<iconName>SOAPClient</iconName>
<name>updateItemInCart</name>
<hasServiceInfo>true</hasServiceInfo>
<ServiceInfo className="webtool.tool.ServiceInfo" version="1.2">
<StandardServiceDescriptor className="com.parasoft.service.catalog.impl.StandardServiceDescriptor" version="1.1">
<location>http://localhost:8080/parabank/services/store-01?wsdl</location>
</StandardServiceDescriptor>
</ServiceInfo>
<SOAPOutputProviderImpl className="webtool.soap.SOAPOutputProviderImpl" version="1.1.1">
</SOAPOutputProviderImpl>
<DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1">
</DefaultCustomConstrain>
<LocationObject className="webtool.wsdl.LocationObject" version="2">
</LocationObject>
<notes>Test client for operation "updateItemInCart" in "http://localhost:8080/parabank/services/store-01?wsdl".</notes>
<WsdlProperties className="webtool.soap.WsdlProperties" version="1.1">
<LocationObject className="webtool.wsdl.LocationObject" version="2">
<SOAPClient_WSDLLocation>${WSDL}</SOAPClient_WSDLLocation>
</LocationObject>
</WsdlProperties>
<DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1">
</DefaultCustomEncoding>
<EndpointProperties className="webtool.soap.EndpointProperties" version="1.4">
<DefaultEndpointType className="webtool.soap.DefaultEndpointType" version="1.1.1">
</DefaultEndpointType>
<UDDIEndpointType className="webtool.soap.UDDIEndpointType" version="1.1.1">
<SimpleValue className="webtool.data.SimpleValue" version="2.3">
</SimpleValue>
</UDDIEndpointType>
<CustomEndpointType className="webtool.soap.CustomEndpointType" version="1.1.1">
<SimpleValue className="webtool.data.SimpleValue" version="2.3">
<SOAPClient_CustomEndpoint>${ENDPOINT}</SOAPClient_CustomEndpoint>
</SimpleValue>
</CustomEndpointType>
<WsdlEndpointType className="webtool.soap.WsdlEndpointType" version="1.1.1">
<SimpleValue className="webtool.data.SimpleValue" version="2.3">
<value>http://localhost:8080/parabank/services/store-01</value>
</SimpleValue>
</WsdlEndpointType>
<mode>2</mode>
</EndpointProperties>
<DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1">
</DefaultCustomTimeout>
<DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1">
</DefaultCustomSoapVersion>
<DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1">
</DefaultCustomAttachment>
<MIMEOutputProvider className="webtool.soap.mime.MIMEOutputProvider" version="3.4.1">
<AttachmentOutputProvider className="webtool.soap.mime.AttachmentOutputProvider" version="3.2">
<menuName>Attachment</menuName>
<name>Response Attachment</name>
</AttachmentOutputProvider>
</MIMEOutputProvider>
<MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2">
<HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1">
<menuName>Transport Header</menuName>
<name>Request Transport Header</name>
</HTTPNamedToolOutputProvider>
<HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1">
<menuName>Transport Header</menuName>
<name>Response Transport Header</name>
</HTTPNamedToolOutputProvider>
<NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1">
<menuName>SOAP Envelope</menuName>
<name>Request SOAP Envelope</name>
</NamedXMLToolOutputProvider>
<HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1">
<m_name>Traffic Stream</m_name>
</HTTPOutputProvider>
<ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1">
<outputToolsSize>1</outputToolsSize>
<TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14">
<iconName>TrafficViewer</iconName>
<name>Traffic Viewer</name>
</TrafficViewer>
<name>Traffic Object</name>
</ObjectOutputProvider>
</MessagingOutputProvider>
<CallContainer className="webtool.soap.CallContainer" version="22">
<TransportProperties className="webtool.messaging.TransportProperties" version="11">
<ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1">
<size>4</size>
<SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.12">
<CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="3">
<OAuthConfiguration className="webtool.security.oauth.OAuthConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<OAuthSignRequestConfiguration className="webtool.security.oauth.OAuthSignRequestConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthSignRequestConfiguration>
<OAuthGetRequestTokenConfiguration className="webtool.security.oauth.OAuthGetRequestTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetRequestTokenConfiguration>
<OAuthGetAccessTokenConfiguration className="webtool.security.oauth.OAuthGetAccessTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetAccessTokenConfiguration>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
</OAuthConfiguration>
<method>POST</method>
<ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2">
<ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1">
</ResetExistingCookiesPreferenceProviderImpl>
<DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1">
</DefaultResetExistingCookies>
</ApplyableResetExistingCookiesConfiguration>
<ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1">
</ClientSideSSLProperties>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
<Authentication className="webtool.security.Authentication" version="2.4">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Service</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Username</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Password</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</Authentication>
</CommonHTTPProperties>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
<bool>true</bool>
</ApplyableBooleanConfiguration>
<SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<sendSoapAction>true</sendSoapAction>
</SOAPActionProperties>
</SoapClientHTTPProperties>
<SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.12">
<CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="3">
<OAuthConfiguration className="webtool.security.oauth.OAuthConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<OAuthSignRequestConfiguration className="webtool.security.oauth.OAuthSignRequestConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthSignRequestConfiguration>
<OAuthGetRequestTokenConfiguration className="webtool.security.oauth.OAuthGetRequestTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetRequestTokenConfiguration>
<OAuthGetAccessTokenConfiguration className="webtool.security.oauth.OAuthGetAccessTokenConfiguration" version="1">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</OAuthGetAccessTokenConfiguration>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
</OAuthConfiguration>
<method>POST</method>
<ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2">
<ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1">
</ResetExistingCookiesPreferenceProviderImpl>
<DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1">
</DefaultResetExistingCookies>
</ApplyableResetExistingCookiesConfiguration>
<ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1">
</ClientSideSSLProperties>
<NameValueProperties className="webtool.data.NameValueProperties" version="1.4">
</NameValueProperties>
<Authentication className="webtool.security.Authentication" version="2.4">
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Service</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Username</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
<NameValuePair className="webtool.data.NameValuePair" version="3.3">
<name>Password</name>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</NameValuePair>
</Authentication>
</CommonHTTPProperties>
<protocol>1</protocol>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
</ApplyableBooleanConfiguration>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
<bool>true</bool>
</ApplyableBooleanConfiguration>
<SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2">
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<sendSoapAction>true</sendSoapAction>
</SOAPActionProperties>
</SoapClientHTTPProperties>
<SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5">
<protocol>7</protocol>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</SoapClientWcfProperties>
<SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5">
<protocol>8</protocol>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<StringTestValue className="webtool.data.StringTestValue" version="4.1">
</StringTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
<MultiValue className="webtool.data.MultiValue" version="1.4">
<PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1">
</PasswordTestValue>
<ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1">
</ParameterizedTestValue>
</MultiValue>
</SoapClientWcfProperties>
</ProtocolPropertiesManager>
<ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2">
<inverted>true</inverted>
</ApplyableBooleanConfiguration>
</TransportProperties>
<soapCall>true</soapCall>
<SoapCall className="webtool.soap.SoapCall" version="11">
<soapMethod>true</soapMethod>
<SoapMethod className="webtool.soap.SoapMethod" version="19">
<longName>updateItemInCart</longName>
<faults size="1">
<fault index="0">Exception</fault>
</faults>
<portTypeNamespace>http://bookstore.parasoft.com/</portTypeNamespace>
<outputName>updateItemInCartResponse</outputName>
<OperationStyleUseProperties className="webtool.soap.OperationStyleUseProperties" version="1.2">
<targetObjectURI>http://bookstore.parasoft.com/</targetObjectURI>
<encodingStyleURI></encodingStyleURI>
</OperationStyleUseProperties>
<portTypeName>Bookstore</portTypeName>
<SOAPServiceAddress className="com.parasoft.ws.wsdl.SOAPServiceAddress" version="1.5">
<portName>CartServicePort</portName>
<address>http://localhost:8080/parabank/services/store-01</address>
</SOAPServiceAddress>
<returnParam>true</returnParam>
<SoapParameter className="webtool.soap.SoapParameter" version="10">
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
<writeType>true</writeType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>1</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<localName>updateItemInCartResponse</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>2</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>updateItemInCartResponse</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>3</hash>
<paramTypesSize>1</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>4</hash>
<minOccurs>0</minOccurs>
<localName>updatedItem</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>5</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>displayOrder</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>6</hash>
<paramTypesSize>2</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>7</hash>
<localName>cartId</localName>
<IntegerType className="webtool.soap.IntegerType" version="2.2.3">
<hash>8</hash>
</IntegerType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>9</hash>
<minOccurs>0</minOccurs>
<localName>item</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>10</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>order</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>11</hash>
<paramTypesSize>2</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>12</hash>
<minOccurs>0</minOccurs>
<localName>book</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>13</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>book</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>14</hash>
<paramTypesSize>9</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>15</hash>
<localName>id</localName>
<IntegerType className="webtool.soap.IntegerType" version="2">
<hash>8</hash>
</IntegerType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>16</hash>
<minOccurs>0</minOccurs>
<localName>name</localName>
<StringType className="webtool.soap.StringType" version="2.5.3">
<hash>17</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>18</hash>
<minOccurs>0</minOccurs>
<localName>price</localName>
<DecimalType className="webtool.soap.DecimalType" version="2.2.3">
<hash>19</hash>
</DecimalType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>20</hash>
<localName>stockQuantity</localName>
<IntegerType className="webtool.soap.IntegerType" version="2">
<hash>8</hash>
</IntegerType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>21</hash>
<minOccurs>0</minOccurs>
<maxOccurs>-1</maxOccurs>
<nillable>true</nillable>
<localName>authors</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>17</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>22</hash>
<minOccurs>0</minOccurs>
<localName>description</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>17</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>23</hash>
<minOccurs>0</minOccurs>
<localName>ISBN</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>17</hash>
</StringType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>24</hash>
<minOccurs>0</minOccurs>
<localName>publicationDate</localName>
<DateTimeType className="webtool.soap.DateTimeType" version="2.2.3">
<hash>25</hash>
</DateTimeType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>26</hash>
<minOccurs>0</minOccurs>
<localName>publisher</localName>
<StringType className="webtool.soap.StringType" version="2">
<hash>17</hash>
</StringType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>27</hash>
<localName>quantity</localName>
<IntegerType className="webtool.soap.IntegerType" version="2">
<hash>8</hash>
</IntegerType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
<size>1</size>
<ComplexValue className="webtool.soap.ComplexValue" version="1.10.12">
<compositorValue>true</compositorValue>
<CompositorValue className="webtool.soap.CompositorValue" version="1.3.12">
<CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1">
<setSize>1</setSize>
<CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1">
<valuesSize>1</valuesSize>
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
</ElementValue>
</CompositorValueSet>
</CompositorValueSetCollectionSet>
</CompositorValue>
</ComplexValue>
</ElementValue>
<name>parameters</name>
</SoapParameter>
<inputName>updateItemInCart</inputName>
<methodName>updateItemInCart</methodName>
<returnType>{http://bookstore.parasoft.com/}updateItemInCartResponse</returnType>
<soapParametersSize>1</soapParametersSize>
<SoapParameter className="webtool.soap.SoapParameter" version="10">
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
<writeType>true</writeType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>1</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<localName>updateItemInCart</localName>
<ComplexType className="webtool.soap.ComplexType" version="2.10.3">
<hash>2</hash>
<namespace>http://bookstore.parasoft.com/</namespace>
<name>updateItemInCart</name>
<compositor>true</compositor>
<SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3">
<hash>3</hash>
<paramTypesSize>3</paramTypesSize>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>4</hash>
<localName>cartId</localName>
<IntegerType className="webtool.soap.IntegerType" version="2.2.3">
<hash>5</hash>
</IntegerType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>6</hash>
<localName>itemId</localName>
<IntegerType className="webtool.soap.IntegerType" version="2">
<hash>5</hash>
</IntegerType>
</ElementType>
<ElementType className="webtool.soap.ElementType" version="2.12.3">
<hash>7</hash>
<localName>quantity</localName>
<IntegerType className="webtool.soap.IntegerType" version="2">
<hash>5</hash>
</IntegerType>
</ElementType>
</SequenceCompositor>
</ComplexType>
</ElementType>
<size>1</size>
<ComplexValue className="webtool.soap.ComplexValue" version="1.10.12">
<compositorValue>true</compositorValue>
<CompositorValue className="webtool.soap.CompositorValue" version="1.3.12">
<CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1">
<setSize>1</setSize>
<CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1">
<valuesSize>3</valuesSize>
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
<size>1</size>
<IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.12">
<value>0</value>
</IntegerValue>
</ElementValue>
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
<size>1</size>
<IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.12">
<value>0</value>
</IntegerValue>
</ElementValue>
<ElementValue className="webtool.soap.ElementValue" version="1.11.12">
<size>1</size>
<IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.12">
<value>0</value>
</IntegerValue>
</ElementValue>
</CompositorValueSet>
</CompositorValueSetCollectionSet>
</CompositorValue>
</ComplexValue>
</ElementValue>
<name>parameters</name>
</SoapParameter>
</SoapMethod>
<inputMode>1</inputMode>
</SoapCall>
</CallContainer>
<responseFormat>2</responseFormat>
<mimeType>text/plain</mimeType>
</SOAPRPCTool>
</SOAPRPCToolTest>
</TestSuite>
</TestSuite>
</SOAtestProject>
|
d29932651e37d526bc36b7dc38f41c2a662c56c5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1208/CH8/EX8.6/Exa6.sce | b5fbce82c21fad4d1e092154ed715c55d992d9a7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,600 | sce | Exa6.sce | //Exa6
clc;
clear;
close;
disp("Copra Crushing Process Account");
disp("Particulars Tons Amount Particulars Tons Amount");
disp("To Copra Used 500 200000 By sale of copra residue 175 11000");
disp("Labour 2500 By Loss 25");
disp("Electric Power 600 Sale of copra sacks 400");
disp("Sundry Mateials 100 Cost of crude oil");
disp("Repairs to Machinery 280 Rs. 646.67 per ton 300 194000");
disp("Steam 600");
disp("Factory Expenses 1320");
disp(" 500 205400 500 205400");
disp("");
disp("Refining Process Account");
disp("Particulars Tons Amount Particulars Tons Amount");
disp("To Copra oil 300 194000 By sale of by-products 45 6750");
disp("Labour 1000 By Loss 5");
disp("Electric Power 360 cost of refining oil");
disp("Sundry Mateials 2000 Rs. 768.2 per ton 250 192050");
disp("Repairs to Machinery 330");
disp("Steam 450");
disp("Factory Expenses 660");
disp(" 300 198800 300 198800");
disp("");
disp("Finishing Process Account");
disp("Particulars Tons Amount Particulars Tons Amount");
disp("To Refining Process 250 192050 By Loss 2");
disp("Labour 1500 cost of finished oil");
disp("Electric Power 240 Rs.784.68 per ton 248 194600");
disp("Repairs to Machinery 140");
disp("Steam 450");
disp("Factory Expenses 220");
disp(" 250 194600 250 198800");
disp("");
disp("Finisheed stock account");
disp(" Tons Amount Tons Amount");
disp("To finishing process 248 194600 To balance at Rs. 914.2 202100");
disp("To cost of casks 7500");
disp(" 202100 202100"); |
9bdfa869da566e7d2b792b0613095d19e8b55249 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2891/CH9/EX9.15/Ex9_15.sce | a2ed2dfec1226056a6ccddddd88c55a69528ea89 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 236 | sce | Ex9_15.sce | // Exa 9.15
clc;
clear;
close;
// given :
Nmax=1.3*10^6 // maximum electron density in electrons/cm^3
// formula : fc=9*sqrt(Nmax)
fc_khz=9*sqrt(Nmax) // critical frequency in Khz
disp(fc_khz/1000,"critical frequency in Mhz:")
|
44303802b0c95d6c3917af72f7d5def7a9624f4a | 449d555969bfd7befe906877abab098c6e63a0e8 | /2681/CH6/EX6.19/Ex6_19.sce | c2aa9371d3efacf88cc6e0708c9a06fd773d4485 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 534 | sce | Ex6_19.sce | //time delay ,propogaion velocity,propagation delay
//given
clc
L=500D-9//H/m
C=30D-12//F/m
td=sqrt(L*C)//time delay for 1 m long cable
vp=1/3.87d-9//m/s
C1=C*10//capacitance of 10 m cable
L1=L*10//inductance of 10 m cable
Ld=sqrt(L1*C1)//time delay for 10 m long cable
Ld=round(Ld*1d+10)/1d+10///rounding off decimals
td=round(td*1d+11)/1d+11///rounding off decimals
disp(Ld*1d+9,vp,td*1d+9,'the time delay in nanoseconds ,propogaion velocity in meter/second,propogation delay over a cable length in nanoseconds')
|
bdfab7e2929071573699dfdd42daa9472acf6e05 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1388/CH5/EX5.5/5_5.sce | 51c59ed6bc52b3a3c8b066be6c71ecda51fdfd6b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 252 | sce | 5_5.sce | clc
//initialisation of variables
P2= 760 //mm of Hg
m2= 2.18*10^-3
v= 23.5 //ml
p= 21
p1= 79
//CALCULATIONS
K= P2*55.5/m2
K1= 760*55.5*22.4*10^3/v
m= 55.5*(p*760/(100*K))+55.5*(p1*760/(100*K1))
//RESULTS
printf (' molality = %.2e gms',m)
|
0765254e7a5b3f6385a542b94a3c1016e402ce99 | 449d555969bfd7befe906877abab098c6e63a0e8 | /75/CH3/EX3.3/ex_3.sce | 801f9a7e3ca11b508f564ea7a732cda95c5d82eb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 218 | sce | ex_3.sce | // PG (137)
X=[0,-1]
Y=[1,2]
deff('[y]=f(x)','y=log(x)')
deff('[y]=fp(x)','y=1/x')
deff('[y]=fpp(x)','y=-1/(x)^2')
p = lagrange(X,Y)
// E = f(x)-p
e = 0.00005 // for a four-place logarithmic table
|
40eddc02957ef7c4f9406cb3acd099f906d1770a | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.4/Unix-Windows/scilab-2.4/macros/m2sci/get2sci.sci | 42fd494800706be413cb25849f226f5caf8cf963 | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 1,336 | sci | get2sci.sci | function [stk,top,vnms,vtps]=get2sci(nam,stk,top,vnms,vtps)
// Translate the named variable acquisition
//!
// Copyright INRIA
top=top+1
vn=find(nam==vnms(:,2))
if vn==[] then // variable is not defined yet
if ilst+1<=size(lst) then
op1=lst(ilst+1)
else
op1=['?','?']
end
std=%f
if size(op1,'*')>=2 then
std=op1(1)=='5'&op1(2)=='24'
end
if ~std then
if nam=='nargin' then
stk(top)=list('nargin','0','1','1','1')
nv=size(vnms,1);
vnms=[vnms;['nargin','nargin']]
vtps(nv+1)=list('1','1','1',0)
elseif nam=='nargout' then
stk(top)=list('nargout','0','1','1','1')
nv=size(vnms,1);
vnms=[vnms;['nargout','nargout']]
vtps(nv+1)=list('1','1','1',0)
else // undefined variable may be a m_file or global variable
// check if a corresponding m_file exist here
if isanmfile(nam) then
// a m_file without parameter
stk(top)=list()
else
//a global variable
stk(top)=list(nam,'0','0','1','2')
vnms=[vnms;[nam,nam]]
vtps($+1)=list('?','?','?',0)
write(logfile,'Warning: '+nam+' assumed as an external variable')
end
end
else
stk(top)=list(nam,'0','0','0','1',0)
vnms=[vnms;[nam,nam]]
vtps($+1)=list('1','0','0')
end
else
vn=vn($)//??????
stk(top)=list(vnms(vn,1),'0',vtps(vn)(2),vtps(vn)(3),vtps(vn)(1))
end
|
c40a0245ca35deabd4f58f4dafa5d723183a16ed | 449d555969bfd7befe906877abab098c6e63a0e8 | /1040/CH7/EX7.6.a/Chapter7_Ex6_a.sce | 9fce8ca2c74cb268243e3c780ce0e162b959b662 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,723 | sce | Chapter7_Ex6_a.sce | //Harriot P,2003,Chemical Reactor Design (I-Edition) Marcel Dekker,Inc., USA,pp 436.
//Chapter-7 Ex7.6.a Pg No.300
//Title:Fraction of O2 used
//======================================================================================================================
clear
clc
//INPUT
Vol_reactor=200;//Volume of reactor (m3)
D=4;//Diameter of reactor (m)
depth=12;//Depth of reactor (m)
u_g=3;//Superficial velocity (cm/sec)
T_C=30;//Temperature (°C)
T_K=273+T_C;//Temperature (K)
f_O2=0.21;//Fraction of O2 in air
myu_soln=1.5*(10^(-3));//Viscosity of solution (Pa sec)
R=0.08206;//Gas constant (m3 atm/ K kmol)
r_O2_peak=45*(10^(-3));//Flow rate of O2 at peak demand
//CALCULATION
S=%pi*(D^2)/4;//Cross section area (m2)
V=S*depth;//Volume of solution(m3)
F_air=(S*u_g*(10^(-2))*3600)/(R*(10^(-3))*T_K);
F_O2=f_O2*F_air;//Feed rate of O2 (mol/hr)
F_O2_used=r_O2_peak*V*(10^(3));//O2 used for aerobic fermentation (mol/hr)
F_O2_left=F_O2-F_O2_used;//O2 left after aerobic fermentation(mol/hr)
f_O2_exitgas=F_O2_left/F_air;//Fraction of O2 in exit gas
Percent_O2_exitgas=(f_O2_exitgas)*(100);
Frac_O2_used=((f_O2-f_O2_exitgas)/f_O2);
//OUTPUT
//Console Output
mprintf('\n\tAt the peak demand, fraction of the oxygen supplied = %.3f ',Frac_O2_used);
//File Output
fid= mopen('.\Chapter7_Ex6_a_Output.txt','w');
mfprintf(fid,'\n\tAt the peak demand, fraction of the oxygen supplied = %.3f ',Frac_O2_used);
mclose('all');
//===================================================END OF PROGRAM======================================================
//Disclaimer: The numerically calculated value of oxygen fraction supplied is 0.592 not 0.591 as mentioned in the textbook
|
34afe27788dd96740c75b2e53a2b716dd36138d8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1541/CH2/EX2.31/Chapter2_Example31.sce | 85c21d5691c0ee75e10e39510d7adbd4bb557b69 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 803 | sce | Chapter2_Example31.sce | //Chapter-2, Example 2.31, Page 2.58
//=============================================================================
clc
clear
//INPUT DATA
I2=400;//Full load secondary current in A
I1=(I2*0.2);//Full load secondary current in A
K=(I1/I2);//Turns ratio
Z1=complex(0.5,1.5);//Transformer parameter
Z2=complex(0.02,0.05);//Transformer parameter
//CALCULATIONS
Zo1=Z1+(Z2/K^2);//Transformer parameter
Vsc=(I1*Zo1);//Primary voltage under short circuit test in V
[A B]=polar(Vsc);//Primary voltage under short circuit test in V in polar form
B=atand(imag(Zo1)/real(Zo1));//Phase angle in degree
//OUTPUT
mprintf('Primary voltage under short circuit test is %3.1f and %3.2f degree V (polar form)',A,B)
//=================================END OF PROGRAM==============================
|
8abca7f5d507344d237fba5d15b6b5fa851c0dad | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects/BIPO/HP77EWG/ATWM1_Working_Memory_MEG_HP77EWG_Session2/ATWM1_Working_Memory_MEG_Salient_Cued_Run2.sce | 005f425dff836056bd63a252cb1e8d9efeb6aa8d | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 49,383 | sce | ATWM1_Working_Memory_MEG_Salient_Cued_Run2.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_cued_run2";
#scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
scenario_type = trials; # for MEG
#scan_period = 2000; # TR
#pulses_per_scan = 1;
#pulse_code = 1;
pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 36;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 382; width = 382; color = 0, 0, 0;} frame1;
box { height = 369; width = 369; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 369; width = 369; color = 42, 42, 42;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# Start of experiment (MEG only) - sync with CTF software
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
} expStart;
time = 0;
duration = 1000;
code = "ExpStart";
port_code = 80;
};
# baselinePre (at the beginning of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
}default;
time = 0;
duration = 10000;
#mri_pulse = 1;
code = "BaselinePre";
port_code = 91;
};
TEMPLATE "ATWM1_Working_Memory_MEG.tem" {
trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
41 61 292 292 399 125 2042 2992 1992 fixation_cross gabor_102 gabor_078 gabor_038 gabor_016 gabor_102 gabor_078_alt gabor_038_alt gabor_016 "2_1_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2000_gabor_patch_orientation_102_078_038_016_target_position_2_3_retrieval_position_2" gabor_circ gabor_124_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_1_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_124_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 2042 fixation_cross gabor_024 gabor_154 gabor_103 gabor_180 gabor_024_alt gabor_154 gabor_103 gabor_180_alt "2_2_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2050_gabor_patch_orientation_024_154_103_180_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_180_framed blank blank blank blank fixation_cross_target_position_1_4 "2_2_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_180_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2142 2992 1942 fixation_cross gabor_061 gabor_140 gabor_108 gabor_027 gabor_061 gabor_140_alt gabor_108 gabor_027_alt "2_3_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_1950_gabor_patch_orientation_061_140_108_027_target_position_2_4_retrieval_position_2" gabor_circ gabor_140_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_3_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_140_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 2142 2992 2142 fixation_cross gabor_042 gabor_081 gabor_002 gabor_025 gabor_042_alt gabor_081 gabor_002 gabor_025_alt "2_4_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_300_300_399_2150_3000_2150_gabor_patch_orientation_042_081_002_025_target_position_1_4_retrieval_position_2" gabor_circ gabor_081_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_4_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_081_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1792 2992 2142 fixation_cross gabor_136 gabor_031 gabor_121 gabor_154 gabor_136_alt gabor_031 gabor_121_alt gabor_154 "2_5_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2150_gabor_patch_orientation_136_031_121_154_target_position_1_3_retrieval_position_1" gabor_136_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_5_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_136_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1842 2992 2592 fixation_cross gabor_013 gabor_045 gabor_084 gabor_155 gabor_013 gabor_045_alt gabor_084_alt gabor_155 "2_6_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2600_gabor_patch_orientation_013_045_084_155_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_084_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_6_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_084_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1942 2992 2542 fixation_cross gabor_130 gabor_070 gabor_022 gabor_042 gabor_130 gabor_070 gabor_022_alt gabor_042_alt "2_7_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2550_gabor_patch_orientation_130_070_022_042_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_158_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_7_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_158_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2092 2992 2142 fixation_cross gabor_068 gabor_112 gabor_090 gabor_050 gabor_068_alt gabor_112 gabor_090_alt gabor_050 "2_8_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2150_gabor_patch_orientation_068_112_090_050_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_090_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_8_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_090_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2092 2992 1892 fixation_cross gabor_003 gabor_126 gabor_020 gabor_082 gabor_003 gabor_126_alt gabor_020_alt gabor_082 "2_9_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_1900_gabor_patch_orientation_003_126_020_082_target_position_2_3_retrieval_position_2" gabor_circ gabor_126_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_9_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_126_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 1742 2992 2392 fixation_cross gabor_016 gabor_156 gabor_124 gabor_051 gabor_016 gabor_156_alt gabor_124 gabor_051_alt "2_10_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_300_300_399_1750_3000_2400_gabor_patch_orientation_016_156_124_051_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_074_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_10_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_074_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2042 2992 2092 fixation_cross gabor_116 gabor_099 gabor_082 gabor_037 gabor_116 gabor_099 gabor_082_alt gabor_037_alt "2_11_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2100_gabor_patch_orientation_116_099_082_037_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_172_framed blank blank blank blank fixation_cross_target_position_3_4 "2_11_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_172_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2192 2992 2442 fixation_cross gabor_152 gabor_016 gabor_071 gabor_122 gabor_152_alt gabor_016_alt gabor_071 gabor_122 "2_12_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2450_gabor_patch_orientation_152_016_071_122_target_position_1_2_retrieval_position_1" gabor_152_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_12_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_152_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2042 2992 2342 fixation_cross gabor_164 gabor_075 gabor_149 gabor_006 gabor_164 gabor_075_alt gabor_149_alt gabor_006 "2_13_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2350_gabor_patch_orientation_164_075_149_006_target_position_2_3_retrieval_position_2" gabor_circ gabor_027_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_13_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_027_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2092 2992 2142 fixation_cross gabor_061 gabor_166 gabor_090 gabor_012 gabor_061 gabor_166_alt gabor_090 gabor_012_alt "2_14_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2150_gabor_patch_orientation_061_166_090_012_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_147_framed blank blank blank blank fixation_cross_target_position_2_4 "2_14_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_147_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1742 2992 2392 fixation_cross gabor_045 gabor_126 gabor_069 gabor_158 gabor_045 gabor_126_alt gabor_069 gabor_158_alt "2_15_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2400_gabor_patch_orientation_045_126_069_158_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_158_framed blank blank blank blank fixation_cross_target_position_2_4 "2_15_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_158_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2092 2992 2242 fixation_cross gabor_098 gabor_020 gabor_177 gabor_064 gabor_098 gabor_020 gabor_177_alt gabor_064_alt "2_16_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2100_3000_2250_gabor_patch_orientation_098_020_177_064_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_177_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_16_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_177_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1942 2992 2042 fixation_cross gabor_018 gabor_062 gabor_178 gabor_107 gabor_018_alt gabor_062 gabor_178_alt gabor_107 "2_17_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_300_300_399_1950_3000_2050_gabor_patch_orientation_018_062_178_107_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_107_framed blank blank blank blank fixation_cross_target_position_1_3 "2_17_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_107_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2142 2992 2242 fixation_cross gabor_088 gabor_159 gabor_052 gabor_022 gabor_088 gabor_159_alt gabor_052 gabor_022_alt "2_18_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2250_gabor_patch_orientation_088_159_052_022_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_070_framed blank blank blank blank fixation_cross_target_position_2_4 "2_18_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_070_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 2292 fixation_cross gabor_015 gabor_032 gabor_177 gabor_155 gabor_015_alt gabor_032 gabor_177 gabor_155_alt "2_19_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2300_gabor_patch_orientation_015_032_177_155_target_position_1_4_retrieval_position_1" gabor_015_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_19_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_015_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 1992 2992 2242 fixation_cross gabor_080 gabor_118 gabor_054 gabor_164 gabor_080_alt gabor_118_alt gabor_054 gabor_164 "2_20_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_300_300_399_2000_3000_2250_gabor_patch_orientation_080_118_054_164_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_028_framed blank blank blank blank fixation_cross_target_position_1_2 "2_20_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_028_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2042 2992 2042 fixation_cross gabor_104 gabor_037 gabor_170 gabor_125 gabor_104 gabor_037_alt gabor_170 gabor_125_alt "2_21_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2050_gabor_patch_orientation_104_037_170_125_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_125_framed blank blank blank blank fixation_cross_target_position_2_4 "2_21_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_125_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1792 2992 2242 fixation_cross gabor_129 gabor_048 gabor_112 gabor_180 gabor_129 gabor_048_alt gabor_112_alt gabor_180 "2_22_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2250_gabor_patch_orientation_129_048_112_180_target_position_2_3_retrieval_position_2" gabor_circ gabor_001_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_22_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1792 2992 2442 fixation_cross gabor_056 gabor_163 gabor_007 gabor_077 gabor_056 gabor_163_alt gabor_007 gabor_077_alt "2_23_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2450_gabor_patch_orientation_056_163_007_077_target_position_2_4_retrieval_position_2" gabor_circ gabor_116_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_23_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_116_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 1842 2992 2092 fixation_cross gabor_015 gabor_088 gabor_165 gabor_144 gabor_015 gabor_088 gabor_165_alt gabor_144_alt "2_24_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_300_300_399_1850_3000_2100_gabor_patch_orientation_015_088_165_144_target_position_3_4_retrieval_position_2" gabor_circ gabor_038_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_24_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_038_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2042 2992 2492 fixation_cross gabor_129 gabor_073 gabor_039 gabor_149 gabor_129_alt gabor_073 gabor_039 gabor_149_alt "2_25_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2500_gabor_patch_orientation_129_073_039_149_target_position_1_4_retrieval_position_1" gabor_129_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_25_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_129_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1942 2992 2192 fixation_cross gabor_086 gabor_154 gabor_044 gabor_105 gabor_086_alt gabor_154_alt gabor_044 gabor_105 "2_26_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2200_gabor_patch_orientation_086_154_044_105_target_position_1_2_retrieval_position_1" gabor_133_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_26_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_133_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1892 2992 2492 fixation_cross gabor_171 gabor_090 gabor_145 gabor_039 gabor_171 gabor_090_alt gabor_145_alt gabor_039 "2_27_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2500_gabor_patch_orientation_171_090_145_039_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_145_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_27_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_145_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1892 2992 2092 fixation_cross gabor_149 gabor_123 gabor_037 gabor_010 gabor_149 gabor_123_alt gabor_037_alt gabor_010 "2_28_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2100_gabor_patch_orientation_149_123_037_010_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_174_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_28_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_174_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1992 2992 2342 fixation_cross gabor_098 gabor_037 gabor_064 gabor_144 gabor_098 gabor_037_alt gabor_064 gabor_144_alt "2_29_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2350_gabor_patch_orientation_098_037_064_144_target_position_2_4_retrieval_position_2" gabor_circ gabor_037_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_29_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_037_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2242 2992 1892 fixation_cross gabor_024 gabor_081 gabor_046 gabor_152 gabor_024_alt gabor_081 gabor_046 gabor_152_alt "2_30_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_1900_gabor_patch_orientation_024_081_046_152_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_102_framed blank blank blank blank fixation_cross_target_position_1_4 "2_30_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_102_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2092 2992 2342 fixation_cross gabor_017 gabor_099 gabor_142 gabor_123 gabor_017 gabor_099 gabor_142_alt gabor_123_alt "2_31_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2350_gabor_patch_orientation_017_099_142_123_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_170_framed blank blank blank blank fixation_cross_target_position_3_4 "2_31_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_170_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1992 2992 1942 fixation_cross gabor_040 gabor_001 gabor_017 gabor_163 gabor_040_alt gabor_001 gabor_017 gabor_163_alt "2_32_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_1950_gabor_patch_orientation_040_001_017_163_target_position_1_4_retrieval_position_1" gabor_040_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_32_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_040_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1742 2992 2342 fixation_cross gabor_078 gabor_131 gabor_155 gabor_020 gabor_078_alt gabor_131 gabor_155 gabor_020_alt "2_33_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_300_300_399_1750_3000_2350_gabor_patch_orientation_078_131_155_020_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_155_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_33_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_155_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2192 2992 2592 fixation_cross gabor_180 gabor_095 gabor_070 gabor_130 gabor_180 gabor_095_alt gabor_070_alt gabor_130 "2_34_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2600_gabor_patch_orientation_180_095_070_130_target_position_2_3_retrieval_position_2" gabor_circ gabor_095_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_34_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_095_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1792 2992 1892 fixation_cross gabor_163 gabor_040 gabor_077 gabor_102 gabor_163 gabor_040 gabor_077_alt gabor_102_alt "2_35_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_1900_gabor_patch_orientation_163_040_077_102_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_126_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_35_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_126_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2192 2992 2442 fixation_cross gabor_122 gabor_140 gabor_056 gabor_080 gabor_122 gabor_140 gabor_056_alt gabor_080_alt "2_36_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2450_gabor_patch_orientation_122_140_056_080_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_056_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_36_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_056_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1842 2992 1892 fixation_cross gabor_172 gabor_059 gabor_020 gabor_043 gabor_172 gabor_059_alt gabor_020_alt gabor_043 "2_37_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_300_300_399_1850_3000_1900_gabor_patch_orientation_172_059_020_043_target_position_2_3_retrieval_position_1" gabor_172_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_37_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_172_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1792 2992 2292 fixation_cross gabor_017 gabor_035 gabor_143 gabor_072 gabor_017_alt gabor_035 gabor_143_alt gabor_072 "2_38_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2300_gabor_patch_orientation_017_035_143_072_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_143_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_38_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_143_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 2142 2992 2592 fixation_cross gabor_090 gabor_066 gabor_176 gabor_112 gabor_090 gabor_066 gabor_176_alt gabor_112_alt "2_39_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_300_300_399_2150_3000_2600_gabor_patch_orientation_090_066_176_112_target_position_3_4_retrieval_position_1" gabor_090_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_39_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_090_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2142 2992 2192 fixation_cross gabor_152 gabor_112 gabor_023 gabor_096 gabor_152 gabor_112 gabor_023_alt gabor_096_alt "2_40_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2200_gabor_patch_orientation_152_112_023_096_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_046_framed blank blank blank blank fixation_cross_target_position_3_4 "2_40_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_046_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1842 2992 2242 fixation_cross gabor_098 gabor_171 gabor_064 gabor_154 gabor_098_alt gabor_171 gabor_064 gabor_154_alt "2_41_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2250_gabor_patch_orientation_098_171_064_154_target_position_1_4_retrieval_position_1" gabor_048_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_41_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_048_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1742 2992 2542 fixation_cross gabor_057 gabor_167 gabor_139 gabor_018 gabor_057_alt gabor_167 gabor_139_alt gabor_018 "2_42_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2550_gabor_patch_orientation_057_167_139_018_target_position_1_3_retrieval_position_1" gabor_102_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_42_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_102_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1942 2992 1942 fixation_cross gabor_043 gabor_127 gabor_020 gabor_171 gabor_043 gabor_127_alt gabor_020 gabor_171_alt "2_43_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_1950_gabor_patch_orientation_043_127_020_171_target_position_2_4_retrieval_position_2" gabor_circ gabor_127_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_43_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_127_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1742 2992 2142 fixation_cross gabor_006 gabor_068 gabor_112 gabor_029 gabor_006_alt gabor_068 gabor_112 gabor_029_alt "2_44_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_006_068_112_029_target_position_1_4_retrieval_position_1" gabor_006_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_44_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_006_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2092 2992 2042 fixation_cross gabor_002 gabor_066 gabor_107 gabor_030 gabor_002 gabor_066 gabor_107_alt gabor_030_alt "2_45_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2050_gabor_patch_orientation_002_066_107_030_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_152_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_45_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_152_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1992 2992 2442 fixation_cross gabor_026 gabor_086 gabor_154 gabor_131 gabor_026 gabor_086 gabor_154_alt gabor_131_alt "2_46_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2450_gabor_patch_orientation_026_086_154_131_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_104_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_46_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_104_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1942 2992 1942 fixation_cross gabor_151 gabor_071 gabor_134 gabor_018 gabor_151 gabor_071_alt gabor_134 gabor_018_alt "2_47_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_300_300_399_1950_3000_1950_gabor_patch_orientation_151_071_134_018_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_134_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_47_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_134_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1742 2992 2542 fixation_cross gabor_097 gabor_145 gabor_112 gabor_170 gabor_097_alt gabor_145 gabor_112_alt gabor_170 "2_48_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2550_gabor_patch_orientation_097_145_112_170_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_063_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_48_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_063_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2242 2992 1942 fixation_cross gabor_149 gabor_174 gabor_134 gabor_015 gabor_149_alt gabor_174 gabor_134 gabor_015_alt "2_49_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_1950_gabor_patch_orientation_149_174_134_015_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_015_framed blank blank blank blank fixation_cross_target_position_1_4 "2_49_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_015_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2192 2992 2092 fixation_cross gabor_092 gabor_015 gabor_040 gabor_154 gabor_092_alt gabor_015_alt gabor_040 gabor_154 "2_50_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2100_gabor_patch_orientation_092_015_040_154_target_position_1_2_retrieval_position_2" gabor_circ gabor_064_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_50_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_064_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2142 2992 2292 fixation_cross gabor_028 gabor_114 gabor_086 gabor_002 gabor_028 gabor_114 gabor_086_alt gabor_002_alt "2_51_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2300_gabor_patch_orientation_028_114_086_002_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_138_framed blank blank blank blank fixation_cross_target_position_3_4 "2_51_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_138_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2242 2992 2092 fixation_cross gabor_088 gabor_178 gabor_159 gabor_051 gabor_088 gabor_178 gabor_159_alt gabor_051_alt "2_52_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2100_gabor_patch_orientation_088_178_159_051_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_004_framed blank blank blank blank fixation_cross_target_position_3_4 "2_52_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_004_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 64 292 292 399 125 1892 2992 1992 fixation_cross gabor_089 gabor_024 gabor_046 gabor_160 gabor_089 gabor_024_alt gabor_046 gabor_160_alt "2_53_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_300_300_399_1900_3000_2000_gabor_patch_orientation_089_024_046_160_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_046_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_53_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_046_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1892 2992 2192 fixation_cross gabor_143 gabor_166 gabor_036 gabor_076 gabor_143 gabor_166 gabor_036_alt gabor_076_alt "2_54_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2200_gabor_patch_orientation_143_166_036_076_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_124_framed blank blank blank blank fixation_cross_target_position_3_4 "2_54_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_124_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1992 2992 2392 fixation_cross gabor_019 gabor_045 gabor_176 gabor_107 gabor_019 gabor_045_alt gabor_176 gabor_107_alt "2_55_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2400_gabor_patch_orientation_019_045_176_107_target_position_2_4_retrieval_position_2" gabor_circ gabor_090_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_55_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_090_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 2192 2992 2592 fixation_cross gabor_030 gabor_149 gabor_118 gabor_061 gabor_030_alt gabor_149_alt gabor_118 gabor_061 "2_56_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2600_gabor_patch_orientation_030_149_118_061_target_position_1_2_retrieval_position_2" gabor_circ gabor_010_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_56_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_010_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 1892 2992 1892 fixation_cross gabor_084 gabor_064 gabor_030 gabor_146 gabor_084_alt gabor_064_alt gabor_030 gabor_146 "2_57_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_300_300_399_1900_3000_1900_gabor_patch_orientation_084_064_030_146_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_170_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_57_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_170_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1842 2992 1992 fixation_cross gabor_092 gabor_175 gabor_120 gabor_036 gabor_092_alt gabor_175 gabor_120_alt gabor_036 "2_58_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2000_gabor_patch_orientation_092_175_120_036_target_position_1_3_retrieval_position_1" gabor_142_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_58_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_142_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 2242 2992 2492 fixation_cross gabor_160 gabor_028 gabor_114 gabor_096 gabor_160_alt gabor_028 gabor_114_alt gabor_096 "2_59_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_300_300_399_2250_3000_2500_gabor_patch_orientation_160_028_114_096_target_position_1_3_retrieval_position_2" gabor_circ gabor_074_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_59_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_074_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2042 2992 2192 fixation_cross gabor_003 gabor_114 gabor_170 gabor_030 gabor_003 gabor_114_alt gabor_170 gabor_030_alt "2_60_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2200_gabor_patch_orientation_003_114_170_030_target_position_2_4_retrieval_position_2" gabor_circ gabor_114_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_60_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_114_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 2242 2992 2392 fixation_cross gabor_125 gabor_062 gabor_045 gabor_003 gabor_125_alt gabor_062 gabor_045_alt gabor_003 "2_61_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2400_gabor_patch_orientation_125_062_045_003_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_045_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_61_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_045_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1792 2992 1992 fixation_cross gabor_065 gabor_042 gabor_180 gabor_017 gabor_065 gabor_042 gabor_180_alt gabor_017_alt "2_62_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_065_042_180_017_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_017_framed blank blank blank blank fixation_cross_target_position_3_4 "2_62_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_017_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1992 2992 2292 fixation_cross gabor_090 gabor_165 gabor_142 gabor_117 gabor_090 gabor_165 gabor_142_alt gabor_117_alt "2_63_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2300_gabor_patch_orientation_090_165_142_117_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_004_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_63_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_004_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1742 2992 1992 fixation_cross gabor_044 gabor_133 gabor_073 gabor_110 gabor_044 gabor_133 gabor_073_alt gabor_110_alt "2_64_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_044_133_073_110_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_073_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_64_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_073_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 2242 2992 2292 fixation_cross gabor_175 gabor_041 gabor_061 gabor_094 gabor_175 gabor_041_alt gabor_061 gabor_094_alt "2_65_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_300_300_399_2250_3000_2300_gabor_patch_orientation_175_041_061_094_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_015_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_65_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_015_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 61 292 292 399 125 1792 2992 2042 fixation_cross gabor_004 gabor_174 gabor_143 gabor_109 gabor_004 gabor_174 gabor_143_alt gabor_109_alt "2_66_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2050_gabor_patch_orientation_004_174_143_109_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_059_framed blank blank blank blank fixation_cross_target_position_3_4 "2_66_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_059_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1842 2992 2542 fixation_cross gabor_091 gabor_165 gabor_031 gabor_113 gabor_091_alt gabor_165_alt gabor_031 gabor_113 "2_67_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2550_gabor_patch_orientation_091_165_031_113_target_position_1_2_retrieval_position_1" gabor_091_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_67_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_091_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1942 2992 2492 fixation_cross gabor_100 gabor_076 gabor_041 gabor_018 gabor_100 gabor_076 gabor_041_alt gabor_018_alt "2_68_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2500_gabor_patch_orientation_100_076_041_018_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_018_framed blank blank blank blank fixation_cross_target_position_3_4 "2_68_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_018_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 63 292 292 399 125 2192 2992 2342 fixation_cross gabor_076 gabor_092 gabor_137 gabor_156 gabor_076_alt gabor_092_alt gabor_137 gabor_156 "2_69_Encoding_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_300_300_399_2200_3000_2350_gabor_patch_orientation_076_092_137_156_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_002_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_69_Retrieval_Working_Memory_MEG_P4_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_002_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
41 62 292 292 399 125 1842 2992 2192 fixation_cross gabor_083 gabor_116 gabor_058 gabor_001 gabor_083 gabor_116_alt gabor_058 gabor_001_alt "2_70_Encoding_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2200_gabor_patch_orientation_083_116_058_001_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_001_framed blank blank blank blank fixation_cross_target_position_2_4 "2_70_Retrieval_Working_Memory_MEG_P4_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 5000;
code = "BaselinePost";
port_code = 92;
}; |
aba4867b05a1f2ebe0eded0d2751565f5088dd8c | 449d555969bfd7befe906877abab098c6e63a0e8 | /32/CH3/EX3.14/3_14.sce | 8018ac062ded5935e8d9e9648c953bc2ac6753ac | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,045 | sce | 3_14.sce | //pathname=get_absolute_file_path('3.14.sce')
//filename=pathname+filesep()+'3.14-data.sci'
//exec(filename)
//Ambient temperature(in K):
T1=27+273
//Temperature of air inside heat exchanger(in K):
T2=750+273
//Temperature of air leaving turbine(in K):
T3=600+273
//Temperature of air leaving the nozzle(in K):
T4=500+273
//Velocity of air entering turbine(in m/s):
c2=50
//Velocity of air entering the nozzle(in m/s):
c3=60
//Specific heat at constant pressure(in kj?kg.K):
Cp=1.005
//By applying SFEE between points 1 & 2:
//Heat transfer to air in heat exchanger(in kJ):
Q12=Cp*(T2-T1)
printf("\nRESULT\n")
printf("\nHeat transfer to air in heat exchanger =%f kJ",Q12)
//By applying SFEE between points 2 & 3:
//Power output from turbine(in kJ/s):
Wt=Cp*(T2-T3)+(c2^2-c3^2)*10^(-3)/2
printf("\nPower output from turbine = %f kJ/s",Wt)
//By applying SFEE between points 3 & 4:
//Velocity at exit of the nozzle(in m/s):
c4=sqrt(2*(Cp*(T3-T4)+(c3^2)*10^(-3)/2))
printf("\nVelocity at exit of the nozzle = %f m/s",c4) |
5608db3360a23ab1c30532ecae7e7f9673187070 | 449d555969bfd7befe906877abab098c6e63a0e8 | /48/CH5/EX5.1/eg_5_1.sce | d7bee4eefe390e4a2ac81ac4ce7381778b27c469 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 836 | sce | eg_5_1.sce | clc;
clear;
//Takes x input and check whether it is valid logic level or not.
x=input("x = ");
while(x~=0 & x~=1)
disp("enter a valid logical level");
x=input("x = ");
end
//Takes y input and check whether it is valid logic level or not.
y=input("y = ");
while(y~=0 & y~=1)
disp("enter a valid logical level");
y=input("y = ");
end
//Takes z input and check whether it is valid logic level or not.
z=input("z = ");
while(z~=0 & z~=1)
disp("enter a valid logical level");
z=input("z = ");
end
p1=bitand(bitand(bitcmp(x,1),bitcmp(y,1)),z);
p2=bitand(bitand(bitcmp(x,1),y),bitcmp(z,1));
p3=bitand(bitand(bitcmp(y,1),x),bitcmp(z,1));
p4=bitand(bitand(x,y),z);
p=bitor(bitor(p1,p2),bitor(p3,p4));
disp(p,"The output of the odd parity generator circuit is");
disp("p= x^y^z+x^yz^+xy^z^+xyz"); |
fa1eb9deae04e1a1b04112d1b5f9a983f441970e | 482cdc3e27e99afe860829eff3e593caa62202e3 | /src/Assignment1_Tests/test11.tst | 761dad2c212a89e1b69a1313f056a123e636b038 | [] | no_license | abrageddon/DLXCompiler | e153430de4412fe48a34955851352d0fd73ab2d8 | 2d1abd102f723c2e1f0ed5893e86c7d0ceb42914 | refs/heads/master | 2020-12-30T10:50:20.955331 | 2011-12-02T03:34:59 | 2011-12-02T03:34:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 77 | tst | test11.tst | var main, main2, main3;
main <- 44444444;
((((((((((((call main;))))))))))))
|
fa944db09e46d4bc81084c315a6859f066b7376c | e25bb3040c96f9782aab0493e05ba22f5bf50ccf | /ex3/ex3b.sce | bb02025f58610baf384e3292b1a83c453a1793d7 | [] | no_license | gpioblink/aizu-spls-exercise | c13258d46f50ed2db7797693a097b0fb75d24eaf | 6c0b9326ba8e4b52378cfe777e82a2bfcdecc9b9 | refs/heads/master | 2022-09-14T06:09:44.774157 | 2020-05-31T07:43:26 | 2020-05-31T07:43:26 | 263,856,972 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 203 | sce | ex3b.sce | x = wavread('abc.wav')
k = 4 * x
y = k - 0.25
wavwrite(y,Fs, 'abc_y.wav')
plot(y);
xlabel('t');
ylabel('amplitude');
a=get("current_axes");
set(a,"x_location","origin")
set(a,"y_location","origin")
|
5b4c1435d5eae2502a8904cb804bfc3051239b4c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1151/CH11/EX11.2/example2.sce | c398f90f63006956ae48e5d0465b38aa0fd3b8cd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 896 | sce | example2.sce | printf("characterstic equation of the given system is s^2+1.4*s+14=0");
printf("compare it with the standard second order characterstic equation s^2+2*d*w*s+w^2=0");
w=sqrt(14);
d=1.4/(2*w);
d1=.7;
Kt=2*(d1-d)/w;
ess1=2*d/w;
disp(d,"damping ratio")
disp(w,"natural frrequency(in rad/sec)=")
disp(ess1,"steady state error without derivative control = ")
printf("overal transfer function with derivative control is C(s)/R(s)=w^2/(s^2+(2dw+w^2Kt)*s+w^2)=14/(s^2+5.23*s+14")
disp(Kt,"Kt=")
rt=(%pi-atan(sqrt((1-d1)/d1)))/(w*sqrt(1-d1^2));
pt1=%pi/(w*sqrt(1-d1^2));
mo1=exp((-%pi*d1)/sqrt(1-d1^2))*100;
ess2=2*d1/w+Kt;
disp(pt1,"peak time(in sec)for sytem with derivative control is")
disp(rt,"rise time(in sec)for sytem with derivative control is")
disp(mo1,"maximum overshoot(in %)for sytem with derivative control is")
disp(ess2,"steady state error with derivative control = ")
|
35bd830326cb52c6619c97657e0309f0a03ad803 | fdc5047b7bf8122bad1e621df236b0481226c36e | /exemplos/xls-link-0.5.0-src/tests/unit_tests/xls_DeleteWorksheet.tst | 701905acc7f421bd269a645c652fc426eaf58b2f | [] | no_license | jpbevila/virtualHartSci | aea3c6ba23d054670eb193f441ea7de982b531cc | a3f5be6041d230bd9f0fd67e5d7efa71f41cfca5 | refs/heads/main | 2023-07-26T23:05:28.044194 | 2021-09-09T11:50:59 | 2021-09-09T11:50:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 688 | tst | xls_DeleteWorksheet.tst | // ====================================================================
// Allan CORNET
// DIGITEO 2008 - 2010
// ====================================================================
// <-- CLI SHELL MODE -->
// ====================================================================
r = xls_NewExcel();
assert_checktrue(r);
ierr = execstr('res = xls_AddWorksheet(1)','errcatch');
assert_checkfalse(ierr == 0);
r = xls_AddWorkbook();
assert_checktrue(r);
for i=1:10
r = xls_AddWorksheet();
assert_checkfalse(r == 0);
end
for i=1:10
r = xls_DeleteWorksheet();
assert_checkfalse(r < 0);
end
// disable "Save" msg box
r = xls_SetSave(%t);
r = xls_Quit();
assert_checktrue(r);
|
58322499ee73eedd164b7589df9d1c6021930918 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3731/CH5/EX5.6/Ex5_6.sce | 7240174df64a752657012cf2834af631bd1e2ef3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,121 | sce | Ex5_6.sce | //Chapter 5:Dc Motor Drives
//Example 6
clc;
//Variable Initialization
//The motor rating is same as that of Ex-5.5
N=600 //value of the speed given from the magnetization curve in Ex-5.5
Ra=0.04 //armature resistance in ohms
Rf=10 //field resistance in ohms
T=400 //load torque in N-m
N1=1200 //given speed in rpm to hold the overhauling torque
//Solution
Wm=2*%pi*N1/60 //angular speed at the given speed N1
//Magnetisation curve at N=600rpm
If=[2.5,5,7.5,10,12.5,15,17.5,20,22.5,25] //field current in A
E =[25,50,73.5,90,102.5,110,116,121,125,129] //value of the back emf as given in Ex-5.5 for the speed N in V
//Magnetisation curve at N=1200rpm
If=[2.5,5,7.5,10,12.5,15,17.5,20,22.5,25] //field current in A
E1=N1/N*E //back emf at the speed N1
mprintf("Hence the magnetization curve at 1200rpm is")
disp(If,"Field current If:in A")
disp(E1,"Back emf is E1 in V:")
Pd=T*Wm //power developed
x=Pd*Ra
V=[]
for i=1:10
V($+1)=E1(i)-x/E1(i)
end
disp(V,"Terminal voltage V:in V")
//Results
//Plotting the values of V vs If
subplot(2,1,1)
plot(V,If)
xlabel('Terminal voltage V')
ylabel('Field current I_f')
title('V vs If')
xgrid(2)
//Plotting the values of E vs If
If=[2.5,5,7.5,10,12.5,15,17.5,20,22.5,25] //field current in A
E =[25,50,73.5,90,102.5,110,116,121,125,129] //value of the back emf as given in Ex-5.5 for the speed N in V
E1=N1/N*E //back emf at the speed N1
subplot(2,1,2)
plot(E1,If,'y')
xlabel('E')
ylabel('Field current I_f')
title('E vs If')
xgrid(2)
mprintf("\nFrom the plot we can see that when the current If=25 A the terminal voltage is V=250 V with the back emf E=258V")
E=258 //value of the back emf in V at from the plot
V=250 //value of terminal voltage in V from the plot at E=258 V
If=25 //value of If in A from the plot at E=258 V
Ia=(E-V)/Ra //armature current
If=V/Rf //field current
Ir=Ia-If
Rb=V/Ir //braking resistance
mprintf("\nHence the rquired braking resistance is %.3f ohm",Rb)
|
b5cd0fbf8329a696f2c70ae259343d3663862ede | d0a6d5d85ead04c9e381d2f60cc2409632e9b3be | /tests/ieee-adds.tst | bac3c9cf206334a99b2fefed15ae5400b537f330 | [
"LicenseRef-scancode-unknown-license-reference",
"Zlib",
"BSD-3-Clause",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-other-permissive",
"BSD-2-Clause"
] | permissive | imane1992/hercules-390 | 841d40e09d28827f24b19edf3c84f602af2a01b0 | 3f185e1a9b5ad526aef41eb48d566e5a5e90a500 | refs/heads/master | 2021-01-19T00:13:57.946438 | 2016-06-12T18:42:38 | 2016-06-12T18:42:38 | 61,064,180 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 11,479 | tst | ieee-adds.tst | *
*Testcase IEEE CONVERT FROM/TO FIXED 32 (6), ADD (5), 11 instr total
* ADD tests - Binary Floating Point
*
#
# Tests five addition instructions:
# ADD (extended BFP, RRE)
# ADD (long BFP, RRE)
# ADD (long BFP, RXE)
# ADD (short BFP, RRE)
# ADD (short BFP, RXE)
#
# Also tests the following three conversion instructions
# CONVERT FROM FIXED (32 to short BFP, RRE)
# CONVERT FROM FIXED (32 to long BFP, RRE)
# CONVERT FROM FIXED (32 to extended BFP, RRE)
# CONVERT TO FIXED (32 to short BFP, RRE)
# CONVERT TO FIXED (32 to long BFP, RRE)
# CONVERT TO FIXED (32 to extended BFP, RRE)
#
# Also tests the following floating point support instructions
# LOAD (Short)
# LOAD (Long)
# LOAD ZERO (Long)
# STORE (Short)
# STORE (Long)
#
# Convert integers 1, 2, 4, -2 to each BFP floating point format
# Add first and second pairs together (1 + 2, 4 + -2) in each format
#
sysclear
archmode esame
r 1a0=00000001800000000000000000000200 # z/Arch restart PSW
r 1d0=0002000000000000000000000000DEAD # z/Arch pgm chk new PSW disabled wait
r 200=B70003EC # LCTL R0,R0,CTLR0 Set CR0 bit 45 - AFP Control
r 204=41200004 # LA R2,4 Set count of test input values
r 208=41300400 # LA R3,INTVALS point to start of input values
r 20C=41700410 # LA R7,SHORTBFP Point to start of short BFP input values
r 210=41800420 # LA R8,LONGBFP Point to start of long BFP input values
r 214=41900440 # LA R9,EXTBFP Point to start of extended BFP input values
# convert integers to three BFP formats
r 218=58103000 #CVTLOOP L R1,0(,R3) Get integer test value
r 21c=B3940001 # CEFBR R0,R1 Cvt Int in GPR1 to float in FPR0
r 220=70007000 # STE R0,0(,R7) Store short BFP
r 224=B3950001 # CDFBR R0,R1 Cvt Int in GPR1 to float in FPR0
r 228=60008000 # STD R0,0(,R8) Store long BFP
r 22C=B3960001 # CXFBR R0,R1 Cvt Int in GPR1 to float in FPR0-FPR2
r 230=60009000 # STD R0,0(,R9) Store extended BFP part 1
r 234=60209008 # STD R2,8(,R9) Store extended BFP part 2
r 238=41303004 # LA R3,4(,R3) point to next input values
r 23C=41707004 # LA R7,4(,R7) Point to next short BFP converted values
r 240=41808008 # LA R8,8(,R8) Point to next long BFP converted values
r 244=41909010 # LA R9,16(,R9) Point to next extended BFP converted values
r 248=46200218 # BCT R2,CVTLOOP Convert next input value.
# Add pairs of values together
r 24C=41200002 # LA R2,2 Set count of addition operations
r 250=41300500 # LA R3,SHORTRES Point to start of short BFP results
r 254=41400510 # LA R4,LONGRES Point to start of long BFP results
r 258=41500530 # LA R5,EXTRES Point to start of extended BFP results
r 25C=41700410 # LA R7,SHORTBFP Point to start of short BFP input values
r 260=41800420 # LA R8,LONGBFP Point to start of long BFP input values
r 264=41900440 # LA R9,EXTBFP Point to start of extended BFP input values
# Top of loop; clear residuals from FPR0-1
r 268=B3750000 #ADDLOOP LZDR R0 Zero FPR0
r 26C=B3750010 # LZDR R1 Zero FPR1
# BFP Short addition RXE and RRE
r 270=78007000 # LE R0,0(,R7) Get BFP short first of pair
r 274=ED007004000A # AEB R0,4(,R7) Add BFP short second of pair
r 27A=70003000 # STE R0,0(,R3) Store short BFP result from RXE
r 27E=78007000 # LE R0,0(,R7) Get BFP short first of pair
r 282=78107004 # LE R1,4(,R7) Get BFP short second of pair
r 286=B30A0001 # AEBR R0,R1 Add BFP values, result in FPR0
r 28A=70003004 # STE R0,4(,R3) Store short BFP from RRE
r 28E=41707008 # LA R7,8(,R7) Point to next short BFP input pair
r 292=41303008 # LA R3,8(,R3) Point to next short BFP result pair
# BFP Long addition RXE and RRE
r 296=68008000 # LD R0,0(,R8) Get BFP long first of pair
r 29A=ED008008001A # ADB R0,8(,R8) Add BFP long second of pair
r 2A0=60004000 # STD R0,0(,R4) Store long BFP result from RXE
r 2A4=68008000 # LD R0,0(,R8) Get BFP long first of pair
r 2A8=68108008 # LD R1,8(,R8) Get BFP long second of pair
r 2AC=B31A0001 # ADBR R0,R1 Add BFP values, result in FPR0
r 2B0=60004008 # STD R0,8(,R4) Store long BFP from RRE
r 2B4=41808010 # LA R8,16(,R8) Point to next long BFP input pair
r 2B8=41404010 # LA R4,16(,R4) Point to next long BFP result pair
# BFP Extended addition RRE
r 2BC=68009000 # LD R0,0(,R9) Get BFP ext. 1st half of first of pair
r 2C0=68209008 # LD R2,8(,R9) Get BFP ext. 2nd half of first of pair
r 2C4=68109010 # LD R1,16(,R9) Get BFP ext. 1st half of second of pair
r 2C8=68309018 # LD R3,24(,R9) Get BFP ext. 2nd half of second of pair
r 2CC=B34A0001 # AXBR R0,R1 Add BFP values, result in FPR0-FPR2
r 2D0=60005000 # STD R0,0(,R5) Store ext. BFP from RRE
r 2D4=60205008 # STD R2,8(,R5) Store ext. BFP from RRE
r 2D8=41909020 # LA R9,32(,R9) Point to next ext. BFP input pair
r 2DC=41505010 # LA R5,16(,R5) Point to next ext. BFP result
#
r 2E0=46200268 # BCT R2,ADDLOOP Add next input pair
#
# Convert back to integers
#
r 2E4=41200002 # LA R2,2 Set count of addition operations
r 2E8=41700500 # LA R7,SHORTRES Point to start of short BFP results
r 2EC=41800510 # LA R8,LONGRES Point to start of long BFP results
r 2F0=41900530 # LA R9,EXTRES Point to start of extended BFP results
r 2F4=41300550 # LA R3,ISHBFP Point to start of short BFP Integer results
r 2F8=41400560 # LA R4,ILNBFP Point to start of long BFP integer results
r 2FC=41500570 # LA R5,IXTBFP Point to start of extended BFP integer results
#
r 300=B3750000 #INTLOOP LZDR R0 Zero FPR0
# Convert shorts back to integer
r 304=78007000 # LE R0,0(,R7) Get BFP short result first of pair
r 308=B3980000 # CFEBR R0,R0 Convert to integer in r0
r 30C=50003000 # ST R0,0(,R3) Store integer result
r 310=78007004 # LE R0,4(,R7) Get BFP short result second of pair
r 314=B3980000 # CFEBR R0,R0 Convert to integer in r0
r 318=50003004 # ST R0,4(,R3) Store integer result
#
r 31C=68008000 # LD R0,0(,R8) Get BFP long result first of pair
r 320=B3990000 # CFDBR R0,R0 Convert to integer in r0
r 324=50004000 # ST R0,0(,R4) Store integer result
r 328=68008008 # LD R0,8(,R8) Get BFP long result second of pair
r 32C=B3990000 # CFDBR R0,R0 Convert to integer in r0
r 330=50004004 # ST R0,4(,R4) Store integer result
#
r 334=68009000 # LD R0,0(,R9) Get BFP ext. 1st half of first of pair
r 338=68209008 # LD R2,8(,R9) Get BFP ext. 2nd half of first of pair
r 33C=B39A0000 # CFXBR R0,R0 Convert BFP Ext. to Integer-64
r 340=50005000 # ST R0,0(,R5) Store integer result lower word
#
r 344=41707008 # LA R7,8(,R7) Point to next short BFP input pair
r 348=41303008 # LA R3,8(,R3) Point to next short BFP integer pair
r 34C=41808010 # LA R8,16(,R8) Point to next long BFP input pair
r 350=41404008 # LA R4,8(,R4) Point to next long BFP integer pair
r 354=41909010 # LA R9,16(,R9) Point to next ext. BFP input
r 358=41505004 # LA R5,4(,R5) Point to next ext. BFP integer
#
r 35C=46200300 # BCT R2,INTLOOP Add next input pair
#
r 360=B2B203F0 # LPSWE WAITPSW Load enabled wait PSW
#
r 3EC=00040000 # CTLR0 Control register 0 (bit45 AFP control)
r 3F0=00020000000000000000000000000000 # WAITPSW Disabled wait state PSW - normal completion
r 400=00000001 # 1 first test integer
r 404=00000002 # 2 second test integer
r 408=00000004 # 4 third test integer
r 40C=FFFFFFFE # -2 fourth test integer
# 410 first test in short bfp
# 414 second test in short bfp
# 418 third test in short bfp
# 41C fourth test in short bfp
# 420 first test in long bfp
# 428 second test in long bfp
# 430 third test in long bfp
# 438 fourth test in long bfp
# 440 first test in extended bfp
# 450 second test in extended bfp
# 460 third test in extended bfp
# 470 fourth test in extended bfp
# 500.10 Short add results (2 pairs, RXE & RRE)
# 510.20 Long add results (2 pairs, RXE & RRE)
# 530.20 Extended add results (1 pair, RRE only)
# 550.10 Convert short BFP to Integer results
# 560.10 Convert long BFP to Integer results
# 570.8 Convert extended BFP to Integer results
runtest
*Compare
r 410.10 # Inputs converted to BFP short
*Want "Int->Short BFP" 3F800000 40000000 40800000 C0000000
*Compare
r 420.10 # Inputs converted to BFP long one of two
*Want "Int->Long BFP 1 of 2" 3FF00000 00000000 40000000 00000000
*Compare
r 430.10 # Inputs converted to BFP long two of two
*Want "Int->Long BFP 2 of 2" 40100000 00000000 C0000000 00000000
*Compare
r 440.10 # Inputs converted to BFP ext one of four
*Want "Int->Extended BFP 1 of 4" 3FFF0000 00000000 00000000 00000000
*Compare
r 450.10 # Inputs converted to BFP ext two of four
*Want "Int->Extended BFP 2 of 4" 40000000 00000000 00000000 00000000
*Compare
r 460.10 # Inputs converted to BFP ext three of four
*Want "Int->Extended BFP 3 of 4" 40010000 00000000 00000000 00000000
*Compare
r 470.10 # Inputs converted to BFP ext four of four
*Want "Int->Extended BFP 4 of 4" C0000000 00000000 00000000 00000000
*Compare
r 500.10 # BFP short sums RXE and RRE
*Want "Short BFP Sums" 40400000 40400000 40000000 40000000
*Compare
r 510.10 # BFP long sums RXE and RRE part 1
*Want "Long BFP Sums 1 of 2" 40080000 00000000 40080000 00000000
*Compare
r 520.10 # BFP long sums RXE and RRE part 2
*Want "Long BFP Sums 2 of 2" 40000000 00000000 40000000 00000000
*Compare
r 530.10 # BFP extended sum RRE one of two
*Want "Ext BFP Sums 1 of 2" 40008000 00000000 00000000 00000000
*Compare
r 540.10 # BFP extended sum RRE two of two
*Want "Ext BFP Sums 2 of 2" 40000000 00000000 00000000 00000000
*Compare
r 550.10 # Short BFP to Integer results
*Want "Short BFP Integer Results" 00000003 00000003 00000002 00000002
*Compare
r 560.10 # Convert long BFP to Integer results
*Want "Long BFP Integer Results" 00000003 00000003 00000002 00000002
*Compare
r 570.8 # Convert extended BFP to Integer results
*Want "Extended BFP Integer Results" 00000003 00000002
*Done
|
d5722d328c45597e35727fc7621ecaae26cf15b6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1385/CH14/EX14.3/14_3.sce | a053c3cfea0f08e358bbe6c51cbb8c53cac4469c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 177 | sce | 14_3.sce | clc
//initialisation of variables
e= 0.323 //v
R= 0.0592
c= 0.001 //molar
//CALCULATIONS
pH= (e-R*log10(c))/R
//RESULTS
printf (' pH of the unkown solution= %.2f ',pH)
|
d5fbfcf50a311bf451b36902afb0e433e985d64e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1652/CH7/EX7.6/7_6.sce | b1a0c7a9a838edfe0f35dde050f1b1ff951371f1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 221 | sce | 7_6.sce | clc
//Initialization of variables
T=273.2+25 //K
n=1 //mol
R=1.987 //cal/deg mol
//calculations
Etr=1.5*n*R*T
Erot=1.5*n*R*T
Evib=0
Eel=0
Etot=Etr+Erot+Evib+Eel
//results
printf("Total energy = %d cal",Etot)
|
abaaeb0ab4eff9ce05580409baef8deba9b1abec | 139d4a83f28a14dc04c48d99a492bec7abcc3229 | /lab2_v8/2_reverse_matrix.sce | 4ffeac724dc530ffca121ad3fa907d70ed998a99 | [
"MIT"
] | permissive | s-kostyuk/labs_alg | 0f78d0a5df7b94f9190bc3b45a077fb3e68e74fb | 320902e94d9bfde9d7a13a427b315605929dec17 | refs/heads/master | 2021-01-10T03:54:40.483782 | 2015-12-03T22:52:39 | 2015-12-03T22:56:46 | 44,764,651 | 0 | 2 | null | 2015-12-01T15:07:01 | 2015-10-22T18:20:28 | Scilab | UTF-8 | Scilab | false | false | 149 | sce | 2_reverse_matrix.sce | clear;
exec( get_absolute_file_path('2_reverse_matrix.sce') + "support.sce", -1 );
x = inv( A ) * b;
checkSolving( A, x, b );
disp( x, "x = " );
|
73fbba101773973795911d39dd3c1d4a5f074cbc | fd53e4d4cb8520b84e44cf3729508c4b479fac3a | /1547.1/Tests/LFRT_LF1.tst | bbffd63f8e02659373edcf57501cbd3d1d2a38bd | [] | no_license | FREA-ENT/svp_1547.1 | ea1b7feb92671c3f5a3bbb503f39f76cc655fe59 | 728cde3b52bfd65db1eeecb05d62003d25aff9dc | refs/heads/master | 2020-05-23T21:28:02.374723 | 2019-05-07T22:24:02 | 2019-05-07T22:24:02 | 186,955,692 | 0 | 0 | null | 2019-05-16T05:13:03 | 2019-05-16T05:13:03 | null | UTF-8 | Scilab | false | false | 1,334 | tst | LFRT_LF1.tst | <scriptConfig name="LFRT_LF1" script="SA10_freq_ride_through">
<params>
<param name="eut.t_msa" type="float">1.0</param>
<param name="eut.freq_msa" type="float">2.0</param>
<param name="frt.n_r" type="int">5</param>
<param name="eut.frt_t_dwell" type="int">5</param>
<param name="frt.freq_test" type="float">57.0</param>
<param name="eut.freq_nom" type="float">60.0</param>
<param name="frt.freq_grid_max" type="float">60.0</param>
<param name="frt.freq_grid_min" type="float">60.0</param>
<param name="eut.v_nom" type="int">240</param>
<param name="frt.t_hold" type="float">299.0</param>
<param name="eut.p_rated" type="int">3000</param>
<param name="gridsim.mode" type="string">Disabled</param>
<param name="pvsim.mode" type="string">Disabled</param>
<param name="das_das_wf.mode" type="string">Disabled</param>
<param name="loadsim.mode" type="string">Disabled</param>
<param name="der.mode" type="string">Disabled</param>
<param name="gridsim.auto_config" type="string">Disabled</param>
<param name="das_das_rms.mode" type="string">Disabled</param>
<param name="frt.p_100" type="string">Enabled</param>
<param name="frt.p_20" type="string">Enabled</param>
<param name="frt.test_label" type="string">lfrt_lf1</param>
</params>
</scriptConfig>
|
72f812ac357efc8295562aefadf07b3932caa1f0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /770/CH2/EX2.7/2_7.sce | 2a64303473d024d0b2b14e65b750ab2a2e3cca53 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,468 | sce | 2_7.sce | clear;
clc;
funcprot(0);
//Example - 2.7
// Page number - 47
printf("Example - 2.7 and Page number - 47\n\n");
// Given
T = 50+273.15;//[K] - Temperature
P = 15*10^(5);//[N/m^(2)] - Pressure
Tc = 305.3;//[K] - Critical temperature
Pc = 48.72*10^(5);//[N/m^(2)] - Critical pressure
w = 0.100;// Acentric factor
B = -157.31;//[cm^(3)/mol] - second virial coefficient
B = B*10^(-6);//[m^(3)/mol]
C = 9650;//[cm^(6)/mol^(2)] - third virial coefficient
C = C*10^(-12);//[cm^(6)/mol^(2)]
R = 8.314;//[J/mol*K] - Universal gas constant
// (1)
V_1 = (R*T)/P;//[m^(3)/mol] - Molar volume
printf(" (1).The molar volume for ideal equation of state is %e m^(3)/mol\n",V_1);
// (2)
Tr = T/Tc;// Reduced temperature
// At this temperature
B_0 = 0.083-(0.422/(Tr)^(1.6));
B_1 = 0.139-(0.172/(Tr)^(4.2));
// We know,(B*Pc)/(R*Tc) = B_0+(w*B_1)
B_2 = ((B_0 + (w*B_1))*(R*Tc))/Pc;//[m^(3)/mol]//second virial coefficient
printf(" (2).The second virial coefficent using Pitzer correlation is found to be %e m^(3)/mol which is same as given value\n",B_2);
// (3)
// Given (virial equation),Z=1+(B/V)
V_3 = B + (R*T)/P;//[m^(3)/mol] - Molar volume
printf(" (3).The molar volume using virial equation of state is %e m^(3)/mol\n",V_3);
// (4)
// Given (virial equation),Z = 1 + ((B*P)/(R*T)) + ((C - B^(2))/(R*T)^(2))*P^(2)
V_4 = B + (R*T)/P + ((C - B^(2))/(R*T))*P;// [m^(3)/mol]
printf(" (4).The molar volume using given virial equation of state is %e m^(3)/mol\n",V_4);
// (5)
// Given,Z = 1 + (B/V)
// Also,Z = (P*V)/(R*T). Substituting the value of Z,we get
// V^(2)-((R*T)/P)*V-((B*R*T)/P)=0.Solving the quadratic equation
deff('[y]=f(V)','y=V^(2)-((R*T)/P)*V-((B*R*T)/P)');
V_5_1 = fsolve(0,f);
V_5_2 = fsolve(1,f);
printf(" (5).The molar volume using given virial equation of state is %e m^(3)/mol\n",V_5_2);
// The roots are,V_5_1=0.0001743 [m^(3)/mol] and V_5_2=0.0016168 [m^(3)/mol].
// As 'V_2' is near to ideal volume (0.0017911 [m^(3)/mol]),it is taken as the molar volume
// (6)
// Given,Z = 1 + (B/V) + (C/V^(2))
// Also,Z = (P*V)/(R*T). Substituting the value of Z,we get
// V^(3)-((R*T)/P)*V^(2)-((B*R*T)/P)*V-((C*R*T)/P)=0. Solving the cubic equation
deff('[y]=f1(V)','y=V^(3)-((R*T)/P)*V^(2)-((B*R*T)/P)*V-((C*R*T)/P)');
V_6_3=fsolve(-1,f1);
V_6_4=fsolve(0,f1);
V_6_5=fsolve(1,f1);
//The above equation has 1 real and 2 imaginary roots. We consider only real root.
printf(" (6).The molar volume using given virial equation of state is %e m^(3)/mol\n",V_6_5);
|
17eb05e2c2d12f7fb0c87bd8cd90eb8a1b15019a | 449d555969bfd7befe906877abab098c6e63a0e8 | /779/CH10/EX10.5/10_5.sce | 8b1709317834a8262fe2a7ab579fb0a2f286a3d5 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 730 | sce | 10_5.sce | // Part (a)
P1 = 10; P2 = 1;
T1 = 273+200; n = 1.15; R = 0.287;
v2 = ((R*T1)/(P1*100))*((P1/P2)^(1/1.15));
v1 = ((R*T1)/(P1*100));
T2 = T1*(P2/P1)*(v2/v1);
cv = 0.716;
Q = (cv+(R/(1-n)))*(T2-T1);
disp("If the fluid is in the air")
disp("m3/kg",v2,"The specific volume is")
disp("K",T2,"The final temperature is ")
disp("kJ",Q,"Heat transferred per kg is")
// Part (b)
v1 = 0.20596; u1 = 2621.9;
v2 = v1*(P1/P2)^(1/n);
x2 = (v2-0.001043)/(1.694-0.001043);
t2 = 99.62+273;
u2 = 417.33+(x2*2088.7);
W = ((P1*100*v1)-(P2*100*v2))/(n-1);
Q = u2-u1+W;
disp("If the fluid is in the steam")
disp("m3/kg",v2,"The specific volume is")
disp("K",t2,"The final temperature is ")
disp("kJ",Q,"Heat transferred per kg is") |
302543743dcfb99951a44ed0af999adca52e5248 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.5/tests/examples/strings.man.tst | 4192d9fb393e5c85823a3c8a255a55262612186a | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 70 | tst | strings.man.tst | clear;lines(0);
['this','is'; 'a 2x2','matrix']
"matrix"=="mat"+"rix"
|
46e2a91e1cb404f21b4ff8018cf541ba870b0b2c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2780/CH7/EX7.22/Ex7_22.sce | be93a8a7fd82e3cdbb51bda79ebaed6539fd1d51 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 363 | sce | Ex7_22.sce | clc
//to calculate probability of finding the particle
a=25*10^-10//width in angstrom
//wave function of the particle is chi(x)=sqrt(2/a)*sin(n*%pi*x/a),for the particle in the least energy state n=1
chix=sqrt(2/a)*sin(%pi*(a/2)/a)
delx=5*10^-10 //interval in angstrom
P=delx*chix^2
disp("probability of finding the particle is P="+string(P)+"unitless")
|
fa63b11f85f043f264dbb1afbe08b0e720f20b37 | 449d555969bfd7befe906877abab098c6e63a0e8 | /632/CH3/EX3.6/example3_6.sce | 775fceef1327ea981a114493dbc547d93913f61a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 284 | sce | example3_6.sce | //clc()
mH2 = 100;//kg
NH2 = mH2/2.016;
NFe = 3 * NH2 / 4;
mFe = NFe * 55.85;
disp("kg",mFe,"(a)mass of iron required = ")
NH2O = NH2 ;
mH2O = NH2O * 18;
disp("kg",mH2O,"mass of steam required =")
V1 = 22.4143;//m^3/kmol;
V = V1 * NH2;
disp("m^3",V,"Volume of hydrogen = ") |
7ae47efcd575cf18c99755e6d59b6dface564619 | 449d555969bfd7befe906877abab098c6e63a0e8 | /37/CH3/EX3.3/s3.sci | 65cbf0d7e84ae6c0d11a35db229f10ced43befa1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 335 | sci | s3.sci | function[fib]=fibbo(n)
fib=-1;
if(n<0)
disp("Invalid Entry");
else
if(n<=1)
fib=n;
else
fib=fibbo(n-1)+fibbo(n-2);
end
end
endfunction
function[l]=fibbon(n)
x=0;
l=(fibbo(0));
for x=1:n-1
l=[l(:,:),fibbo(x)];
end
disp(l);
endfunction
//Calling Routine:
n=5;
l=fibbon(n) |
6d7ae08bacd442d0e2bfa4a1579cc92d099299d0 | 7b040f1a7bbc570e36aab9b2ccf77a9e59d3e5c2 | /Scilab/local/2dof_controller/dc/freq/scilab/derv_bode.sce | 0b9fc20fb9aac56647009853c0594ebeca739f25 | [] | no_license | advait23/sbhs-manual | e2c380051117e3a36398bb5ad046781f7b379cb9 | d65043acd98334c44a0f0dbf480473c4c4451834 | refs/heads/master | 2021-01-16T19:50:40.218314 | 2012-11-16T04:11:12 | 2012-11-16T04:11:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 242 | sce | derv_bode.sce | // Updated(18-7-07)
// 5.4
w = 0.01:0.01:%pi;
G = 1-exp(-%i*w);
subplot(2,1,1)
plot2d1("gll",w,abs(G),style = 2);
label('',4,' ','Magnitude',4);
subplot(2,1,2)
plot2d1("gln",w,phasemag(G),style = 2);
label('',4,'w','Phase',4)
|
2952885d0d9b194a906198d052a59fbf8fa3d0cc | 417f69e36190edf7e19a030d2bb6aa4f15bb390c | /SMTTests/tests/err_globaldeclarations3.tst | f52a3a1d815fa949c636cdab86f92e282576086e | [] | no_license | IETS3/jSMTLIB | aeaa7ad19be88117c7454d807a944e8581184a66 | c724ac63056101bfeeb39cc3f366c8719aa23f7b | refs/heads/master | 2020-12-24T12:41:17.664907 | 2019-01-04T10:47:43 | 2019-01-04T10:47:43 | 76,446,229 | 1 | 0 | null | 2016-12-14T09:46:41 | 2016-12-14T09:46:41 | null | UTF-8 | Scilab | false | false | 204 | tst | err_globaldeclarations3.tst | ; checks global declarations
(set-option :global-declarations true)
(set-logic QF_UF)
(declare-fun a () Bool)
(reset)
(get-option :global-declarations) ; should be false
(assert a) ; not defined - ERROR
|
1ef4d1ab6a0c89613a999a7dc618e17ed3cf9354 | 449d555969bfd7befe906877abab098c6e63a0e8 | /659/CH1/EX1.7/exm1_7.sce | 757dc018527a77b778e91300b15c93d05034b08f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 331 | sce | exm1_7.sce | // Example 1.7
// SAMPLE PROGRAM 5: USE OF MATH FUNCTIONS
//Program using cosine function
angle=0;MAX=180;
printf(" Angle Cos(angle)\n");
while(angle<=MAX)
x=(%pi/MAX)*angle;
y=cos(x); //Use of cosine function
printf("%15d %13.4f\n",angle,y);
angle=angle+10;
end |
7d278363abb5f91cac0fa6a789337bf6405728a5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2252/CH19/EX19.13/Ex19_13.sce | e8416ea152d7c48a1215adf18db8f463228351b7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 552 | sce | Ex19_13.sce |
V=250//voltage applied to the motor
Eb1=V//Ra is negligible
N1=500//speed in rpm
Ia1=40//armature current
R=25//additional resistance
//as flux remains same, back emf is directly proportional to speed; and torque is directly proportional to armature current
//Eb2=250-Ia2*25, N2=500-50*Ia2
//also, torque varies as cube of speed
//from these conditions, we get, Ia2^3-30*Ia2^2+325*Ia2-1000=0
//solving this equation, we get
Ia2=5
N2=(Ia2/Ia1)^(1/3)*N1
mprintf("Speed of the motor with 25 ohm resistor in the armature circuit=%d rpm",N2)
|
9449a1e0c0043c1e394e81d7473e7e02e5607000 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2492/CH5/EX5.10/ex5_10.sce | c33336e3bda2ac6360bb463ab48332a87b608a18 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 862 | sce | ex5_10.sce | // Exa 5.10
format('v',5)
clc;
clear;
close;
// Given data
V = 5.7;// in V
V_BE = 0.7;// in V
R1 =10 * 10^3;// in ohm
R2 = 100 * 10^3;// in ohm
I_BQ = (V-V_BE)/(R1+R2);// in A
I_BQ = I_BQ * 10^3;// in mA
I_EQ = 100*I_BQ;// in mA
R1= 2;// in k ohm
R_L= 100*10^-3;// in k ohm
disp(I_EQ,"The value of I_EQ in mA is");
V_T = 0.026;// in V assumed
r_E = V_T/(I_EQ*10^-3);// in ohm
disp(r_E,"The value of r_E in ohm is");
Beta = 100;
h_fe= Beta;
r_pi = Beta*r_E;// in ohm
disp(r_pi,"The value of r_pi in ohm is : ")
ib= poly(0,'ib');
vb_by_ib= 0.572+101*1;// in k ohm
Ri= 10;// in k ohm
i1_by_ib= vb_by_ib/Ri;
is_by_ib= 1+i1_by_ib;
iL_by_ib= -h_fe*R1/(R1+R_L);
// Ai= iL/is = iL_by_ib/is_by_ib;
Ai= iL_by_ib/is_by_ib;
Rin= vb_by_ib/is_by_ib;// in k ohm
disp(Ai,"The value of Ai is : ")
disp(Rin,"The value of Rin in k ohm is : ")
|
aa7e6eef7afdd341064837f34e8270fedde74732 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1151/CH2/EX2.8/example8.sce | 05b386c8816bb34fba43035f7c118d2b5f3fb1f2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 336 | sce | example8.sce | printf("closed loop transfer function =K/(s^2+s/T+K/T))");
printf("characterstic equation of the given system is s^2+s/T+K/T=0");
printf("compare it with the standard second order characterstic equation s^2+2*d*w*s+w^2=0");
m1=.75;
m2=.25;
t1=-log(m1);
t2=-log(m2);
c=t1/t2;
d1=.4037;d2=.09118;
e=d1/d2;
disp(e^2,"K1/K2=");
|
40e21f116371af9e0a01eec8b606b8d2b2b9134d | 449d555969bfd7befe906877abab098c6e63a0e8 | /479/CH13/EX13.3/Example_13_3.sce | cfe3f9ae386047a010433ae70ca7aed514191f1a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 928 | sce | Example_13_3.sce | //Chemical Engineering Thermodynamics
//Chapter 13
//Thermodynamics in Phase Equilibria
//Example 13.3
clear;
clc;
//Given
x1 = 0.1;//mole fraction of methane
x2 = 0.9;//mole fraction of propane
P = [28.1 31.6 35.1];//Pressure in Kgf/sq cm are
K1 = [5.8 5.10 4.36];//Vapourisation constants of methane at the corresponding presssures
K2 = [0.61 0.58 0.56];//Vapourisation constants of propane at the correspondig pressures
//To Calculate the bubble point pressure of the solution
//From equation 13.27 (page no 245)
for i = 1:3
y1(i) = K1(i)*x1;//mole fraction of methane in the vapour phase
y2(i)= K2(i)*x2;//mole fraction of propane in the vapour phase
y(i) = y1(i)+y2(i);//sum of the mole fraction in the vapour phase
end
plot(P,y);
xtitle("y vs pressure","P","y");
P1 = interpln([y';P],1);// in Kgf/sq cm
mprintf('The bubble point pressure of the solution is %f Kgf/sq cm',P1);
//end |
7e5a91c4de2142aeaa79344db4315afadcd6ae59 | 449d555969bfd7befe906877abab098c6e63a0e8 | /998/CH29/EX29.8/Ex8.sce | 1b1327bf382e925273aea76ed3fcfc9c42e29023 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 278 | sce | Ex8.sce | //Ex:8
clc;
clear;
close;
r_e=6378;//radius of earth in km
h=1000;//altitude in km
cosx=r_e/(r_e+h);
v_s=7.35;//Velocity of satellite in km
v_tr=v_s*cosx;//component of satellite velocity towardsthe observer
printf("Component of the satellite velocity=%f km/sec",v_tr); |
f8f194f831e765afc3f665bfaba44ca632f909ac | 2eac84edf941c64588fef76f10d02309aabcb2fb | /System/Scilab/Scripts/createIFunction.sci | 29ba313f179512b0233523ac1d50c7c9a9bbfdfa | [
"BSD-3-Clause"
] | permissive | AlexisTM/X2C | fdd93bd33b931ea448ba516f5e3f9af6a5149a6a | 31f39b598afe271a7fd46ef1ee9e06c410b1120c | refs/heads/master | 2021-08-07T04:26:24.391617 | 2017-11-07T14:34:33 | 2017-11-07T14:34:33 | 109,844,123 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 14,719 | sci | createIFunction.sci | // Copyright (c) 2017, Linz Center of Mechatronics GmbH (LCM) http://www.lcm.at/
// All rights reserved.
//
// This file is licensed according to the BSD 3-clause license as follows:
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of the "Linz Center of Mechatronics GmbH" and "LCM" nor
// the names of its contributors may be used to endorse or promote products
// derived from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
// IN NO EVENT SHALL "Linz Center of Mechatronics GmbH" BE LIABLE FOR ANY
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// This file is part of X2C. http://www.mechatronic-simulation.org/
// $LastChangedRevision: 1111 $
// $LastChangedDate:: 2017-02-28 14:18:07 +0100#$
//
// Creates interface function for Xcos.
// Parameters:
// libName - Library name
// block - Java X2C block object
// varargin - (optional) project root directory for external blocks
function [] = createIFunction(libName, block, varargin)
funcprot(0);
//------------------------------------------------------------------------------
// Get relevant block information
//------------------------------------------------------------------------------
if length(varargin) == 0 then
// internal library
blockInfo = getBlockInfo(libName, block);
else
// external library
blockInfo = getBlockInfo(libName, block, varargin(1));
end
//------------------------------------------------------------------------------
// Create file
//------------------------------------------------------------------------------
try
// open/create file
fileName = blockInfo.scilabDir + blockInfo.xcosName + ".sci";
fileID = mopen(fileName, "wt");
// print header
time = datevec(datenum());
mfprintf(fileID, "// This file was generated by %s on %02d-%02d-%04d %02d:%02d\n\n", "createIFunction.sci", time(3), time(2), time(1), time(4), time(5));
// TODO: expand file header (e.g. with license)
mfprintf(fileID, "function [x_sci,y_sci,typ_sci] = %s(job, arg1, arg2)\n", blockInfo.xcosName);
mfprintf(fileID, "\n");
mfprintf(fileID, "thisBlockData.Library = '"%s'"\n", libName);
mfprintf(fileID, "thisBlockData.block_type_name = '"%s'"\n", blockInfo.blockName);
mfprintf(fileID, "thisBlockData.block_xcosfilename = '"%s'"\n", blockInfo.xcosName);
mfprintf(fileID, "\n");
mfprintf(fileID, "jimport('"at.lcm.x2c.parameterEditor.X2cParameterEditor_Xcos'");\n");
mfprintf(fileID, "jimport('"at.lcm.x2c.utils.Utils'");\n");
mfprintf(fileID, "\n");
mfprintf(fileID, "x_sci = [];\n");
mfprintf(fileID, "y_sci = [];\n");
mfprintf(fileID, "typ_sci = [];\n");
mfprintf(fileID, "X2CRootDir = jinvoke(jinvoke(Utils, '"getRootDirectory'"), '"toString'");\n");
mfprintf(fileID, "X2CRootDir = strsubst(X2CRootDir, '"\\'", '"/'");\n");
mfprintf(fileID, "\n");
mfprintf(fileID, "select job\n");
mfprintf(fileID, "case '"plot'" then\n");
mfprintf(fileID, "// ++ BlockGenerator: Plot Section\n");
if ~isempty(blockInfo.Visualization.PlotSection) then
// TODO: is this all necessary? wouldn't last line be sufficient?
mfprintf(fileID, " block_graphics = arg1.graphics;\n");
mfprintf(fileID, " block_model = arg1.model;\n");
mfprintf(fileID, " exprs = block_graphics.exprs;\n");
mfprintf(fileID, " xcosBlockId = block_model.uid;\n");
mfprintf(fileID, " if exists('"X2C_sampleTime'") then\n");
mfprintf(fileID, " X2C_sampleTime_tmp = X2C_sampleTime;\n");
mfprintf(fileID, " else\n");
mfprintf(fileID, " X2C_sampleTime_tmp = -1;\n");
mfprintf(fileID, " end\n");
mfprintf(fileID, " x2cPEdit = jnewInstance(X2cParameterEditor_Xcos, exprs, xcosBlockId, X2C_sampleTime_tmp);\n");
mfprintf(fileID, " %s\n", blockInfo.Visualization.PlotSection);
else
mfprintf(fileID, " standard_draw(arg1);\n");
end
mfprintf(fileID, "// -- BlockGenerator: Plot Section\n");
mfprintf(fileID, "\n");
mfprintf(fileID, "case '"getinputs'" then\n");
mfprintf(fileID, " [x_sci,y_sci,typ_sci] = standard_inputs(arg1);\n");
mfprintf(fileID, "\n");
mfprintf(fileID, "case '"getoutputs'" then\n");
mfprintf(fileID, " [x_sci,y_sci,typ_sci] = standard_outputs(arg1);\n");
mfprintf(fileID, "\n");
mfprintf(fileID, "case '"getorigin'" then\n");
mfprintf(fileID, " [x_sci,y_sci] = standard_origin(arg1);\n");
mfprintf(fileID, "\n");
mfprintf(fileID, "case '"set'" then\n");
mfprintf(fileID, " x_sci = arg1;\n");
mfprintf(fileID, " block_graphics = arg1.graphics;\n");
mfprintf(fileID, " block_model = arg1.model;\n");
mfprintf(fileID, " exprs = block_graphics.exprs;\n");
mfprintf(fileID, " xcosBlockId = block_model.uid;\n");
mfprintf(fileID, " while %%t do\n");
mfprintf(fileID, " if exists('"X2C_sampleTime'") then\n");
mfprintf(fileID, " X2C_sampleTime_tmp = X2C_sampleTime;\n");
mfprintf(fileID, " else\n");
mfprintf(fileID, " X2C_sampleTime_tmp = -1;\n");
mfprintf(fileID, " end\n");
mfprintf(fileID, " x2cPEdit = jnewInstance(X2cParameterEditor_Xcos, exprs, xcosBlockId, X2C_sampleTime_tmp);\n");
mfprintf(fileID, " thisBlock_isPartOfModel = jinvoke(x2cPEdit, '"isBlockPartOfModel'");\n");
mfprintf(fileID, " if (~ exists('"X2C_sampleTime'")) & (~ thisBlock_isPartOfModel) then\n");
mfprintf(fileID, " warning('"X2C_sampleTime is not set; default is used'");\n");
mfprintf(fileID, " elseif (exists('"X2C_sampleTime'")) & (thisBlock_isPartOfModel) then\n");
mfprintf(fileID, " warning('"X2C_sampleTime is set; but model sampleTime is used'");\n");
mfprintf(fileID, " end\n");
mfprintf(fileID, " if ~ exists('"%%scicos_prob'") then\n");
mfprintf(fileID, " // double click on icon\n");
mfprintf(fileID, " \n");
mfprintf(fileID, " ok = jinvoke(x2cPEdit, '"runGUI'");\n");
mfprintf(fileID, " else\n");
mfprintf(fileID, " ok = %%t;\n");
mfprintf(fileID, " end\n");
mfprintf(fileID, " \n");
mfprintf(fileID, " if ~ok then\n");
mfprintf(fileID, " break;\n");
mfprintf(fileID, " end\n");
mfprintf(fileID, " \n");
mfprintf(fileID, " impl = jinvoke(x2cPEdit, '"getUsedImplementationName'");\n");
mfprintf(fileID, " block_model.sim = list('"%s_'" + impl + '"_C'", 4);\n", blockInfo.xcosName);
mfprintf(fileID, " \n");
mfprintf(fileID, " xcp = jinvoke(x2cPEdit, '"getControlerParameter'");\n");
mfprintf(fileID, " \n");
mfprintf(fileID, " block_model.ipar = double(jinvoke(xcp, '"getIntegerParameter_values'"));\n");
mfprintf(fileID, " block_model.rpar = double(jinvoke(xcp, '"getDoubleParameter_values'"));\n");
mfprintf(fileID, " po = jinvoke(x2cPEdit, '"getControlerParameter_DoubleArrayParameter_values'");\n");
mfprintf(fileID, " otab = list();\n");
mfprintf(fileID, " \n");
mfprintf(fileID, " for i=0:jinvoke(po, '"size'")-1\n");
mfprintf(fileID, " otab($+1) = jinvoke(po, '"get'", i);\n");
mfprintf(fileID, " end\n");
mfprintf(fileID, " block_model.opar = otab;\n");
mfprintf(fileID, " \n");
mfprintf(fileID, " exprs = jinvoke(x2cPEdit, '"getXcosExprs'")'';\n");
mfprintf(fileID, " \n");
mfprintf(fileID, " block_graphics.exprs = exprs;\n");
mfprintf(fileID, " x_sci.graphics = block_graphics;\n");
mfprintf(fileID, " x_sci.model = block_model;\n");
mfprintf(fileID, " \n");
mfprintf(fileID, "// ++ BlockGenerator: Define Section\n");
if ~isempty(blockInfo.Visualization.DefineSection) then
mfprintf(fileID, "%s\n", blockInfo.Visualization.DefineSection);
else
// print nothing
end
mfprintf(fileID, "// -- BlockGenerator: Define Section\n");
mfprintf(fileID, " \n");
mfprintf(fileID, " break;\n");
mfprintf(fileID, " end\n");
mfprintf(fileID, " \n");
mfprintf(fileID, "case '"define'" then\n");
mfprintf(fileID, " if exists('"X2C_sampleTime'") then\n");
mfprintf(fileID, " X2C_sampleTime_tmp = X2C_sampleTime;\n");
mfprintf(fileID, " else\n");
mfprintf(fileID, " X2C_sampleTime_tmp = -1;\n");
mfprintf(fileID, " end\n");
mfprintf(fileID, " x2cPEdit = jnewInstance(X2cParameterEditor_Xcos, thisBlockData.block_type_name, X2C_sampleTime_tmp);\n");
mfprintf(fileID, " \n");
mfprintf(fileID, " inport_labels = jinvoke(x2cPEdit, '"getBlockInportNames'");\n");
mfprintf(fileID, " outport_labels = jinvoke(x2cPEdit, '"getBlockOutportNames'");\n");
mfprintf(fileID, " \n");
mfprintf(fileID, " // see: help scicos_model\n");
mfprintf(fileID, " model = scicos_model();\n");
mfprintf(fileID, " impl = jinvoke(x2cPEdit, '"getUsedImplementationName'");\n");
mfprintf(fileID, " model.sim = list('"%s_'" + impl + '"_C'", 4);\n", blockInfo.xcosName);
mfprintf(fileID, " model.in = jinvoke(x2cPEdit, '"getBlockInport_xcosDef'");\n");
if blockInfo.TimeDependency then
mfprintf(fileID, " model.evtin = [1];\n");
else
mfprintf(fileID, " model.evtin = [];\n");
end
mfprintf(fileID, " \n");
mfprintf(fileID, " model.out = jinvoke(x2cPEdit, '"getBlockOutport_xcosDef'");\n");
mfprintf(fileID, " model.state = []; // continuous states\n");
mfprintf(fileID, " model.dstate = []; // discrete-time states\n");
mfprintf(fileID, " \n");
mfprintf(fileID, " model.ipar = double(jinvoke(x2cPEdit, '"getControlerParameter_IntegerParameter_values'")'');\n");
mfprintf(fileID, " model.rpar = double(jinvoke(x2cPEdit, '"getControlerParameter_DoubleParameter_values'")'');\n");
mfprintf(fileID, " model.blocktype = '"c'";\n");
mfprintf(fileID, " model.nmode = 0;\n");
mfprintf(fileID, " model.nzcross = 0;\n");
if blockInfo.DirectFeedThrough then
mfprintf(fileID, " model.dep_ut = [%%t %%f];\n");
else
mfprintf(fileID, " model.dep_ut = [%%f %%f];\n");
end
mfprintf(fileID, " \n");
mfprintf(fileID, " exprs = jinvoke(x2cPEdit, '"getXcosExprs'")'';\n");
mfprintf(fileID, " \n");
mfprintf(fileID, "// ++ BlockGenerator: BlockIconDefaultSize\n");
if ~isempty(blockInfo.Visualization.BlockIconDefaultSize) then
mfprintf(fileID, " blockIconDefaultSize = %s;\n", blockInfo.Visualization.BlockIconDefaultSize);
else
mfprintf(fileID, " blockIconDefaultSize = %s;\n", ["[5, " + string(2 + blockInfo.maxPorts) + "]"]);
end
mfprintf(fileID, "// -- BlockGenerator: BlockIconDefaultSize\n");
mfprintf(fileID, " \n");
// mfprintf(fileID, "// ++ BlockGenerator: Define Section\n");
// if ~isempty(blockInfo.Visualization.DefineSection) then
// mfprintf(fileID, " %s\n", blockInfo.Visualization.DefineSection);
// else
// mfprintf(fileID, " gr_i = [];\n")
// end
// mfprintf(fileID, "// -- BlockGenerator: Define Section\n");
// mfprintf(fileID, " \n");
mfprintf(fileID, " gr_i = [];\n")
mfprintf(fileID, " \n");
mfprintf(fileID, " x_sci = standard_define(blockIconDefaultSize, model, exprs, gr_i);\n");
mfprintf(fileID, " \n");
mfprintf(fileID, " // see help: graphics structure\n");
mfprintf(fileID, " x_sci.graphics.in_label = inport_labels; // labels of regular input ports\n");
mfprintf(fileID, " x_sci.graphics.out_label = outport_labels; // labels of regular output ports\n");
//mfprintf(fileID, " x_sci.graphics.style = '"noLabel=0;displayedLabel=%%11$s %%10$s;'" // display first parameter (will be hidden by starter file, unless block visualization says something different)\n");
// mfprintf(fileID, "// ++ BlockGenerator: Plot Section\n");
// if ~isempty(blockInfo.Visualization.PlotSection) then
// mfprintf(fileID, " %s\n", blockInfo.Visualization.PlotSection);
// else
// // print nothing
// end
// mfprintf(fileID, "// -- BlockGenerator: Plot Section\n");
mfprintf(fileID, " \n");
mfprintf(fileID, "// ++ BlockGenerator: Define Section\n");
if ~isempty(blockInfo.Visualization.DefineSection) then
mfprintf(fileID, "%s\n", blockInfo.Visualization.DefineSection);
else
// print nothing
end
mfprintf(fileID, "// -- BlockGenerator: Define Section\n");
mfprintf(fileID, " \n");
mfprintf(fileID, " \n");
mfprintf(fileID, "end\n");
mfprintf(fileID, "\n");
mfprintf(fileID, "endfunction\n");
// close file
mclose(fileID);
mprintf("Interface function %s successfully written.\n", fileName);
catch
// some error creating the file occured
mclose(fileID); // try to close the file
disp("Error creating interface function for block " + blockInfo.blockName + ": " + lasterror());
end
endfunction
|
3e3992b3b578af4592a71ae1b7a878630df3a39a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3472/CH7/EX7.7/Example7_7.sce | 773007c4d95ea847550d101d877b4fbee1c2baca | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,502 | sce | Example7_7.sce | // A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION
// PART I : GENERATION
// CHAPTER 7: TARIFFS AND ECONOMIC ASPECTS IN POWER GENERATION
// EXAMPLE : 7.7 :
// Page number 74
clear ; clc ; close ; // Clear the work space and console
// Given data
load_industry = 750.0 // Industrial consumer load supplied by station(MW)
load_commercial = 350.0 // Commercial establishment load supplied by station(MW)
load_power = 10.0 // Domestic power load supplied by station(MW)
load_light = 50.0 // Domestic light load supplied by station(MW)
MD = 1000.0 // Maximum demand(MW)
kWh_gen = 50.0*10**5 // Number of kWh generated per year
// Calculations
// Case(i)
sum_demand = load_industry+load_commercial+load_power+load_light // Sum of max demand of individual consumers(MW)
diversity_factor = sum_demand/MD // Diversity factor
// Case(ii)
hours_year = 365.0*24 // Total hours in a year
average_demand = kWh_gen/hours_year // Average demand(MW)
LF = average_demand/MD*100 // Load factor(%)
// Results
disp("PART I - EXAMPLE : 7.7 : SOLUTION :-")
printf("\nCase(i) : Diversity factor = %.2f ", diversity_factor)
printf("\nCase(ii): Annual load factor = %.f percent", LF)
|
7e3c6f348c35cfa8b81ac40183dea65eef172419 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1970/CH10/EX10.2/Ch10Exa2.sce | 12744c11912aadf517f9c439c888c0a24b0b78a7 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 996 | sce | Ch10Exa2.sce | // Scilab code Exa10.2 : : Page-455 (2011)
clc; clear;
E_x = 7.70; // Energy of the alpha particle, MeV
E_y = 4.44; // Energy of the proton, MeV
m_x = 4.0; // Mass number of alpha particle
m_y = 1.0; // Mass number of protium ion
M_X = 14; // Mass number of nitrogen nucleus
M_Y = 17; // Mass number of oxygen nucleus
theta = 90*3.14/180; // Angle between incident beam direction and emitted proton, degree
A_x = 4.0026033; // Atomic mass of alpha particle, u
A_X = 14.0030742; // Atomic mass of nitrogen nucleus, u
A_y = 1.0078252; // Atomic mass of proton, u
Q = ((E_y*(1+m_y/M_Y))-(E_x*(1-m_x/M_Y))-2/M_Y*sqrt((m_x*m_y*E_x*E_y))*cos(theta))/931.5; // Q-value, u
A_Y = A_x+A_X-A_y-Q; // Atomic mass of O-17, u
printf("\nThe Q-value of the reaction = %9.7f u \nThe atomic mass of the O-17 = %10.7f u", Q, A_Y);
// Result
// The Q-value of the reaction = -0.0012755 u
// The atomic mass of the O-17 = 16.9991278 u
// Atomic mass of the O-17 : 16.9991278 u |
c77ef64bb5e2c04d91970f8b1610993e6868a63d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1388/CH1/EX1.14/1_14.sce | c9d97a2a78d7889406d35e739e0f7ab916a5e2c1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 276 | sce | 1_14.sce | clc
//initialisation of variables
u= 1.44*10^-18 //e.s.u
k= 3.8*10^-16
T= 273 //k
N= 6.023*10^23 //molecules
v= 6 //cc
Vm= 44.8*10^3 //cc
//CALCULATIONS
Pm= v+(4*%pi*N*u^2/(3*3*k*T))
r= Pm/Vm
k= (2*r+1)/(1-r)
//RESULTS
printf (' dielectric constant = %.5f ',k)
|
0791463c305d5031ea646ac57c64b109146f11d8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2267/CH4/EX4.1/Ex4_1.sce | b8e5e68995f786220a35dfb3f9f3435551df58d2 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 326 | sce | Ex4_1.sce | //Part A Chapter 4 Example 1
clc;
clear;
close;
format('v',6);
P=689*1000;//Pa
V1=0.04;//m^3
V2=0.045;//m^3
Wpaddle=-4.88;//kJ
Wpiston=integrate('689*1000','P',V1,V2)/1000;//kJ
disp("Work done on piston = "+string(Wpiston)+" kJ");
Wnet=Wpiston+Wpaddle;//kJ
disp("Work done on system = "+string(abs(Wnet))+" kJ");
|
396ea5c0c1e2e2d1455e4273571a444cdf6bdb4a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3651/CH5/EX5.6/6.sce | 8d7ef0e13b28a4b0435c0d61db6ae5d85ec1b1fb | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 487 | sce | 6.sce | //Variable declaration
e=1.6*10**-19; //charge(coulomb)
new=6.8*10**15; //frequency(revolutions per second)
mew0=4*%pi*10**-7;
R=5.1*10**-11; //radius(m)
//Calculation
i=(e*new); //current(ampere)
B=mew0*i/(2*R); //magnetic field at the centre(weber/m**2)
A=%pi*R**2;
d=i*A; //dipole moment(ampere/m**2)
//Result
printf('magnetic field at the centre is %0.3f weber/m**2\n',(B))
printf('dipole moment is %0.3f *10**-24 ampere/m**2\n',(d*10**24)) |
1f4c7a804f2f164ec436723c7aa5f263d4dec25c | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/1.1/macros/tdcs/portrait.sci | 41d2f3705ab9ec9569ac70953fea7207f136030a | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 5,804 | sci | portrait.sci | //[]=portrait(fch,odem,xdim,npts,farrow,pinit)
//[]=portrait(f,odem,[xdim,npts,farrow,pinit])
//
// permet de tracer le portrait de phase du syst\`eme dynamique
// dx/dt=f(t,x,[u]) ( u est un param\`etre contant )
// dans le cadre xdim=[xmin,ymin,xmax,ymax]
// Arguments:
// f : le champ du syst\`eme dynamique
// est soit un nom de macro qui calcule la valeur du champ en un point x
// [y]=f(t,x,[u])
// soit un object de type liste list(f1,u1) ou f1 est une macro de type
// [y]=f1(t,x,u) et u1 est la valeur que l'on veut donner a u
// soit une chaine de caract\`ere si le champ de vecteur
// est donne par un programme fortran (voir ode)
//
// Dans la forme d'appel par d\'efaut : portrait(fch) les valeurs
// du cadre et les pas d'int\'egration sont demand\'es interactivement.
//
// Param\`etres optionnels :
//
// odem= is the type argument of ode it can be one
// of the following character strings
// 'default'
// 'adams'
// 'stiff'
// 'rgk'
// 'discrete'
// 'roots'
// npts=[nombre-de-points,pas] -> sert \`a donner le nombre de points et
// le pas pour l'int\'egration num\'erique.
//
// xdim=[xmin,ymin,xmax,ymax] -> sert \`a donner le cadre du dessin
//
// farrow vaut 't' ou 'f' ( 'f' par defaut ) :
// s'il vaut 't' on rajoute des fl\`eches le long des trajectoires
//
// enfin on peut donner les points de d\'epart des int\'egrations num\'eriques
// dans un vecteur : ils ne seront alors pas demand\'ees interactivement
// pinit -> sert \`a donner des points de d\'epart pour l'int\'egration
// ex: pinit = [x0(1), x1(1); x0(2), x1(2)].
//!
xselect();
ncnl=lines();
lines(0);
//addtitle(fch);
[lhs,rhs]=argn(0);
// appel minimal
if rhs<=1,odem='default';end
//Version interactive
if rhs <= 2,
xdim=x_mdialog('Graphic boundaries',...
['xmin';'ymin';'xmax';'ymax'],...
['0';'0';'1';'1']);
xdim=evstr(xdim);xdim=xdim';
// Test sur le cadre
if xdim(3) <= xdim(1),
write(%io(2),'Erreur: xmin ] xmax '),lines(ncnl(1));return,end
if xdim(4) <= xdim(2),
write(%io(2),'Erreur: ymin ] ymax '),lines(ncnl(1));return,end
end
plot2d([xdim(1);xdim(1);xdim(3)],[xdim(2);xdim(4);xdim(4)])
if rhs<=3,
npts=x_mdialog('Requested points and step ',...
['n points';'step'],...
['100';'0.1']);
npts=evstr(npts);npts=npts';
end
ylast=(1/2)*[xdim(3)+xdim(1),xdim(4)+xdim(2)]';
if rhs<=4,farrow='f';end;
if rhs<=5
// Boucle sur les points de depart
go_on=1
while go_on=1,
ftest=1;
while ftest=1,
n=x_choose(['New initial point';'Continue ode';'Quit'],"Choose ");
n=n-1;
if n=-1,go_on=0;lines(ncnl(1));return;end
if n=2,go_on=0;lines(ncnl(1));return;end
if n=0,[i,x,y]=xclick(); x0=[x,y];end;
if n=1,x0=ylast';end;
ftest=desorb(odem,x0',npts,fch,farrow,xdim);
if ftest=1;x_message('Initial value out of boundaries'),end
end
end
else
// Version sans poser de question
res=desorb(odem,pinit,npts,fch,farrow,xdim);
if res=1,write(%io(2),'Points hors du cadre elimines ');end;
end
lines(ncnl(1));
//end
//[]=addtitle(fch)
//[]=addtitle(fch)
// Ajoute des titres pour les portraits de phase des syt\`emes
// dynamiques des travaux dirig\'es.
//!
if type(fch)<>11& type(fch)<>13 then return;end;
if fch=linear,xtitle("Systeme lineaire"," "," ",0);end
if fch=linper,xtitle("Systeme lineaire perturbe "," "," ",0);end
if fch=cycllim,xtitle("Systeme avec cycle limite "," "," ",0);end
if fch=bioreact,xtitle("Bioreacteur ","biomasse ","sucre ",0);end
if fch=lincom,xtitle("Systeme lineaire commande "," "," ",0);end
if fch=p_p,xtitle("Modele proie-predateur ","proies ","predateurs ",0);end
if fch=compet,xtitle("Modele de competition ","population 1 "...
,"population2 ",0);end
if fch='bcomp',xtitle("Modele de competition observe-comtrole ",...
"population 1 ","population2 ",0);end
if fch='lcomp',xtitle("Modele de competition linearise observe-comtrole ",...
"population 1 ","population2 ",0);end
//end
//[res]=desorb(odem,x0,n1,fch,farrow,xdim);
//[res]=desorb(odem,x0,n1,fch,farrow,xdim);
// Calcule des orbites pour des points de
// depart donn\'es dans x0 et les dessine
// v\'erifie que les points de d\'epart sont a l'int\'erieur du
// cadre. Si l'un des points est a l'exterieur la valeur renvoy\'ee
// est 1
// renvoit aussi une valeur dans xlast ( le dernier point de la derniere
// trajectoire)
//!
res=0
[nn1,n2]=size(x0);
if odem='discret', style=[0], else style=-1;end
for i=1:n2,
ftest=1;
if x0(1,i) > xdim(3), ftest=0;end
if x0(1,i) < xdim(1), ftest=0;end
if x0(2,i) > xdim(4), ftest=0;end
if x0(2,i) < xdim(2), ftest=0;end
if ftest=0;res=1,ylast=x0,else
write(%io(2),'Calculs en cours')
if odem='default' then
y=ode([x0(1,i);x0(2,i)],0,n1(2)*(0:n1(1)),fch);
else
y=ode(odem,[x0(1,i);x0(2,i)],0,n1(2)*(0:n1(1)),fch);
end;
[nn1,n11]=size(y);
// on coupe la trajectoire au temps d'arret T
// T d'atteinte du bord du cadre
[mi1,ki1]=mini(y(1,:),xdim(3)*ones(1,n11));
[ma1,ka1]=maxi(y(1,:),xdim(1)*ones(1,n11));
k1=maxi(ki1,ka1);
[mi2,ki2]=mini(y(2,:),xdim(4)*ones(1,n11));
[ma2,ka2]=maxi(y(2,:),xdim(2)*ones(1,n11));
k2=maxi(ki2,ka2);
[m11,k11]=maxi(k1);
[m22,k22]=maxi(k2);
if k11=1,k11=n1(1);end
if k22=1,k22=n1(1);end
kf=mini(k11,k22);
if kf=1, kf=n1(1),end
if farrow='t',
plot2d4("gnn",y(1,1:kf)',y(2,1:kf)',style,"111"," ",xdim);
else
plot2d(y(1,1:kf)',y(2,1:kf)',style,"111"," ",xdim);
end,
ylast=y(:,kf);
end
end
[ylast]=resume(ylast)
//end
|
c128005610389b8d2d36478116171993d6c808b6 | b29e9715ab76b6f89609c32edd36f81a0dcf6a39 | /ketpicscifiles6/Borderparadata.sci | 2e944821f5fa303ada6fd1a4542bef553075125d | [] | no_license | ketpic/ketcindy-scilab-support | e1646488aa840f86c198818ea518c24a66b71f81 | 3df21192d25809ce980cd036a5ef9f97b53aa918 | refs/heads/master | 2021-05-11T11:40:49.725978 | 2018-01-16T14:02:21 | 2018-01-16T14:02:21 | 117,643,554 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,305 | sci | Borderparadata.sci | // 08.09.13
// 08.09.16
// 08.10.10
// 08.10.11
// 08.10.15
// 08.10.28
// 09.03.09
// 09.05.27
// 09.06.03
// 10.02.16 Eps=> [Eps, Epsmg]
// 13.10.21 ( __ added to varibles )
function FsL__=Borderparadata(varargin)
global BORDERPT OTHERPARTITION HIDDENDATA BORDERHIDDENDATA
global PARTITIONPT
Nargs__=length(varargin);
FkL__=varargin(1);
Fd__=varargin(2); N__=3;
FdL__=Fullformfunc(Fd__);
Fxy__=Mixop(1,FdL__);
Tmp__1=Mixop(2,FdL__);
Tmp__2=Mixop(3,FdL__);
Tmp__3=Mixop(4,FdL__);
Xyzstr__=[Tmp__1,Tmp__2,Tmp__3];
DrwS__=Mixop(7,FdL__);
Tmp__=Mixop(5,FdL__);
K__=mtlb_findstr(Tmp__,'=');
Uname__=part(Tmp__,1:K__-1);
Urg__=evstr(part(Tmp__,K__+1:length(Tmp__)));
Tmp__=Mixop(6,FdL__);
K__=mtlb_findstr(Tmp__,'=');
Vname__=part(Tmp__,1:K__-1);
Vrg__=evstr(part(Tmp__,K__+1:length(Tmp__)));
Np__=[50,50];
if Nargs__>=3
Np__=varargin(3); N__=4;
if type(Np__)==1 & length(Np__)==1
Np__=[Np__,Np__];
end;
end;
Eps__=[0.05,1]; //
if Nargs__>=N__ Eps__=varargin(N__); end;
Eps__2=0.2;
if Nargs__>=N__+1 Eps__2=varargin(N__+1); end;
Umin__=Urg__(1); Umax__=Urg__(2);
Vmin__=Vrg__(1); Vmax__=Vrg__(2);
EkL__=[];
Tmp__=mtlb_findstr(DrwS__,'e');
if length(Tmp__)~=0
Tmp__1=strsubst(Xyzstr__,Uname__,'('+string(Umax__)+')');
Tmp__2=Mixop(6,FdL__);
Tmp__3='N='+string(Np__(2));
Tmp__=Spacecurve(Tmp__1,Tmp__2,Tmp__3);
EkL__=Mixadd(EkL__,Tmp__);
end;
Tmp__=mtlb_findstr(DrwS__,'n');
if length(Tmp__)~=0
Tmp__1=strsubst(Xyzstr__,Vname__,'('+string(Vmax__)+')');
Tmp__2=Mixop(5,FdL__);
Tmp__3='N='+string(Np__(1));
Tmp__=Spacecurve(Tmp__1,Tmp__2,Tmp__3);
EkL__=Mixadd(EkL__,Tmp__);
end;
Tmp__=mtlb_findstr(DrwS__,'w');
if length(Tmp__)~=0
Tmp__1=strsubst(Xyzstr__,Uname__,'('+string(Umin__)+')');
Tmp__2=Mixop(6,FdL__);
Tmp__3='N='+string(Np__(2));
Tmp__=Spacecurve(Tmp__1,Tmp__2,Tmp__3);
EkL__=Mixadd(EkL__,Tmp__);
end;
Tmp__=mtlb_findstr(DrwS__,'s');
if length(Tmp__)~=0
Tmp__1=strsubst(Xyzstr__,Vname__,'('+string(Vmin__)+')');
Tmp__2=Mixop(5,FdL__);
Tmp__3='N='+string(Np__(1));
Tmp__=Spacecurve(Tmp__1,Tmp__2,Tmp__3);
EkL__=Mixadd(EkL__,Tmp__);
end;
if Mixlength(EkL__)>0
FkL__=Mixjoin(FkL__,EkL__);
end;
Fall__=Projpara(FkL__);
if Mixtype(Fall__)==1
Fall__=Mix(Fall__)
end;
Fbdxy__=Makexybdy(Fd__,Np__);
Tmp__=Mixop(2,Fd__);
K__=mtlb_findstr(Tmp__,'=');
Xname__=part(Tmp__,1:K__-1);
Tmp__=Mixop(3,Fd__);
K__=mtlb_findstr(Tmp__,'=');
Yname__=part(Tmp__,1:K__-1);
BORDERPT=[];
Tmp__=[];
for I__=1:Mixlength(Fall__)
Tmp__=Mixadd(Tmp__,[]);
end;
OTHERPARTITION=Tmp__;
FsL__=[];
BORDERHIDDENDATA=[];
for I__=1:Mixlength(Fall__)
Tmp__=Mixop(I__,FkL__);
Tmp__=Projpara(Tmp__);
Par__=Partitionseg(Tmp__,Fall__,Eps__(1),Eps__2,I__); //
if Mixlength(PARTITIONPT)>2
Tmp__=Mixlength(PARTITIONPT)-1;
Tmp__1=Mixsub(2:Tmp__,PARTITIONPT);
BORDERPT=Mixjoin(BORDERPT,Tmp__1);
end;
Tmp__1=Mixop(I__,FkL__);
Tmp__=Nohiddenpara2(Par__,Tmp__1,Fd__,1,Np__,Eps__);
if Mixlength(HIDDENDATA)>0
BORDERHIDDENDATA=Mixjoin(BORDERHIDDENDATA,HIDDENDATA);
end;
if Mixlength(Tmp__)>0
FsL__=Mixjoin(FsL__,Tmp__);
end;
end;
endfunction;
|
1a03c059e470e5b67125b5383e4307acf996f62a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3863/CH13/EX13.6/Ex13_6.sce | e916e3048c173ca6fb8652fcb4df088bdcba8648 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 640 | sce | Ex13_6.sce | clear
//
//Given
//Variable declaration
L=3*1000 //Length in mm
w=10 //Uniformly distributed load in N/mm
a=2*1000 //Length of Uniformly distributed load from fixed end in mm
I=1e8 //Moment of Inertia in mm^4
E=2e5 //Youngs modulus in N/sq.mm
//Calculation
//case(i):Slope at the free end
thetaB=(((w*(L**3))/(6*E*I))-((w*((L-a)**3))/(6*E*I)))
//case(ii):Deflection at the free end
yB=(((w*L**4)/(E*I*8))-(((w*(L-a)**4)/(8*E*I))+((w*(L-a)**3)/(6*E*I)*a)))
//Result
printf("\n Slope at the free end = %0.3f rad",thetaB)
printf("\n Deflection at the free end = %0.3f mm",yB)
|
db5bf93c5a5790fe2836130dbdfd85f5b361c2ff | 35071fb08cee13f4a9e79c396f7c8c028f69db0e | /Tests/Verif/OK/while_w_bool.tst | 7063ffe071c418f4b1fc8eb98af450910909e9f7 | [] | no_license | V1nc3ntL/Compilation | 2cd9d4fa728055cebd44659cba517e49298142bc | e2008449ddb509021f6ddcfd0a92226807bec9ab | refs/heads/master | 2023-06-01T09:42:01.069684 | 2021-06-02T19:15:13 | 2021-06-02T19:15:13 | 357,205,127 | 0 | 0 | null | 2021-05-31T12:13:32 | 2021-04-12T13:30:46 | C | UTF-8 | Scilab | false | false | 215 | tst | while_w_bool.tst |
int start = 0;
int end = 100;
bool next = true;
void main()
{
sum = start;
while(next){
sum = sum + i;
if(sum > end){
next = false;
}
}
print("sum: ",sum,"\n");
}
|
0445999f8ac80afddf9040a6f33c12683bed41ac | 449d555969bfd7befe906877abab098c6e63a0e8 | /1571/CH10/EX10.2/Chapter10_Example2.sce | 3a0919a8a55609ed551d977e58e6b97375c8a04c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 281 | sce | Chapter10_Example2.sce | clc
clear
//INPUT
t=295;//temperature of water in K
dp=10^6;//cahnge in pressure in dyne/sq.cm
j=4.2*10^7;//joules constant in ergs/cal
//CALCULATIONS
dc=-t*10^-5*dp/j;//change in specific heat
//OUTPUT
mprintf('the change in specific heat is %3.7f cal/degree',dc)
|
2a604e8a367dff477bee30c2dfb041c14ee6078f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2609/CH6/EX6.14/Ex6_14.sce | a2ee02b4996ecfa1e004feeddb6b1273d66f09be | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 394 | sce | Ex6_14.sce | //Ex 6.14
clc;
clear;
close;
format('v',4);
//Data given
R1=6.8;//kohm
Ri=100;//kohm
R2=1.5;//kohm
Cf=0.01;//micro F
Vsat=14;//V
Vo_pp=2*R2/R1*Vsat;//V////Peak to peak output of triangular wave
disp(Vo_pp,"Peak to peak output of triangular wave(V)");
format('v',5);
f0=R1*1000/(4*Ri*10^3*Cf*10^-6*R2*10^3)/1000;//kHz//Oscillating Frequency
disp(f0,"Oscillation frequency(Hz)");
|
39428216cca21acb680a28ba3f5bcd22bcbbba31 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2360/CH4/EX4.4/ex4_4.sce | b2dcce44efaf0253d3cabab0aadd20780ba4a08d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 306 | sce | ex4_4.sce | // Exa 4.4
format('v',7);clc;clear;close;
// Given data
t1 = 83.33;// in ms
V_R = 100;// in mV
Vi = 100;// in mV
fc = 12;//clock frequency in kHz
fc = fc* 10^3;// in Hz
Digitaloutput = round(fc*t1*(Vi/V_R)*10^-3);//digital output in counts
disp(Digitaloutput,"The Digital output in counts is");
|
400682ea8c2bd0ba0073b6151c5ec59eefa2dba1 | e0124ace5e8cdd9581e74c4e29f58b56f7f97611 | /3913/CH12/EX12.11/Ex12_11.sce | 0cfe70817ceb510f6702e6761462e11845a3a6ae | [] | no_license | psinalkar1988/Scilab-TBC-Uploads-1 | 159b750ddf97aad1119598b124c8ea6508966e40 | ae4c2ff8cbc3acc5033a9904425bc362472e09a3 | refs/heads/master | 2021-09-25T22:44:08.781062 | 2018-10-26T06:57:45 | 2018-10-26T06:57:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 357 | sce | Ex12_11.sce | //Chapter 12 : Solutions to the Exercises
//Scilab 6.0.1
//Windows 10
clear;
clc;
//Solution for 2.4
mprintf('[\n cosx -sinx')
mprintf('\n sinx cosx\n ]')
mprintf('\n *\n [\n 1\n 0\n ]')
mprintf('\n =\n [\n cosx\n sinx\n ]')
cosx=(5/13)
sinx=(12/13)
xy=[(5/13) (-12/13);(12/13) (5/13)]*[2;3]
disp(xy(1,1),'x''=')
disp(xy(2,1),'y''=')
|
b9b2789bba52a387e4ff3950f4d1c925152fb2f9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1574/CH3/EX3.17/M_Ex_3_17.sce | ac7a8f219652408b55105ed9bac6833283ac7f63 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 436 | sce | M_Ex_3_17.sce | clc
//Chapter3: Modulation
//Example3.17, page no 171
//Given
gm=0.1e-3// trans-conductance variation A/V
C=0.5e-12// capactance between anode and grid
R=1e3// resistance
fo=10e6// oscillator freq
Vrms=1.414//AF RMS voltage
Vp=sqrt(2)*Vrms//Peak voltage
Ct=100e-12//tank capacitance
deltaC=gm*C*R*Vp
deltaF=fo*(deltaC/(2*Ct))// maximum freq deviation
mprintf('The maximum freq deviation is: %d kHz',round(deltaF/1000))
|
cb8234593ce9ac8f541bd72f4995c20bc92bab6a | 449d555969bfd7befe906877abab098c6e63a0e8 | /1514/CH15/EX15.3/15_3.sce | 89aaabe2a1736bd89934a7ca4bd024d677b19dc0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 562 | sce | 15_3.sce | //chapter 15
//example 15.3
//page 462
clear all;
clc ;
//given
vcc=10;//supply voltage(dual supply)
fo=10;//op frequency
Ibmax=500;//base current nA
I4=500;//current through R4 in microA
vo=vcc-1;//op voltage
R34=1000*vo/I4;//R3+R4
//R3=2xR4,R34=3*R4=18;
R4=R34/3;
printf("\nR4=%d kohm,use standard value 5.6 kohm",R4);R4=5.6;
R3=2*R4;
printf("\nR3=%.1f kohm,use standard value 12 kohm",R3);R3=12;
R2=R4;printf("\nR2=%.1f kohm",R2);
R1=R2;printf("\nR1=%.1f kohm",R1);
C=10^6/(2*%pi*R1*fo);
printf("\nC=%d pF, standard value 2700 pF",C)
|
81e1eb95ceb21a5facfeebcd7650f9bc642f333c | e41b69b268c20a65548c08829feabfdd3a404a12 | /3DCosmos/Data/Scripts/Mathematics/HarmonicObjects.SCI | a044724e6fcc68e320cc24d1a8a5c44b4306b6cd | [
"LicenseRef-scancode-khronos",
"MIT"
] | permissive | pvaut/Z-Flux | 870e254bf340047ed2a52d888bc6f5e09357a8a0 | 096d53d45237fb22f58304b82b1a90659ae7f6af | refs/heads/master | 2023-06-28T08:24:56.526409 | 2023-03-01T12:44:08 | 2023-03-01T12:44:08 | 7,296,248 | 1 | 1 | null | 2023-06-13T13:04:58 | 2012-12-23T15:40:26 | C | UTF-8 | Scilab | false | false | 4,123 | sci | HarmonicObjects.SCI | codeblock readtextfile(ScriptDir+"\_TOOLS.sci");
sf=T_scene_create;
sss=T_getscene;
sss.ambientlightcolor=color(0.15,0.15,0.15);
######################################################################################
# SETTINGS DIALOG BOX
######################################################################################
dsize=0.03;
psy=0.95;
controlids= list("fsa","psa","fca","pca","fsb","psb","fcb","pcb");
controls=list;
cframe=root.SC.Universe.addscreenframe("Controls Frame");
cframe.EnabeMouseArrow(point(0.5,0.5),point(0,0),point(1,1),0.03);
cframe.enablelight=false;
cframe.BlendType=BlendTranslucent;
cframe.DepthMask=DepthMaskDisable;
cframe.color=color(1,1,1,0.5);
foreach ctrlid in controlids do {
cframe.add("TextControl","Size":dsize,"Position":point(0.01,psy),"Content":ctrlid);
ctrl=cframe.add("ScalarControl","Size":dsize,"Position":point(0.09,psy));
ctrl.SizeX=0.04;ctrl.RangeSizeX=0.1;
ctrl.min=0;ctrl.max=6;ctrl.step=1;
ctrl.value=0;
if ctrlid=="fsa" then ctrl.value=3;
if ctrlid=="psa" then ctrl.value=2;
if ctrlid=="fcb" then ctrl.value=4;
if ctrlid=="pcb" then ctrl.value=2;
psy=psy-0.05;
controls.add(ctrl);
}
cframe.add("TextControl","Size":dsize,"Position":point(0.28,0.95),"Content":'Resolution');
resolctrl=cframe.add("ScalarControl","Size":dsize,"Position":point(0.28+0.12,0.95));
resolctrl.SizeX=0.08;resolctrl.RangeSizeX=0.1;
resolctrl.min=30;resolctrl.max=200;resolctrl.step=10;
resolctrl.value=70;
calcbutton=cframe.add("ButtonControl","Size":dsize,"SizeX":0.11,"Position":point(0.28,0.9),"Content":'Calculate');
#Initialise variables
fsa=0;psa=0;fca=0;pca=0;fsb=0;psb=0;fcb=0;pcb=0;
function createobject()
{
refframe.clearobjects;
rendermessage('Calculating');
resol=resolctrl.value;
fsa=controls(0).value;
psa=controls(1).value;
fca=controls(2).value;
pca=controls(3).value;
fsb=controls(4).value;
psb=controls(5).value;
fcb=controls(6).value;
pcb=controls(7).value;
fnc=functor("radial2point(sin(fsa*a)^psa+cos(fca*a)^pca+sin(fsb*b)^psb+cos(fcb*b)^pcb,a,b)","a","b");
cfnc=functor("color(0.3*(@vector(p).size),0.5,1-0.3*(@vector(p).size))","p");
obj=refframe.add("Surface");
obj.renderback=true;
obj.color=color(1,1,1);
obj.SpecularValue=30;
obj.SpecularColor=color(0.35,0.35,0.35);
obj.canbuffer=true;
obj.Generate(fnc,0,2*Pi,resol,-0.5*Pi,0.5*Pi,resol);
obj.GenerateVertexProperty(cfnc,VertexPropertyColor);
#make formula
txtframe.clearobjects;
txt=txtframe.add("FormattedText","Position":point(0.02,0.07),"Size":0.05,"Color":color(0.7,0.7,0.7),"MaxLenX":10);
st="";const=0;
if (fsa>0) and (psa>0) then {
if st.length>0 then st=st+" + ";
st=st+"sin";
if psa>1 then st=st+"^"+str(psa);
if fsa>1 then st=st+" "+str(fsa);
st=st+" \theta";
} else const=const+1;
if (fca>0) and (pca>0) then {
if st.length>0 then st=st+" + ";
st=st+"cos";
if pca>1 then st=st+"^"+str(pca);
if fca>1 then st=st+" "+str(fca);
st=st+" \theta";
} else const=const+1;
if (fsb>0) and (psb>0) then {
if st.length>0 then st=st+" + ";
st=st+"sin";
if psb>1 then st=st+"^"+str(psb);
if fsb>1 then st=st+" "+str(fsb);
st=st+" \phi";
} else const=const+1;
if (fcb>0) and (pcb>0) then {
if st.length>0 then st=st+" + ";
st=st+"cos";
if pcb>1 then st=st+"^"+str(pcb);
if fcb>1 then st=st+" "+str(fcb);
st=st+" \phi";
} else const=const+1;
if const>0 then {
if st.length>0 then st=st+" + ";
st=st+str(const);
}
txt.content=txt.content+"$";
txt.content="$R="+st+"$";
txt.enablelight=false;
hiderendermessage;
}
refframe=sf.addsubframe("refframe");
refframe.transf.rotate(vector(1,0,0),Pi/2);
txtframe=sf.addscreenframe("txtframe");
createobject;
vp=root.Viewports.main;
while true do {
dr1=-1*vp.cameradir;
dr2=vecnorm(dr1*vector(0,1,0));
dr3=vecnorm(dr1*dr2);
sss.light0pos=point(0,0,0)+500*(dr1-dr2-0.5*dr3);
if calcbutton.wasmodified then createobject;
render;
}
|
67e28ce41920cfcb9bd35af0b9302612b35c2fc0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /181/CH7/EX7.59/example7_59.sce | 564599556eba94d6190a38f707e00aad092b3e8c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 805 | sce | example7_59.sce | // Design a source follower
// Basic Electronics
// By Debashis De
// First Edition, 2010
// Dorling Kindersley Pvt. Ltd. India
// Example 7-59 in page 361
clear; clc; close;
// Given data
Vds=14; // Drain-source voltage in V
Idq=3*10^-3; // Drain-source current in mA
Vdd=20; // Drain voltage in V
gm=2*10^-3; // Transconductance in mS
rd=50*10^3; // Dynamic resistance in K-ohms
Vgs=-1.5; // Gate-source voltage in V
// Calculation
R=(20-14)/Idq;
R1=Vgs/-Idq;
R2=R-R1;
Ro=1/gm;
Av=R/(R+Ro);
R_1=1/(1-(Av*(R2/R)));
printf("R1 = %0.1e ohms\nR2 = %0.1e ohms\nRo = %0.1e ohms\n",R1,R2,Ro);
printf("Av = %0.1f*Av1\n",Av);
printf("Effective input resistance R1 = %0.1f*R3",R_1);
// Result
// R1 = 0.5 K
// R2 = 1.5 K
// Ro = 0.5 K
// Av = 0.8*Av'
// R1(effective) = 2.5*R3 |
a0442acaf36563c9e4e0cc36b60c75cf8412c0a8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3401/CH5/EX5.7/Ex5_7.sce | 11be3e258a84d139852eedbd3a0dd4db1cb09a09 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 290 | sce | Ex5_7.sce | clc
I=10^-3 //A
Bz=5*10**-2 //500gauss
e=1.6810*10**-19 //C
Vh=-6.25*10^-3 //V
Vx=12.5 //V
W=10**-4//m
d=10**-5 //m
u=-(I*Bz)/(e*Vh*d)
disp(u,"electron concemtration in m^-3 is= ")
un=(I*I)/(e*Bz*Vx*W*d)
disp(un,"electron mobility in /Vs is=")// textbook ans is wrong
|
1121c94fdf38b54fe54ee1a44263bb759e61c967 | 0b933bd2623c74cae8a4da69fc33f0828c27ca65 | /progs/scilab/thing.sce | 163776d5fd9ceb41266a889c753f0d9d977e4cad | [] | no_license | gaetanbahl/IRL_MongeAmpere_OptimalTransport | dcc694cc2471c20b68958c9fd0d72065acb5271a | abf56fa34c36d9440e0ec8b25bd0bce41c0480b4 | refs/heads/master | 2021-01-01T03:48:20.062779 | 2016-05-27T09:32:06 | 2016-05-27T09:32:54 | 59,815,804 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 13,821 | sce | thing.sce | //constantes
//delta = 1 + (K * h)/sqrt(2)
delta = 3; //en attendant
epsilon = 0.1
Niter = 100000;
Npoints = 30;
dt = 0.00003;
Nvectsbord = 201;
xmin=-1;
xmax=1;
ymin=-1;
ymax=1;
h = (xmax - xmin)/Npoints;
x = linspace(xmin, xmax, Npoints);
y = linspace(ymin, ymax, Npoints);
v = [1/sqrt(2) 1/sqrt(2)];
vorth = [1/sqrt(2) -1/sqrt(2)];
////////
//fonctions de densite
function z = rhoY(x,y)
// z = 1
// z = exp(- norm([x+0.3,y-0.3]) ^2 / 0.1) +0.1;
//z = (Npoints^2)/66.051535 * exp(- norm([x,y]) ^2 / 0.1) +1;
z = 0.1 + exp(- norm([x+0.3,y-0.3]) ^2 / 0.1);
// if sqrt((x+0.2)^2 + (y-0.2)^2) < 0.3 then
// z = 2
// else
// z = 1
// end
//
endfunction
function z = rhoX(x,y)
//z = 9 * rhoY(x^3,y^3) * x^2 * y^2 +1
//z = 0.1 + exp(- norm([x,y]) ^2 / 0.1);
// z = (Npoints^2)/66.051535 * exp(- norm([x,y]) ^2 / 0.1) +0.1;
z = exp(- norm([x-0.3,y+0.3]) ^2 / 0.1) +0.1;
//
// if sqrt((x-0.2)^2 + (y+0.2)^2) < 0.3 then
// z = 2
// else
// z = 1
// end
//
endfunction
truc = 0
for i = 1:Npoints
for j = 1:Npoints
truc(i,j) = rhoX(x(i),y(j))
end
end
clf();
plot3d(x,y,truc)
clf();
//c = 0
//for i = 1:Npoints
// for j = 1:Npoints
// c = c + rhoX(x(i),y(j))
// end
//end
//disp(c)
set(gcf(),"color_map",[jetcolormap(64);hotcolormap(64)])
//Sfgrayplot(x,y,rhoX,strf="041",colminmax=[1,64])
///////
//fonction pour le filtrage
function sx = S(x)
sx = zeros(Npoints-2,Npoints-2)
for i = 1:(Npoints-2)
for j = 1:(Npoints-2)
if x(i,j) <= 1 then
sx(i,j) = x(i,j)
elseif abs(x(i,j)) >= 2 then
sx(i,j) = 0
elseif x(i,j) > 1 then
sx(i,j) = 2 - x(i,j)
elseif x(i,j) < -1 then
sx(i,j) = - x(i,j) - 2
end
end
end
endfunction
// fonction pour calculer la constante de Lipschitz K
function K = lip(f,g, x, y, norme)
K = 0;
xmax = 0;
ymax = 0;
function z = unsurG(x)
z = 1/g(x(1),x(1));
endfunction
//a changer pour une autre fonction si jamais
[J,H] = numderivative(unsurG,[x(1),y(1)],[],[],"blockmat");
K = norm(J,norme);
for i = x
for j = y
[J,H] = numderivative(unsurG,[i,j],[],[],"blockmat");
tmp = norm(J,norme);
if(tmp > K) then
K = tmp;
end
end
end
endfunction
K = lip(rhoX, rhoY,x,y,1);
delta = 0.5+ (K * h)/sqrt(2)
disp(K);
disp(delta)
//operateurs qui vont bien
function y = Dxx(u, i, j, h)
y = (1/h^2) * (u(i+1,j) + u(i-1,j) - 2*u(i,j));
endfunction
function y = Dyy(u, i, j, h)
y = (1/h^2) * (u(i,j+1) + u(i,j-1) - 2*u(i,j));
endfunction
function y = Dxy(u, i, j, h)
y = (1/(4 *h^2)) * (u(i+1,j+1) + u(i-1,j-1) - u(i-1,j+1) - u(i+1,j-1));
endfunction
function y = Dx(u, i, j, h)
y = (1/(2*h)) * (u(i+1,j) - u(i-1,j));
endfunction
function y = Dy(u, i, j, h)
y = (1/(2*h)) * (u(i,j+1) - u(i,j-1));
endfunction
function y = Dvv(u, i, j, h)
y = (1/(2*h^2)) * (u(i+1,j+1) + u(i-1,j-1) - 2*u(i,j));
endfunction
function y = Dvvorth(u, i, j, h)
y = (1/(2*h^2)) * (u(i+1,j-1) + u(i-1,j+1) - 2*u(i,j));
endfunction
function y = Dv(u, i, j, h)
y = (1/(2*sqrt(2)*h)) * (u(i+1,j+1) - u(i-1,j-1));
endfunction
function y = Dvorth(u, i, j, h)
y = (1/(2*sqrt(2)*h)) * (u(i+1,j-1) - u(i-1,j+1));
endfunction
//////
// diff finie pour le bord
function r = DunBordGauche (u, i, j, h,n)
r = (1/h) * (n(1) * (u(i+1,j) - u(i,j)) + max(n(2),0) * (u(i,j) - u(i,j-1)) + min(n(2),0) * (u(i,j+1) - u(i,j)))
endfunction
function r = DunBordDroite (u, i, j, h,n)
r = (1/h) * (n(1) * (u(i,j) - u(i-1,j)) + max(n(2),0) * (u(i,j) - u(i,j-1)) + min(n(2),0) * (u(i,j+1) - u(i,j)))
endfunction
function r = DunBordHaut (u, i, j, h,n)
r = (1/h) * (n(2) * (u(i,j) - u(i,j-1)) + max(n(1),0) * (u(i,j) - u(i-1,j)) + min(n(1),0) * (u(i+1,j) - u(i,j)))
endfunction
function r = DunBordBas (u, i, j, h,n)
r = (1/h) * (n(2) * (u(i,j+1) - u(i,j)) + max(n(1),0) * (u(i,j) - u(i-1,j)) + min(n(1),0) * (u(i+1,j) - u(i,j)))
endfunction
function r = DunCoinHautGauche(u,i,j,h,n)
r = (1/h) * (n(1) * (u(i+1,j) - u(i,j)) + n(2) * (u(i,j) - u(i,j-1)) )
endfunction
function r = DunCoinHautDroite(u,i,j,h,n)
r = (1/h) * (n(1) * (u(i,j) - u(i-1,j)) + n(2) * (u(i,j) - u(i,j-1)) )
endfunction
function r = DunCoinBasGauche(u,i,j,h,n)
r = (1/h) * (n(1) * (u(i+1,j) - u(i,j)) + n(2) * (u(i,j+1) - u(i,j)) )
endfunction
function r = DunCoinBasDroite(u,i,j,h,n)
r = (1/h) * (n(1) * (u(i,j) - u(i-1,j)) + n(2) * (u(i,j+1) - u(i,j)) )
endfunction
///// calcul de l'ensemble drond y
drondY = 0
//bord haut
for i = 1:Npoints
drondY(i,1) = x(i)
drondY(i,2) = ymax
end
//bord bas
for i = 1:Npoints
drondY(i+Npoints,:) = [x(i) ymin]
end
//bord gauche
for i = 1:Npoints
drondY(i+2*Npoints,:) = [xmin y(i)]
end
//bord droite
for i = 1:Npoints
drondY(i+3*Npoints,:) = [xmax y(i)]
end
// tous les vecteurs n
vectsgauche = [0 0]
vectsdroite = [0 0]
vectshaut = [0 0]
vectsbas = [0 0]
for i = 1:Nvectsbord
vectsgauche(i,:) = [cos(%pi/2 + ((i-1) * %pi)/(Nvectsbord-1)) sin(%pi/2 + ((i-1) * %pi )/(Nvectsbord-1))]
vectsdroite(i,:) = [cos(3*%pi/2 + ((i-1) * %pi )/(Nvectsbord-1)) sin(3*%pi/2 + ((i-1) * %pi )/(Nvectsbord-1))]
vectshaut(i,:) = [cos(((i-1) * %pi )/(Nvectsbord-1)) sin(((i-1) * %pi )/(Nvectsbord-1))]
vectsbas(i,:) = [cos(%pi + ((i-1) * %pi )/(Nvectsbord-1)) sin(%pi + ((i-1) * %pi )/(Nvectsbord-1))]
end
vectshautgauche = vectsgauche(1:(Nvectsbord/2),:)
vectshautdroite = vectshaut(1:(Nvectsbord/2),:)
vectsbasgauche = vectsbas(1:(Nvectsbord/2),:)
vectsbasdroite = vectsdroite(1:(Nvectsbord/2),:)
//fonction pour H*(n)
function r = Hetoile(n, drondY)
//je fais le calcul bebe maintenant, je changerai plus tard
r = sum(n .* drondY(1,:))
for i = 1:(4*Npoints)
tmp = sum(n .* drondY(i,:))
r = max(r,tmp)
end
endfunction
//pre-calcul des H*(n)
Hetoilegauche = 0
Hetoiledroite = 0
Hetoilehaut = 0
Hetoilebas = 0
Hetoilehautgauche = 0
Hetoilebasgauche = 0
Hetoilehautdroite = 0
Hetoilebasdroite = 0
for k = 1:Nvectsbord
Hetoilegauche(k) = Hetoile(vectsgauche(k,:),drondY)
Hetoiledroite(k) = Hetoile(vectsdroite(k,:),drondY)
Hetoilehaut(k) = Hetoile(vectshaut(k,:),drondY)
Hetoilebas(k) = Hetoile(vectsbas(k,:),drondY)
end
for k = 1:(Nvectsbord/2)
Hetoilehautgauche(k) = Hetoile(vectshautgauche(k,:),drondY)
Hetoilehautdroite(k) = Hetoile(vectshautdroite(k,:),drondY)
Hetoilebasgauche(k) = Hetoile(vectsbasgauche(k,:),drondY)
Hetoilebasdroite(k) = Hetoile(vectsbasdroite(k,:),drondY)
end
// fonctions pour Hamilton Jacobi au bord
function r = Hdeltaugauche(u,i,j,h)
r = -1000;
for k = 1:Nvectsbord
n = vectsgauche(k,:);
Hstar = Hetoilegauche(k);
deltauxn = DunBordGauche(u,i,j,h,n);
res = deltauxn - Hstar;
r = max(r,res);
end
endfunction
function r = Hdeltaudroite(u,i,j,h)
r = -1000;
for k = 1:Nvectsbord
n = vectsdroite(k,:);
Hstar = Hetoiledroite(k);
deltauxn = DunBordDroite(u,i,j,h,n);
res = deltauxn - Hstar;
r = max(r,res);
end
endfunction
function r = Hdeltauhaut(u,i,j,h)
r = -1000;
for k = 1:Nvectsbord
n = vectshaut(k,:);
Hstar = Hetoilehaut(k);
deltauxn = DunBordHaut(u,i,j,h,n);
res = deltauxn - Hstar;
r = max(r,res);
end
endfunction
function r = Hdeltaubas(u,i,j,h)
r = -1000;
for k = 1:Nvectsbord
n = vectsbas(k,:);
Hstar = Hetoilebas(k);
deltauxn = DunBordBas(u,i,j,h,n);
res = deltauxn - Hstar;
r = max(r,res);
end
endfunction
function r = HdeltauCoinHautGauche(u,i,j,h)
r = -1000;
for k = 1:(Nvectsbord/2)
n = vectshautgauche(k,:);
Hstar = Hetoilehautgauche(k);
deltauxn = DunCoinHautGauche(u,i,j,h,n);
res = deltauxn - Hstar;
r = max(r,res);
end
endfunction
function r = HdeltauCoinHautDroite(u,i,j,h)
r = -1000;
for k = 1:(Nvectsbord/2)
n = vectshautdroite(k,:);
Hstar = Hetoilehautdroite(k);
deltauxn = DunCoinHautDroite(u,i,j,h,n);
res = deltauxn - Hstar;
r = max(r,res);
end
endfunction
function r = HdeltauCoinBasGauche(u,i,j,h)
r = -1000;
for k = 1:(Nvectsbord/2)
n = vectsbasgauche(k,:);
Hstar = Hetoilebasgauche(k);
deltauxn = DunCoinBasGauche(u,i,j,h,n);
res = deltauxn - Hstar;
r = max(r,res);
end
endfunction
function r = HdeltauCoinBasDroite(u,i,j,h)
r = -1000;
for k = 1:(Nvectsbord/2)
n = vectsbasdroite(k,:);
Hstar = Hetoilebasdroite(k);
deltauxn = DunCoinBasDroite(u,i,j,h,n);
res = deltauxn - Hstar;
r = max(r,res);
end
endfunction
//////
u=0;
matDxx = 0;
matDyy = 0;
matDxy = 0;
matDx = 0;
matDy = 0;
matDvv = 0;
matDvvorth = 0;
matDv = 0;
matDvorth = 0;
rhoXmat = 0;
rhoYmat = 0;
detmat = 0;
matGradient = 0;
matZeros = 0;
//initialisations
for i = 1:Npoints
for j = 1:Npoints
u(i,j) = norm([x(i), y(j)])^2 / 2;
//u(i,j) = (x(i)^4 + y(j) ^4)/ 4;
matZeros(i,j) = 0
matDxx(i,j) = 0;
matDyy(i,j) = 0;
matDxy(i,j) = 0;
matDx(i,j) = 0;
matDy(i,j) = 0;
matDvv(i,j) = 0;
matDvvorth(i,j) = 0;
matDv(i,j) = 0;
matDvorth(i,j) = 0;
rhoXmat(i,j) = rhoX(x(i),y(j));
rhoYmat(i,j) = rhoY(x(i),y(j));
detmat(i,j) = 0;
matGradient(i,j) = 0;
rhoYmatOrth(i,j) = rhoY(x(i),y(j));
end
end
u0 = u;
for k = 1:Niter
disp(k);
matDxx(2:(Npoints-1), 2:(Npoints-1)) = (1/h^2) * (u(3:Npoints,2:(Npoints-1)) + u(1:(Npoints-2),2:(Npoints-1)) - 2*u(2:(Npoints-1),2:(Npoints-1)));
matDyy(2:(Npoints-1), 2:(Npoints-1)) = (1/h^2) * (u(2:(Npoints-1),3:Npoints) + u(2:(Npoints-1),1:(Npoints-2)) - 2*u(2:(Npoints-1),2:(Npoints-1)));
matDxy(2:(Npoints-1), 2:(Npoints-1)) = (1/(4 *h^2)) * (u(3:Npoints,3:Npoints) + u(1:(Npoints-2),1:(Npoints-2)) - u(1:(Npoints-2),3:Npoints) - u(3:Npoints,1:(Npoints-2)));
matDx(2:(Npoints-1), 2:(Npoints-1)) = (1/(2*h)) * (u(3:Npoints,2:(Npoints-1)) - u(1:(Npoints-2),2:(Npoints-1)));
matDy(2:(Npoints-1), 2:(Npoints-1)) = (1/(2*h)) * (u(2:(Npoints-1),3:Npoints) - u(2:(Npoints-1),1:(Npoints-2)));
for i = 2:(Npoints-1)
for j = 2:(Npoints -1)
// matDxx(i,j) = Dxx(u,i,j,h);
// matDyy(i,j) = Dyy(u,i,j,h);
// matDxy(i,j) = Dxy(u,i,j,h);
// matDx(i,j) = Dx(u,i,j,h);
// matDy(i,j) = Dy(u,i,j,h);
matDvv(i,j) = Dvv(u,i,j,h);
matDvvorth(i,j) = Dvvorth(u,i,j,h);
matDv(i,j) = Dv(u,i,j,h);
matDvorth(i,j) = Dvorth(u,i,j,h);
//matGradient(i,j) = norm([matDx(i,j) matDy(i,j)],2);
rhoYmat(i,j) = rhoY(matDx(i,j), matDy(i,j)) ;
rhoYmatOrth(i,j) = rhoY((1/sqrt(2)) * (matDv(i,j) + matDvorth(i,j)), (1/sqrt(2)) * (matDv(i,j) - matDvorth(i,j)))
detmat(i,j) = det([Dxx(u,i,j,h) Dxy(u,i,j,h) ; Dxy(u,i,j,h) Dyy(u,i,j,h)]);
end
end
res = rhoYmat .* detmat;
//update MAA
MAA = matDxx .* matDyy - matDxy .* matDxy - rhoXmat ./ rhoYmat - u(Npoints/2,Npoints/2) ;
MA1 = max(matDxx, delta) .* max(matDyy, delta) - min (matDxx, delta) - min(matDyy, delta) - rhoXmat ./ rhoYmat - u(Npoints/2,Npoints/2);
MA2 = max(matDvv, delta) .* max(matDvvorth, delta) - min(matDvv, delta) - min(matDvvorth, delta) - rhoXmat ./ rhoYmatOrth - u(Npoints/2,Npoints/2);
MAM = min(MA1, MA2)
MA = matZeros
MA(2:(Npoints-1), 2:(Npoints-1)) = MAA(2:(Npoints-1), 2:(Npoints-1)) //+ epsilon * S((MAA - MAM)/epsilon)
// for i = 2:(Npoints-1)
// MA(1,i) = Hdeltaugauche(u,1,i,h)
// MA(Npoints,i) = Hdeltaudroite(u,Npoints,i,h)
// MA(i,Npoints) = Hdeltauhaut(u,i,Npoints,h)
// MA(i,1) = Hdeltaubas(u,i,1,h)
// end
//
// MA(1,Npoints) = HdeltauCoinHautGauche(u,1,Npoints,h)
// MA(Npoints,Npoints) = HdeltauCoinHautDroite(u,Npoints,Npoints,h)
// MA(1,1) = HdeltauCoinBasGauche(u,1,1,h)
// MA(Npoints,1) = HdeltauCoinBasDroite(u,Npoints,1,h)
//
//update u
prevu = u
u = u + dt * MA;
//plot things
drawlater
clf();
plot3d(x(2:(Npoints-1)),y(2:(Npoints-1)),res((2:(Npoints-1)),(2:(Npoints-1))));
//Sgrayplot(x,y,rhoYmat,strf="041",colminmax=[1,64]);
//champ1(x,y,matDx,matDy)
//Sgrayplot(x,y,rhoYmat .* detmat,strf="041",colminmax=[1,64]);
// colorbar(0, 2, [1,64]);
// Sgrayplot(x(2:(Npoints-1)),y(2:(Npoints-1)),res((2:(Npoints-1)),(2:(Npoints-1))),strf="041",colminmax=[1,64]);
//Sgrayplot(x,y,prevu - u,strf="041",colminmax=[1,64]);
drawnow
disp(max(prevu-u))
//plot3d(x,y,res);
//plot3d(x,y,res);
end
|
97bb17d590dc841fa45c99f87bd42bde2ff2591e | 717ddeb7e700373742c617a95e25a2376565112c | /3460/CH3/EX3.10/ex3_10.sce | 14d997f8aca3fbaae6657bfffcf4385161377975 | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 139 | sce | ex3_10.sce | clc;
clear all;
Vp=300;
R=75;
Vrms=0.707*Vp;
PEP=Vrms*Vrms/R;
disp(Vrms,'rms voltage is=');
disp(PEP,'peak envelope power is=');
|
627960158fb8807edc5f7fd2ca43eacce90c0eac | 449d555969bfd7befe906877abab098c6e63a0e8 | /1670/CH6/EX6.3/6_3.sce | 5d481318576b42dd34ccbb67aac0baa198904450 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 744 | sce | 6_3.sce | //Example 6.3
//Least Square Method
//Page no. 217
clc;close;clear;
x=[1,2,3,4,5,6,7,8];
y=[3,3,4,5,5,6,6,7];n=1;
printf('\t 2\t\t 2\n n\tx\tx\ty\txy\ty\n--------------------------------------------\n')
x1=0;x2=0;x3=0;x4=0;x5=0;x6=0;
for i=1:8
printf(' %i\t%i\t%i\t%i\t%i\t%i\n',n,x(i),x(i)^2,y(i),x(i)*y(i),y(i)^2)
x1=x1+n;
x2=x2+x(i);
x3=x3+x(i)^2;
x4=x4+y(i);
x5=x5+x(i)*y(i);
x6=x6+y(i)^2;
end
printf('--------------------------------------------\n %i\t%i\t%i\t%i\t%i\t%i\n',x1,x2,x3,x4,x5,x6)
x0=x2/x1;
y0=x4/x1;
A=x3-x1*x0^2;
B=x5-x1*x0*y0;
C=x6-x1*y0^2;
x7=poly(0,'b')
y=x7^2+(A-C)*x7/B-1
b=roots(y)
a=y0-b(2)*x0
x7=poly(0,'x')
disp('is the required least line',a+b(2)*x7,'y = ') |
4eb99eb82621b636c654b64bee605265553be67a | 704a8e9047b24c6e005fdc6206aacf6b3ea623bb | /UE/S1/bin/ANALYSE/conditionment.sci | 9cac45fbc29399a93106cf182b68db27aac48e0d | [] | no_license | GuangYueCHEN/ENSIIE | e84ffd6be1718b958bc72cef791a77dc49fa057f | f2014c0cf5b1adda3f327d5dd1d39217e703871b | refs/heads/master | 2021-06-30T21:50:49.946086 | 2019-06-18T09:53:36 | 2019-06-18T09:53:36 | 114,696,410 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 86 | sci | conditionment.sci | function x=conditionment(A)
y=norme_2(A)
z=norme_2(A')
x=y*z
endfunction
|
e8e3fec170351a757bbf166a95eb42bc2db0d140 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1823/CH4/EX4.14/SolEx4_14.sce | cbbb4ddf2ca64767d2ab333253c766d3fd4b06b3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 276 | sce | SolEx4_14.sce | //find IDQ and VGSQ.
//Example 4.14 page no 123
clear
clc
Vdd=15 //v
Vdsq=7 //v
Rs=3 //kΩ
Rd=1 //kΩ
Idq=((Vdd-Vdsq)/(Rs+Rd))
printf("\n Idq=%0.2f mA" ,Idq)
Vgsq=-(Idq*Rd)
printf("\n Vgsq=%0.2f V" ,Vgsq)
|
8e9a41d47a071edb6eb810ad78d4434af45d5819 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1247/CH5/EX5.24/example5_24.sce | 0109d3133bce122f12836b3e3ecf7a4fefcd74c6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 517 | sce | example5_24.sce | clear;
clc;
// Stoichiometry
// Chapter 5
// Energy Balances
// Example 5.24
// Page 256
printf("Example 5.24, Page 256 \n \n");
// solution
// fi1 = integr (from 304.15 to 313.15) {11831.6+24997.4*10T^-3-5979.8*10^-6T^2-31.7*10^-9T3}dt
fi1 = 170787.7 // kJ/h
fi2 = 535.4*12086 - [344.36*8743.2+168.97*18036+22.07*15892] // kJ/h
printf(" (a) \n \n Refrigiration requirement = "+string(fi1)+" kJ/h \n \n \n (b) \n \n Refrigiration requirement based on real enthalpies = "+string(fi2)+" kJ/h.")
|
82c796e963da26cc24819e3102aa803f4c8568bc | 449d555969bfd7befe906877abab098c6e63a0e8 | /2267/CH4/EX4.5/ex4_5.sce | 10e64557f368c502cb4f286ce2b47b6adf589a57 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 434 | sce | ex4_5.sce | //Part A Chapter 4 Example 5
clc;
clear;
close;
m=5;//kg
p1=1;//MPa
V1=0.5;//m^3
p2=0.5;//MPa
//u=1.8*p*v+85;//kJ/kg
n=1.3;//constant
//p1*V1^n=p2*V2^n
V2=(p1/p2*V1^n)^(1/n);//m^3
W=(p2*V2-p1*V1)*10^3/(1-n);//kJ
delU=(p2*V2-p1*V1)*10^3;//kJ
delTheta=delU+W;//kJ
disp("Heat Interaction = "+string(delTheta)+" kJ");
disp("Work Interaction = "+string(W)+" kJ");
disp("Change in Internal Energy = "+string(delU)+" kJ");
|
40bd3192d3657d9071c46baa367e845af119a441 | d897696cc5ab77f0fa78fb32a26fba4611f9b9ea | /processing_asc.sce | 4298ad4ae46b64ee1055ea2e87f15a5f0db10369 | [] | no_license | hnizdil/it3105-image-processing | 3ebf6ae8f18a6dfb4b1e91dd88fee594fc322ffb | 26ac31b32c6b8012094583b128a7b2b304f021e0 | refs/heads/master | 2021-03-12T22:41:42.261537 | 2009-10-26T10:51:57 | 2009-10-26T10:51:57 | 32,507,477 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 560 | sce | processing_asc.sce | //main program
mask1=[-1 0 1;-2 0 2;-1 0 1];
mask2=[1 2 1;0 0 0;-1 -2 -1];
fd = mopen("image.asc",'r');
data = mfscanf(-1, fd, "%d");
dimension = sqrt(length(data));
//something wrong in the image rotation
data = (matrix(data,dimension,dimension));
//matrices for both masks
data_new1 = proc(data, mask1);
data_new2 = proc(data, mask2);
//add absolute values
data_new = abs(data_new1)+abs(data_new2);
//the processed image is of format PGM and named like below
gen_pgm_gray(data_new,"image_processed.pgm");
mclose('all'); //or only the file fd
|
41e901cece126f8ab7b570397542c92c5a2abcc7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3754/CH35/EX35.8/35_8.sce | 0ff774cad94266f0191b9d55ec672c31ee118b0b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 435 | sce | 35_8.sce | clear//
//Variables
R1 = 1.0 * 10**3 //Resistance (in ohm)
R2 = 2.0 * 10**3 //Resistance (in ohm)
V1 = 1.0 //Voltage (in volts)
//Calculation
ACL = R2 / R1 //Closed loop voltage gain
vo = ACL * V1 //Output voltage (in volts)
//Result
printf("\n Output voltage of the inverting amplifier is %0.3f V.",vo)
|
e0717042d5a4b2d79932195ef3f92818a8cded16 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2453/CH7/EX7.1/7_1.sce | b9bf1510876ee44cf95e9361ba79be3bf1cc8663 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 282 | sce | 7_1.sce | //To calculate the relative permeability
M = 1.4; //field, T
H = 6.5*10^-4; //magnetic field, T
chi = M/H; //susceptibility
mew_r = 1+chi; //relative permeability
printf("relative permeability of iron is %d",mew_r);
//answer given in the book is wrong
|
4030c1986d734875c134882c9d98d4a3d90b55f7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3012/CH5/EX5.2/Ex5_2.sce | 4e77e0c9757df450e52af61a1609cf82638f33f4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 635 | sce | Ex5_2.sce | // Given :-
Qcdot = 8000.00 // in kj/h
Wcycledot = 3200.00 // in kj/h
Tc = 268.00 // temperature of compartment in kelvin
TH = 295.00 // temperature of the surrounding air in kelvin
// Calculations
beta = Qcdot/Wcycledot // coefficient of performance
betamax = Tc/(TH-Tc) // reversible coefficient of performance
// Results
printf( ' Coefficient of performance is %.3f',beta)
printf( ' Coefficient of performance of a reversible cycle is %.3f',betamax)
|
f667c78f2656728f3526a3cf1c559474d4631a03 | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/db/db2.sce | 5b703d46c91e0a14716348c3fb35a613bbecebca | [] | no_license | deecube/fosseetesting | ce66f691121021fa2f3474497397cded9d57658c | e353f1c03b0c0ef43abf44873e5e477b6adb6c7e | refs/heads/master | 2021-01-20T11:34:43.535019 | 2016-09-27T05:12:48 | 2016-09-27T05:12:48 | 59,456,386 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 132 | sce | db2.sce | //check o/p when i/p is 0.1 v with refernce to 50 ohm resistance
v=0.5;
d=db(sqrt(v),50);
disp(d);
//output
// - 20.
|
49d6fe97f8ec0c4fdee85279adc9a8b4e6717f8b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1955/CH3/EX3.11/example11.sce | caa32234332f9cd3330cfa22c0532ff877ec6f87 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,344 | sce | example11.sce | clc
clear
//input data
b22=30//The blade air angle at the tip in degrees
D2=0.466//The impeller diameter in m
Q=3.82//The discharge of the air by fan in m^3/s
m=4.29//Mass flow rate of the air by the fan in kg/s
H=0.063//Pressure developed by a fan in m W.G
pi2=0.25//Flow coefficient at impeller exit
W=3//Power supplied to the impeller in kW
r=1.4//The ratio of specific heats of air
R=287//The universal gas constant in J/kg.K
Cp=1005//The specific heat of air at constant pressure in J/kg.K
g=9.81//Acceleration due to gravity in m/s^2
dw=10^3//Density of water in kg/m^3
//calculations
IW=Q*dw*g*H*(10^-3)//Ideal work done in kW
nf=IW/W//Fan efficiency
U2=(((W*10^3)/m)/(1-(pi2/tand(b22))))^(1/2)//The impeller tip speed in m/s
Cr2=pi2*U2//The radial velocity at exit in m/s
Cx2=U2-(Cr2/tand(b22))//Outlet absolute velocity of air in tangential direction in m/s
sp=2*Cx2/U2//Presuure coefficient of the fan
R=1-(Cx2/(2*U2))//Degree of reaction of the fan
N=(U2*60)/(3.141592*D2)//Rotational speed of the fan in rpm
b2=Q/(3.14*D2*Cr2)//Impeller width at the exit in m
//output
printf('(a)The fan efficiency is %3.3f\n(b)The pressure coefficient is %3.3f\n(c)The degree of reaction of the fan is %3.3f\n(d)The rotational speed of the fan is %3.1f rpm\n(e)The impeller width at exit is %3.3f m',nf,sp,R,N,b2)
|
be3c10492595553e2fe05c7747dd3e64cddc8efa | 449d555969bfd7befe906877abab098c6e63a0e8 | /686/CH1/EX1.1/Ex1_1.sci | 8bc2fcc852182c7ba0374f20593fcba55344da9d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 841 | sci | Ex1_1.sci | clc();
clear;
// To calculate the overall thermal resistance and overall heat transfer coefficient
b = 0.5/12; // Thickness of iron wall in ft
k = 30; // Thermal conductivity in Btu/hr-ft
h1 = 2; // Heat transfer coefficient in Btu/hr-ft
h2 = 2; // Heat transfer coefficient in Btu/hr-ft
R = (1/h1)+(1/h2)+(b/k); // Overall thermal resistance*Area in hr-F/Btu ie. (R/A)
U = 1/R; // Overall heat transfer coeficient in Btu/hr-ft^2-F
printf("The overall thermal resistance is %.4f/A hr-F/Btu/A, where A is the area of wall \n",R);
printf(" The overall heat transfer coefficient is %d Btu/hr-ft^2-F",round(U)); |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.