Znn3bq.jpeg
±±¾©Ê¯ÓÍ»¯¹¤Ñ§Ôº2026ÄêÑо¿ÉúÕÐÉú½ÓÊÕµ÷¼Á¹«¸æ
²é¿´: 1216  |  »Ø¸´: 2

cc20080351

½ð³æ (СÓÐÃûÆø)

[ÇóÖú] ÄÄλ´óÉñ¿ÉÒÔ°ïСµÜ°ÑcomsolÀïÃæµÄmatlabÓïÑÔת»¯ÎªfortranÓïÑÔ°¡£¬Ð¡µÜ²»Ê¤¸Ð¼¤

function out = model
%
% er.m
%
% Model exported on Sep 23 2013, 21:19 by COMSOL 4.3.1.115.

import com.comsol.model.*
import com.comsol.model.util.*

model = ModelUtil.create('Model');

model.modelPath(['C:\Documents and Settings\Administrator\' native2unicode(hex2dec('684c'), 'Cp1252')  native2unicode(hex2dec('9762'), 'Cp1252') ]);

model.modelNode.create('mod1');

model.geom.create('geom1', 2);

model.mesh.create('mesh1', 'geom1');

model.physics.create('g', 'GeneralFormPDE', 'geom1', {'theta' 'T'});

model.study.create('std1');
model.study('std1').feature.create('time', 'Transient');
model.study('std1').feature('time').activate('g', true);

model.param.set('K', '1.8');
model.param.set('TAU', '0.0003');
model.param.set('EPS', '0.01');
model.param.set('DELTA', '0.02');
model.param.set('ANGLE0', '1');
model.param.set('ANISO', '6');
model.param.set('ALPHA', '0.9');
model.param.set('GAMMA', '10.0');
model.param.set('TEQ', '1');

model.func.create('step1', 'Step');
model.func('step1').set('location', '0.09');
model.func('step1').set('from', '1');
model.func('step1').set('to', '0');
model.func('step1').set('smooth', '0.05');

model.geom('geom1').feature.create('r1', 'Rectangle');
model.geom('geom1').feature('r1').setIndex('size', '9', 0);
model.geom('geom1').feature('r1').setIndex('size', '9', 1);
model.geom('geom1').feature('r1').set('base', 'center');
model.geom('geom1').run('r1');
model.geom('geom1').run;

model.variable.create('var1');
model.variable('var1').model('mod1');
model.variable('var1').set('epsilon', 'EPS*(1+DELTA*cos(ANISO*(angle-ANGLE0)))');
model.variable('var1').set('epsilonp', '-EPS*ANISO*DELTA*sin(ANISO*(angle-ANGLE0))');
model.variable('var1').set('epsilon2', 'epsilon*epsilon');
model.variable('var1').set('m', 'ALPHA/pi*atan(GAMMA*(TEQ-T))');
model.variable('var1').set('angle', 'if(abs(thetax)>eps,atan2(thetay,thetax)+pi*(atan2(thetay,thetax)<0),pi/2*((thetay>0)+3*(thetay<0)))');

model.physics('g').feature('gfeq1').set('Ga', 1, {'-thetax*epsilon2+epsilon*epsilonp*thetay' '-thetay'});
model.physics('g').feature('gfeq1').set('Ga', 1, {'-thetax*epsilon2+epsilon*epsilonp*thetay' '-thetay*epsilon2-epsilon*epsilonp*thetax'});
model.physics('g').feature('gfeq1').set('f', 1, 'd(epsilon2,x)*thetax+d(epsilon2,y)*thetay+theta*(1-theta)*(theta-0.5+m)');
model.physics('g').feature('gfeq1').set('f', 2, '0');
model.physics('g').feature('gfeq1').set('da', 1, 'TAU');
model.physics('g').feature('gfeq1').set('da', 2, '-K');
model.physics('g').feature('init1').set('theta', 1, 'step1(x^2+y^2)');

model.mesh('mesh1').feature.create('map1', 'Map');
model.mesh('mesh1').feature('size').set('custom', 'on');
model.mesh('mesh1').feature('size').set('hmax', '0.1');
model.mesh('mesh1').feature('size').set('hgrad', '1.2');
model.mesh('mesh1').feature('size').set('hcurve', '0.25');
model.mesh('mesh1').feature('size').set('hmin', '6.75e-4');
model.mesh('mesh1').run('map1');

model.study('std1').feature('time').set('tlist', 'range(0,0.025,0.3)');

model.sol.create('sol1');
model.sol('sol1').study('std1');
model.sol('sol1').feature.create('st1', 'StudyStep');
model.sol('sol1').feature('st1').set('study', 'std1');
model.sol('sol1').feature('st1').set('studystep', 'time');
model.sol('sol1').feature.create('v1', 'Variables');
model.sol('sol1').feature('v1').set('control', 'time');
model.sol('sol1').feature.create('t1', 'Time');
model.sol('sol1').feature('t1').set('tlist', 'range(0,0.025,0.3)');
model.sol('sol1').feature('t1').set('plot', 'off');
model.sol('sol1').feature('t1').set('plotfreq', 'tout');
model.sol('sol1').feature('t1').set('probesel', 'all');
model.sol('sol1').feature('t1').set('probes', {});
model.sol('sol1').feature('t1').set('probefreq', 'tsteps');
model.sol('sol1').feature('t1').set('control', 'time');
model.sol('sol1').feature('t1').feature.create('fc1', 'FullyCoupled');
model.sol('sol1').feature('t1').feature.remove('fcDef');
model.sol('sol1').attach('std1');

model.result.create('pg1', 2);
model.result('pg1').set('data', 'dset1');
model.result('pg1').feature.create('surf1', 'Surface');
model.result('pg1').feature('surf1').set('expr', 'theta');

model.sol('sol1').runAll;

model.result('pg1').run;
model.result.export.create('play1', 'Player');
model.result('pg1').set('window', 'graphics');
model.result('pg1').run;
model.result('pg1').set('window', 'graphics');
model.result('pg1').set('windowtitle', '');
model.result('pg1').set('animating', true);
model.result.export('play1').set('showframe', 1);
model.result.export('play1').run;
model.result.export('play1').set('maxframes', 13);
model.result.export('play1').set('showframe', 2);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 3);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 4);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 5);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 6);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 7);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 8);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 9);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 10);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 11);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 12);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 13);
model.result.export('play1').run;
model.result('pg1').set('animating', false);

model.param.set('ANGLE0', '1.57');

model.result('pg1').run;

model.sol('sol1').study('std1');
model.sol('sol1').feature.remove('t1');
model.sol('sol1').feature.remove('v1');
model.sol('sol1').feature.remove('st1');
model.sol('sol1').feature.create('st1', 'StudyStep');
model.sol('sol1').feature('st1').set('study', 'std1');
model.sol('sol1').feature('st1').set('studystep', 'time');
model.sol('sol1').feature.create('v1', 'Variables');
model.sol('sol1').feature('v1').set('control', 'time');
model.sol('sol1').feature.create('t1', 'Time');
model.sol('sol1').feature('t1').set('tlist', 'range(0,0.025,0.3)');
model.sol('sol1').feature('t1').set('plot', 'off');
model.sol('sol1').feature('t1').set('plotgroup', 'pg1');
model.sol('sol1').feature('t1').set('plotfreq', 'tout');
model.sol('sol1').feature('t1').set('probesel', 'all');
model.sol('sol1').feature('t1').set('probes', {});
model.sol('sol1').feature('t1').set('probefreq', 'tsteps');
model.sol('sol1').feature('t1').set('control', 'time');
model.sol('sol1').feature('t1').feature.create('fc1', 'FullyCoupled');
model.sol('sol1').feature('t1').feature.remove('fcDef');
model.sol('sol1').attach('std1');
model.sol('sol1').runAll;

model.result('pg1').run;
model.result('pg1').set('animating', true);
model.result.export('play1').set('showframe', 1);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 2);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 3);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 4);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 5);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 6);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 7);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 8);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 9);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 10);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 11);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 12);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 13);
model.result.export('play1').run;
model.result('pg1').set('animating', true);
model.result.export('play1').set('showframe', 1);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 2);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 3);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 4);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 5);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 6);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 7);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 8);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 9);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 10);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 11);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 12);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 13);
model.result.export('play1').run;
model.result('pg1').set('animating', true);
model.result.export('play1').set('showframe', 1);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 2);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 3);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 4);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 5);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 6);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 7);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 8);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 9);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 10);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 11);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 12);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 13);
model.result.export('play1').run;
model.result('pg1').set('animating', false);
model.result.create('pg2', 'PlotGroup2D');
model.result('pg2').run;
model.result('pg2').feature.create('surf1', 'Surface');
model.result('pg2').feature('surf1').set('expr', 'T');
model.result('pg2').feature('surf1').set('descr', 'Dependent variable T');
model.result('pg2').run;
model.result.export.create('play2', 'Player');
model.result('pg1').set('window', 'graphics');
model.result('pg1').run;
model.result('pg1').set('window', 'graphics');
model.result('pg1').set('windowtitle', '');
model.result.export('play2').set('plotgroup', 'pg2');
model.result('pg2').set('animating', true);
model.result.export('play2').set('showframe', 1);
model.result.export('play2').run;
model.result.export('play2').set('maxframes', 13);
model.result.export('play2').set('showframe', 2);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 3);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 4);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 5);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 6);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 7);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 8);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 9);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 10);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 11);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 12);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 13);
model.result.export('play2').run;
model.result('pg2').set('animating', true);
model.result.export('play2').set('showframe', 1);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 2);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 3);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 4);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 5);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 6);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 7);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 8);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 9);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 10);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 11);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 12);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 13);
model.result.export('play2').run;
model.result('pg2').set('animating', false);

model.name('12.mph');

model.result('pg2').set('window', 'graphics');
model.result('pg2').run;
model.result('pg2').set('window', 'graphics');
model.result('pg2').set('windowtitle', '');
model.result('pg1').set('window', 'graphics');
model.result('pg1').run;
model.result('pg1').set('window', 'graphics');
model.result('pg1').set('windowtitle', '');
model.result('pg1').set('animating', true);
model.result.export('play1').set('showframe', 1);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 2);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 3);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 4);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 5);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 6);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 7);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 8);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 9);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 10);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 11);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 12);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 13);
model.result.export('play1').run;
model.result('pg1').set('animating', true);
model.result.export('play1').set('showframe', 1);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 2);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 3);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 4);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 5);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 6);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 7);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 8);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 9);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 10);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 11);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 12);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 13);
model.result.export('play1').run;
model.result('pg1').set('animating', false);
model.result('pg2').set('window', 'graphics');
model.result('pg2').run;
model.result('pg2').set('window', 'graphics');
model.result('pg2').set('windowtitle', '');
model.result('pg2').set('animating', true);
model.result.export('play2').set('showframe', 1);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 2);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 3);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 4);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 5);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 6);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 7);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 8);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 9);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 10);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 11);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 12);
model.result.export('play2').run;
model.result.export('play2').set('showframe', 13);
model.result.export('play2').run;
model.result('pg2').set('animating', false);
model.result('pg1').set('animating', true);
model.result.export('play1').set('showframe', 1);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 2);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 3);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 4);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 5);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 6);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 7);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 8);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 9);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 10);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 11);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 12);
model.result.export('play1').run;
model.result.export('play1').set('showframe', 13);
model.result.export('play1').run;
model.result('pg1').set('animating', false);
model.result('pg2').run;

out = model;
»Ø¸´´ËÂ¥

» ²ÂÄãϲ»¶

» ±¾Ö÷ÌâÏà¹Ø¼ÛÖµÌùÍÆ¼ö£¬¶ÔÄúͬÑùÓаïÖú:

ÒÑÔÄ   »Ø¸´´ËÂ¥   ¹Ø×¢TA ¸øTA·¢ÏûÏ¢ ËÍTAºì»¨ TAµÄ»ØÌû

virtualzx

ľ³æ (ÖøÃûдÊÖ)

¡ï
jjdg: ½ð±Ò+1, ¸Ðл²ÎÓë 2013-09-27 22:30:25
ÎÒÔõô¾õµÃºá¿´Êú¿´¶¼ÊÇjavaÄØ
2Â¥2013-09-27 18:40:25
ÒÑÔÄ   »Ø¸´´ËÂ¥   ¹Ø×¢TA ¸øTA·¢ÏûÏ¢ ËÍTAºì»¨ TAµÄ»ØÌû

cc20080351

½ð³æ (СÓÐÃûÆø)

ÒýÓûØÌû:
2Â¥: Originally posted by virtualzx at 2013-09-27 18:40:25
ÎÒÔõô¾õµÃºá¿´Êú¿´¶¼ÊÇjavaÄØ

²»Êǰɣ¬ÊǼÆËã»úÔÚcomsolÉú³ÉµÄMÎļþ£¬ÐǪ̈¿ÉÒÔ°ïæô
3Â¥2013-10-07 09:50:26
ÒÑÔÄ   »Ø¸´´ËÂ¥   ¹Ø×¢TA ¸øTA·¢ÏûÏ¢ ËÍTAºì»¨ TAµÄ»ØÌû
Ïà¹Ø°æ¿éÌø×ª ÎÒÒª¶©ÔÄÂ¥Ö÷ cc20080351 µÄÖ÷Ìâ¸üÐÂ
×î¾ßÈËÆøÈÈÌûÍÆ¼ö [²é¿´È«²¿] ×÷Õß »Ø/¿´ ×îºó·¢±í
[¿¼ÑÐ] Ò»Ö¾Ô¸0703»¯Ñ§ÕÐ61×îÖÕÅÅÃû62»¯Ñ§Çóµ÷¼Á +11 ÕÐ61ÅÅÃû62 2026-04-07 12/600 2026-04-08 14:41 by lijunpoly
[¿¼ÑÐ] Çóµ÷¼Á£¬ÏÖÔÚ»¹ÄÜÌîµÄ +3 Éϰ¶Ð¡Ó¨¼ÓÓÍ 2026-04-08 3/150 2026-04-08 14:30 by zhq0425
[¿¼ÑÐ] ²ÄÁÏÓ뻯¹¤×¨Ë¶306·ÖÕÒºÏÊʵ÷¼Á +22 ²×º£ÇáÖÛe 2026-04-06 22/1100 2026-04-08 14:30 by wdyheheeh
[¿¼ÑÐ] »¯Ñ§0703-Ò»Ö¾Ô¸211-338·ÖÇóµ÷¼Á +10 vants 2026-04-05 10/500 2026-04-08 13:29 by lijunpoly
[¿¼ÑÐ] µ÷¼Á +18 ²»·ê´º 2026-04-07 19/950 2026-04-08 11:58 by Öí»á·É
[¿¼ÑÐ] Ò»Ö¾Ô¸085404£¬×Ü·Ö291£¬Ëļ¶Òѹý£¬Çóµ÷¼Á +9 °¢¿¡°¢¿¡°¢¿¡ 2026-04-04 11/550 2026-04-08 10:56 by ѧԱXf6pzY
[¿¼ÑÐ] µ÷¼ÁÇóÖú£¨ÉúÎïÓëÒ½Ò©£© +6 @6952 2026-04-06 6/300 2026-04-07 23:52 by lys0704
[¿¼ÑÐ] »úеµ÷¼Á +3 zzzbcb 2026-04-07 3/150 2026-04-07 22:19 by hemengdong
[¿¼ÑÐ] 336²ÄÁÏÓ뻯¹¤085600Çóµ÷¼Á +19 Ë®ÐǼÇinfp 2026-04-05 22/1100 2026-04-07 21:11 by yongzhesheng
[¿¼ÑÐ] Ò»Ö¾Ô¸Ö£ÖÝ´óѧ²ÄÁÏÓ뻯¹¤085600£¬Çóµ÷¼Á +34 ³ÔµÄ²»ÉÙ 2026-04-02 34/1700 2026-04-07 20:01 by lrll?l
[¿¼ÑÐ] 277Çóµ÷¼Á ÊýÒ»104·Ö +9 Æ¿×ÓPZ 2026-04-05 14/700 2026-04-07 17:52 by À¶ÔÆË¼Óê
[¿¼ÑÐ] 312Çóµ÷¼Á +4 LR6 2026-04-06 4/200 2026-04-07 08:42 by jp9609
[¿¼ÑÐ] 0857´óÀà»·¾³¹¤³ÌBÇøÇóµ÷¼Á +3 ¹¨ÓíÃú 2026-04-05 3/150 2026-04-06 10:22 by À¶ÔÆË¼Óê
[¿¼ÑÐ] 320·ÖÈ˹¤ÖÇÄܵ÷¼Á +8 Õñ¡ªTZ 2026-04-03 8/400 2026-04-05 22:33 by ·¶Ê½Ë¼Î¬
[¿¼ÑÐ] 377Çóµ÷¼Á +6 by.ovo 2026-04-05 6/300 2026-04-05 22:18 by dongzh2009
[¿¼ÑÐ] ¹¤¿Æ08-»úеר˶-Çóµ÷¼Á +3 À×Å··ÉÌß 2026-04-02 3/150 2026-04-05 18:49 by À¶ÔÆË¼Óê
[¿¼ÑÐ] ÉúÎïѧ308·ÖÇóµ÷¼Á£¨Ò»Ö¾Ô¸»ª¶«Ê¦´ó£© +8 ÏàÐűػá¹ââÍòÕ 2026-04-05 10/500 2026-04-05 12:19 by Hdyxbekcb
[¿¼ÑÐ] 283·ÖÇóµ÷¼Á +7 СÄô°®Ñ§Ï° 2026-04-03 7/350 2026-04-04 21:51 by hemengdong
[¿¼ÑÐ] 272Çóµ÷¼Á +4 Ëɰس£Çà5 2026-04-03 4/200 2026-04-04 17:03 by babysonlkd
[¿¼ÑÐ] 293Çóµ÷¼Á +4 çæçæÀÖ 2026-04-02 4/200 2026-04-02 20:10 by 6781022
ÐÅÏ¢Ìáʾ
ÇëÌî´¦ÀíÒâ¼û